Merge pull request #7683 from owncloud/proper-content-type-on-ocs-exceptions
set content-type on ocs exceptions
This commit is contained in:
commit
ce790119ae
|
@ -116,9 +116,7 @@ class OC_API {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
$response = self::mergeResponses($responses);
|
$response = self::mergeResponses($responses);
|
||||||
$formats = array('json', 'xml');
|
$format = self::requestedFormat();
|
||||||
|
|
||||||
$format = !empty($_GET['format']) && in_array($_GET['format'], $formats) ? $_GET['format'] : 'xml';
|
|
||||||
if (self::$logoutRequired) {
|
if (self::$logoutRequired) {
|
||||||
OC_User::logout();
|
OC_User::logout();
|
||||||
}
|
}
|
||||||
|
@ -350,4 +348,33 @@ class OC_API {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public static function requestedFormat() {
|
||||||
|
$formats = array('json', 'xml');
|
||||||
|
|
||||||
|
$format = !empty($_GET['format']) && in_array($_GET['format'], $formats) ? $_GET['format'] : 'xml';
|
||||||
|
return $format;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Based on the requested format the response content type is set
|
||||||
|
*/
|
||||||
|
public static function setContentType() {
|
||||||
|
$format = \OC_API::requestedFormat();
|
||||||
|
if ($format === 'xml') {
|
||||||
|
header('Content-type: text/xml; charset=UTF-8');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($format === 'json') {
|
||||||
|
header('Content-Type: application/json; charset=utf-8');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
header('Content-Type: application/octet-stream; charset=utf-8');
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,8 +28,10 @@ use Symfony\Component\Routing\Exception\MethodNotAllowedException;
|
||||||
try {
|
try {
|
||||||
OC::getRouter()->match('/ocs'.OC_Request::getRawPathInfo());
|
OC::getRouter()->match('/ocs'.OC_Request::getRawPathInfo());
|
||||||
} catch (ResourceNotFoundException $e) {
|
} catch (ResourceNotFoundException $e) {
|
||||||
|
OC_API::setContentType();
|
||||||
OC_OCS::notFound();
|
OC_OCS::notFound();
|
||||||
} catch (MethodNotAllowedException $e) {
|
} catch (MethodNotAllowedException $e) {
|
||||||
|
OC_API::setContentType();
|
||||||
OC_Response::setStatus(405);
|
OC_Response::setStatus(405);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue