nextcloud/lib/public/AppFramework/Controller.php

167 lines
4.3 KiB
PHP
Raw Normal View History

2013-08-17 13:16:48 +04:00
<?php
/**
2016-07-21 18:07:57 +03:00
* @copyright Copyright (c) 2016, ownCloud, Inc.
*
2015-03-26 13:44:34 +03:00
* @author Bernhard Posselt <dev@bernhard-posselt.com>
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
* @author Donquixote <marjunebatac@gmail.com>
2015-03-26 13:44:34 +03:00
* @author Morris Jobke <hey@morrisjobke.de>
* @author Roeland Jago Douma <roeland@famdouma.nl>
2015-03-26 13:44:34 +03:00
* @author Thomas Müller <thomas.mueller@tmit.eu>
* @author Thomas Tanghus <thomas@tanghus.net>
2015-10-26 15:54:55 +03:00
* @author Vincent Petry <pvince81@owncloud.com>
2013-08-17 13:16:48 +04:00
*
2015-03-26 13:44:34 +03:00
* @license AGPL-3.0
2013-08-17 13:16:48 +04:00
*
2015-03-26 13:44:34 +03:00
* This code is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
2013-08-17 13:16:48 +04:00
*
2015-03-26 13:44:34 +03:00
* This program is distributed in the hope that it will be useful,
2013-08-17 13:16:48 +04:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
2015-03-26 13:44:34 +03:00
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
2013-08-17 13:16:48 +04:00
*
2015-03-26 13:44:34 +03:00
* You should have received a copy of the GNU Affero General Public License, version 3,
* along with this program. If not, see <http://www.gnu.org/licenses/>
2013-08-17 13:16:48 +04:00
*
*/
/**
* Public interface of ownCloud for apps to use.
* AppFramework\Controller class
*/
namespace OCP\AppFramework;
2013-08-17 13:16:48 +04:00
use OCP\AppFramework\Http\DataResponse;
use OCP\AppFramework\Http\JSONResponse;
use OCP\AppFramework\Http\Response;
2013-10-07 01:16:40 +04:00
use OCP\IRequest;
2013-08-17 13:16:48 +04:00
/**
* Base class to inherit your controllers from
* @since 6.0.0
2013-08-17 13:16:48 +04:00
*/
abstract class Controller {
/**
* app name
* @var string
* @since 7.0.0
2013-08-17 13:16:48 +04:00
*/
protected $appName;
2013-08-17 13:16:48 +04:00
2013-10-07 01:16:40 +04:00
/**
* current request
2013-10-07 01:16:40 +04:00
* @var \OCP\IRequest
* @since 6.0.0
2013-10-07 01:16:40 +04:00
*/
2013-08-17 13:16:48 +04:00
protected $request;
/**
* @var array
* @since 7.0.0
*/
private $responders;
2013-08-17 13:16:48 +04:00
/**
* constructor of the controller
* @param string $appName the name of the app
2013-10-07 01:16:40 +04:00
* @param IRequest $request an instance of the request
* @since 6.0.0 - parameter $appName was added in 7.0.0 - parameter $app was removed in 7.0.0
2013-08-17 13:16:48 +04:00
*/
2014-05-29 21:14:47 +04:00
public function __construct($appName,
IRequest $request) {
$this->appName = $appName;
2013-08-17 13:16:48 +04:00
$this->request = $request;
// default responders
$this->responders = [
'json' => function ($data) {
if ($data instanceof DataResponse) {
$response = new JSONResponse(
$data->getData(),
$data->getStatus()
);
$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));
if ($data->getETag() !== null) {
$response->setETag($data->getETag());
}
if ($data->getLastModified() !== null) {
$response->setLastModified($data->getLastModified());
}
return $response;
}
return new JSONResponse($data);
}
];
}
2014-06-11 03:20:09 +04:00
/**
* Parses an HTTP accept header and returns the supported responder type
* @param string $acceptHeader
* @param string $default
2014-06-11 03:20:09 +04:00
* @return string the responder type
* @since 7.0.0
* @since 9.1.0 Added default parameter
2014-06-11 03:20:09 +04:00
*/
public function getResponderByHTTPHeader($acceptHeader, $default='json') {
2014-06-11 03: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;
}
}
// no matching header return default
return $default;
2014-06-11 03:20:09 +04:00
}
/**
* Registers a formatter for a type
* @param string $format
* @param \Closure $responder
* @since 7.0.0
*/
protected function registerResponder($format, \Closure $responder) {
$this->responders[$format] = $responder;
}
/**
* Serializes and formats a response
* @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 7.0.0
*/
public function buildResponse($response, $format='json') {
if (array_key_exists($format, $this->responders)) {
$responder = $this->responders[$format];
2014-05-29 21:14:47 +04:00
return $responder($response);
}
throw new \DomainException('No responder registered for format '.
$format . '!');
2013-08-17 13:16:48 +04:00
}
}