registerResponder('json', function ($data) { return $this->buildOCSResponse('json', $data); }); $this->registerResponder('xml', function ($data) { return $this->buildOCSResponse('xml', $data); }); } /** * @param int $version * @since 11.0.0 * @internal */ public function setOCSVersion($version) { $this->ocsVersion = $version; } /** * 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 * @param string $format json or xml * @param DataResponse $data the data which should be transformed * @since 8.1.0 * @return \OC\AppFramework\OCS\BaseResponse */ private function buildOCSResponse($format, DataResponse $data) { if ($this->ocsVersion === 1) { return new \OC\AppFramework\OCS\V1Response($data, $format); } return new \OC\AppFramework\OCS\V2Response($data, $format); } }