2013-08-17 05:16:48 -04:00
|
|
|
<?php
|
2024-05-23 03:26:56 -04:00
|
|
|
|
2013-08-17 05:16:48 -04:00
|
|
|
/**
|
2024-05-23 03:26:56 -04:00
|
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
2013-08-17 05:16:48 -04:00
|
|
|
*/
|
2013-10-11 04:07:57 -04:00
|
|
|
namespace OCP\AppFramework;
|
2013-08-17 05:16:48 -04:00
|
|
|
|
2014-10-28 11:34:04 -04:00
|
|
|
use OCP\AppFramework\Http\DataResponse;
|
2019-11-22 14:52:10 -05:00
|
|
|
use OCP\AppFramework\Http\JSONResponse;
|
2015-04-16 11:00:08 -04:00
|
|
|
use OCP\AppFramework\Http\Response;
|
2013-10-06 17:16:40 -04:00
|
|
|
use OCP\IRequest;
|
2013-08-17 05:16:48 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Base class to inherit your controllers from
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 6.0.0
|
2013-08-17 05:16:48 -04:00
|
|
|
*/
|
|
|
|
|
abstract class Controller {
|
|
|
|
|
/**
|
2014-04-02 11:54:33 -04:00
|
|
|
* app name
|
|
|
|
|
* @var string
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 7.0.0
|
2013-08-17 05:16:48 -04:00
|
|
|
*/
|
2014-04-02 11:54:33 -04:00
|
|
|
protected $appName;
|
2013-08-17 05:16:48 -04:00
|
|
|
|
2013-10-06 17:16:40 -04:00
|
|
|
/**
|
2013-11-25 10:28:24 -05:00
|
|
|
* current request
|
2013-10-06 17:16:40 -04:00
|
|
|
* @var \OCP\IRequest
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 6.0.0
|
2013-10-06 17:16:40 -04:00
|
|
|
*/
|
2013-08-17 05:16:48 -04:00
|
|
|
protected $request;
|
|
|
|
|
|
2015-04-16 11:00:08 -04:00
|
|
|
/**
|
|
|
|
|
* @var array
|
|
|
|
|
* @since 7.0.0
|
|
|
|
|
*/
|
2014-05-06 14:25:41 -04:00
|
|
|
private $responders;
|
2014-05-08 05:47:18 -04:00
|
|
|
|
2013-08-17 05:16:48 -04:00
|
|
|
/**
|
2013-11-25 10:28:24 -05:00
|
|
|
* constructor of the controller
|
2014-04-02 11:54:33 -04:00
|
|
|
* @param string $appName the name of the app
|
2013-10-06 17:16:40 -04:00
|
|
|
* @param IRequest $request an instance of the request
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 6.0.0 - parameter $appName was added in 7.0.0 - parameter $app was removed in 7.0.0
|
2013-08-17 05:16:48 -04:00
|
|
|
*/
|
2014-05-29 13:14:47 -04:00
|
|
|
public function __construct($appName,
|
2023-11-23 04:22:34 -05:00
|
|
|
IRequest $request) {
|
2014-04-02 11:54:33 -04:00
|
|
|
$this->appName = $appName;
|
2013-08-17 05:16:48 -04:00
|
|
|
$this->request = $request;
|
2014-05-06 10:29:19 -04:00
|
|
|
|
2014-05-06 14:25:41 -04:00
|
|
|
// default responders
|
2020-03-26 04:30:18 -04:00
|
|
|
$this->responders = [
|
2014-10-28 11:34:04 -04:00
|
|
|
'json' => function ($data) {
|
|
|
|
|
if ($data instanceof DataResponse) {
|
|
|
|
|
$response = new JSONResponse(
|
|
|
|
|
$data->getData(),
|
|
|
|
|
$data->getStatus()
|
|
|
|
|
);
|
2015-08-26 11:08:25 -04:00
|
|
|
$dataHeaders = $data->getHeaders();
|
|
|
|
|
$headers = $response->getHeaders();
|
|
|
|
|
// do not overwrite Content-Type if it already exists
|
|
|
|
|
if (isset($dataHeaders['Content-Type'])) {
|
|
|
|
|
unset($headers['Content-Type']);
|
|
|
|
|
}
|
|
|
|
|
$response->setHeaders(array_merge($dataHeaders, $headers));
|
2020-05-19 03:39:51 -04:00
|
|
|
|
|
|
|
|
if ($data->getETag() !== null) {
|
|
|
|
|
$response->setETag($data->getETag());
|
|
|
|
|
}
|
|
|
|
|
if ($data->getLastModified() !== null) {
|
|
|
|
|
$response->setLastModified($data->getLastModified());
|
|
|
|
|
}
|
2023-01-23 03:22:34 -05:00
|
|
|
if ($data->isThrottled()) {
|
|
|
|
|
$response->throttle($data->getThrottleMetadata());
|
|
|
|
|
}
|
2020-05-19 03:39:51 -04:00
|
|
|
|
2014-10-28 11:34:04 -04:00
|
|
|
return $response;
|
|
|
|
|
}
|
2016-10-29 06:00:01 -04:00
|
|
|
return new JSONResponse($data);
|
2014-05-06 10:29:19 -04:00
|
|
|
}
|
2020-03-26 04:30:18 -04:00
|
|
|
];
|
2014-05-06 10:29:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2014-06-10 19:20:09 -04:00
|
|
|
/**
|
|
|
|
|
* Parses an HTTP accept header and returns the supported responder type
|
|
|
|
|
* @param string $acceptHeader
|
2017-07-20 05:03:12 -04:00
|
|
|
* @param string $default
|
2014-06-10 19:20:09 -04:00
|
|
|
* @return string the responder type
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 7.0.0
|
2016-07-20 15:30:39 -04:00
|
|
|
* @since 9.1.0 Added default parameter
|
2025-08-25 09:29:36 -04:00
|
|
|
* @deprecated 33.0.0 Use {@see \OCP\IRequest::getFormat} instead
|
2014-06-10 19:20:09 -04:00
|
|
|
*/
|
2020-10-05 09:12:57 -04:00
|
|
|
public function getResponderByHTTPHeader($acceptHeader, $default = 'json') {
|
2014-06-10 19:20:09 -04:00
|
|
|
$headers = explode(',', $acceptHeader);
|
|
|
|
|
|
|
|
|
|
// return the first matching responder
|
|
|
|
|
foreach ($headers as $header) {
|
|
|
|
|
$header = strtolower(trim($header));
|
|
|
|
|
|
|
|
|
|
$responder = str_replace('application/', '', $header);
|
|
|
|
|
|
|
|
|
|
if (array_key_exists($responder, $this->responders)) {
|
|
|
|
|
return $responder;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-20 15:30:39 -04:00
|
|
|
// no matching header return default
|
|
|
|
|
return $default;
|
2014-06-10 19:20:09 -04:00
|
|
|
}
|
2014-06-10 18:54:25 -04:00
|
|
|
|
|
|
|
|
|
2014-05-06 10:29:19 -04:00
|
|
|
/**
|
|
|
|
|
* Registers a formatter for a type
|
|
|
|
|
* @param string $format
|
2014-05-06 14:25:41 -04:00
|
|
|
* @param \Closure $responder
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 7.0.0
|
2014-05-06 10:29:19 -04:00
|
|
|
*/
|
2014-05-06 14:25:41 -04:00
|
|
|
protected function registerResponder($format, \Closure $responder) {
|
|
|
|
|
$this->responders[$format] = $responder;
|
2014-05-06 10:29:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Serializes and formats a response
|
2014-05-06 14:25:41 -04:00
|
|
|
* @param mixed $response the value that was returned from a controller and
|
2024-08-23 09:10:27 -04:00
|
|
|
* is not a Response instance
|
2014-05-06 10:29:19 -04:00
|
|
|
* @param string $format the format for which a formatter has been registered
|
|
|
|
|
* @throws \DomainException if format does not match a registered formatter
|
|
|
|
|
* @return Response
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 7.0.0
|
2014-05-06 10:29:19 -04:00
|
|
|
*/
|
2020-10-05 09:12:57 -04:00
|
|
|
public function buildResponse($response, $format = 'json') {
|
2020-04-10 08:19:56 -04:00
|
|
|
if (array_key_exists($format, $this->responders)) {
|
2014-05-06 14:25:41 -04:00
|
|
|
$responder = $this->responders[$format];
|
2014-05-29 13:14:47 -04:00
|
|
|
|
2014-05-06 14:25:41 -04:00
|
|
|
return $responder($response);
|
2014-05-06 10:29:19 -04:00
|
|
|
}
|
2025-06-30 09:04:05 -04:00
|
|
|
throw new \DomainException('No responder registered for format '
|
|
|
|
|
. $format . '!');
|
2013-08-17 05:16:48 -04:00
|
|
|
}
|
|
|
|
|
}
|