Merge pull request #480 from nextcloud/fix_ocs_response_format
AppFramework default response for OCS is xml
This commit is contained in:
commit
562e63cf69
|
@ -167,10 +167,14 @@ class Dispatcher {
|
|||
// if none is given try the first Accept header
|
||||
if($format === null) {
|
||||
$headers = $this->request->getHeader('Accept');
|
||||
$format = $controller->getResponderByHTTPHeader($headers);
|
||||
$format = $controller->getResponderByHTTPHeader($headers, null);
|
||||
}
|
||||
|
||||
$response = $controller->buildResponse($response, $format);
|
||||
if ($format !== null) {
|
||||
$response = $controller->buildResponse($response, $format);
|
||||
} else {
|
||||
$response = $controller->buildResponse($response);
|
||||
}
|
||||
}
|
||||
|
||||
return $response;
|
||||
|
|
|
@ -72,7 +72,7 @@ class OCSMiddleware extends Middleware {
|
|||
// if none is given try the first Accept header
|
||||
if($format === null) {
|
||||
$headers = $this->request->getHeader('Accept');
|
||||
$format = $controller->getResponderByHTTPHeader($headers);
|
||||
$format = $controller->getResponderByHTTPHeader($headers, 'xml');
|
||||
}
|
||||
|
||||
return $format;
|
||||
|
|
|
@ -104,8 +104,9 @@ abstract class Controller {
|
|||
* @param string $acceptHeader
|
||||
* @return string the responder type
|
||||
* @since 7.0.0
|
||||
* @since 9.1.0 Added default parameter
|
||||
*/
|
||||
public function getResponderByHTTPHeader($acceptHeader) {
|
||||
public function getResponderByHTTPHeader($acceptHeader, $default='json') {
|
||||
$headers = explode(',', $acceptHeader);
|
||||
|
||||
// return the first matching responder
|
||||
|
@ -119,8 +120,8 @@ abstract class Controller {
|
|||
}
|
||||
}
|
||||
|
||||
// no matching header defaults to json
|
||||
return 'json';
|
||||
// no matching header return default
|
||||
return $default;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -31,6 +31,7 @@ namespace OCP\AppFramework;
|
|||
|
||||
use OCP\AppFramework\Http\DataResponse;
|
||||
use OCP\AppFramework\Http\OCSResponse;
|
||||
use OCP\AppFramework\Http\Response;
|
||||
use OCP\IRequest;
|
||||
|
||||
|
||||
|
@ -69,6 +70,19 @@ abstract class OCSController extends ApiController {
|
|||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Since the OCS endpoints default to XML we need to find out the format
|
||||
* again
|
||||
* @param mixed $response the value that was returned from a controller and
|
||||
* is not a Response instance
|
||||
* @param string $format the format for which a formatter has been registered
|
||||
* @throws \DomainException if format does not match a registered formatter
|
||||
* @return Response
|
||||
* @since 9.1.0
|
||||
*/
|
||||
public function buildResponse($response, $format = 'xml') {
|
||||
return parent::buildResponse($response, $format);
|
||||
}
|
||||
|
||||
/**
|
||||
* Unwrap data and build ocs response
|
||||
|
|
Loading…
Reference in New Issue