2013-08-17 13:16:48 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* ownCloud - App Framework
|
|
|
|
*
|
|
|
|
* @author Bernhard Posselt
|
2014-05-07 00:25:05 +04:00
|
|
|
* @copyright 2012, 2014 Bernhard Posselt <dev@bernhard-posselt.com>
|
2013-08-17 13:16:48 +04:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 3 of the License, or any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2013-11-25 19:28:24 +04:00
|
|
|
/**
|
|
|
|
* Public interface of ownCloud for apps to use.
|
|
|
|
* AppFramework\Controller class
|
|
|
|
*/
|
2013-08-17 13:16:48 +04:00
|
|
|
|
2013-10-11 12:07:57 +04:00
|
|
|
namespace OCP\AppFramework;
|
2013-08-17 13:16:48 +04:00
|
|
|
|
2013-08-21 03:00:26 +04:00
|
|
|
use OCP\AppFramework\Http\TemplateResponse;
|
2014-05-06 18:29:19 +04:00
|
|
|
use OCP\AppFramework\Http\JSONResponse;
|
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
|
|
|
|
*/
|
|
|
|
abstract class Controller {
|
|
|
|
|
|
|
|
/**
|
2014-04-02 19:54:33 +04:00
|
|
|
* app name
|
|
|
|
* @var string
|
2013-08-17 13:16:48 +04:00
|
|
|
*/
|
2014-04-02 19:54:33 +04:00
|
|
|
protected $appName;
|
2013-08-17 13:16:48 +04:00
|
|
|
|
2013-10-07 01:16:40 +04:00
|
|
|
/**
|
2013-11-25 19:28:24 +04:00
|
|
|
* current request
|
2013-10-07 01:16:40 +04:00
|
|
|
* @var \OCP\IRequest
|
|
|
|
*/
|
2013-08-17 13:16:48 +04:00
|
|
|
protected $request;
|
|
|
|
|
2014-05-06 22:25:41 +04:00
|
|
|
private $responders;
|
2014-05-08 13:47:18 +04:00
|
|
|
|
2013-08-17 13:16:48 +04:00
|
|
|
/**
|
2013-11-25 19:28:24 +04:00
|
|
|
* constructor of the controller
|
2014-04-02 19:54:33 +04:00
|
|
|
* @param string $appName the name of the app
|
2013-10-07 01:16:40 +04:00
|
|
|
* @param IRequest $request an instance of the request
|
2013-08-17 13:16:48 +04:00
|
|
|
*/
|
2014-05-29 21:14:47 +04:00
|
|
|
public function __construct($appName,
|
2014-05-08 13:47:18 +04:00
|
|
|
IRequest $request){
|
2014-04-02 19:54:33 +04:00
|
|
|
$this->appName = $appName;
|
2013-08-17 13:16:48 +04:00
|
|
|
$this->request = $request;
|
2014-05-06 18:29:19 +04:00
|
|
|
|
2014-05-06 22:25:41 +04:00
|
|
|
// default responders
|
|
|
|
$this->responders = array(
|
2014-05-06 18:29:19 +04:00
|
|
|
'json' => function ($response) {
|
|
|
|
return new JSONResponse($response);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-06-11 03:20:09 +04:00
|
|
|
/**
|
|
|
|
* Parses an HTTP accept header and returns the supported responder type
|
|
|
|
* @param string $acceptHeader
|
|
|
|
* @return string the responder type
|
|
|
|
*/
|
|
|
|
public function getResponderByHTTPHeader($acceptHeader) {
|
|
|
|
$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 defaults to json
|
|
|
|
return 'json';
|
|
|
|
}
|
2014-06-11 02:54:25 +04:00
|
|
|
|
|
|
|
|
2014-05-06 18:29:19 +04:00
|
|
|
/**
|
|
|
|
* Registers a formatter for a type
|
|
|
|
* @param string $format
|
2014-05-06 22:25:41 +04:00
|
|
|
* @param \Closure $responder
|
2014-05-06 18:29:19 +04:00
|
|
|
*/
|
2014-05-06 22:25:41 +04:00
|
|
|
protected function registerResponder($format, \Closure $responder) {
|
|
|
|
$this->responders[$format] = $responder;
|
2014-05-06 18:29:19 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Serializes and formats a response
|
2014-05-06 22:25:41 +04:00
|
|
|
* @param mixed $response the value that was returned from a controller and
|
2014-05-06 18:29:19 +04:00
|
|
|
* 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
|
|
|
|
*/
|
2014-05-06 22:25:41 +04:00
|
|
|
public function buildResponse($response, $format='json') {
|
|
|
|
if(array_key_exists($format, $this->responders)) {
|
2014-05-06 18:29:19 +04:00
|
|
|
|
2014-05-06 22:25:41 +04:00
|
|
|
$responder = $this->responders[$format];
|
2014-05-29 21:14:47 +04:00
|
|
|
|
2014-05-06 22:25:41 +04:00
|
|
|
return $responder($response);
|
2014-05-06 18:29:19 +04:00
|
|
|
|
|
|
|
} else {
|
2014-05-29 21:14:47 +04:00
|
|
|
throw new \DomainException('No responder registered for format ' .
|
2014-05-06 18:29:19 +04:00
|
|
|
$format . '!');
|
|
|
|
}
|
2013-08-17 13:16:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Lets you access post and get parameters by the index
|
2014-05-06 18:29:19 +04:00
|
|
|
* @deprecated write your parameters as method arguments instead
|
2013-08-17 13:16:48 +04:00
|
|
|
* @param string $key the key which you want to access in the URL Parameter
|
|
|
|
* placeholder, $_POST or $_GET array.
|
|
|
|
* The priority how they're returned is the following:
|
|
|
|
* 1. URL parameters
|
|
|
|
* 2. POST parameters
|
|
|
|
* 3. GET parameters
|
2014-02-19 12:31:54 +04:00
|
|
|
* @param string $default If the key is not found, this value will be returned
|
2013-08-17 13:16:48 +04:00
|
|
|
* @return mixed the content of the array
|
|
|
|
*/
|
|
|
|
public function params($key, $default=null){
|
2013-08-20 23:05:55 +04:00
|
|
|
return $this->request->getParam($key, $default);
|
2013-08-17 13:16:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns all params that were received, be it from the request
|
2014-06-01 23:46:05 +04:00
|
|
|
* (as GET or POST) or through the URL by the route
|
2014-05-06 18:29:19 +04:00
|
|
|
* @deprecated use $this->request instead
|
2013-08-17 13:16:48 +04:00
|
|
|
* @return array the array with all parameters
|
|
|
|
*/
|
|
|
|
public function getParams() {
|
2013-08-20 23:05:55 +04:00
|
|
|
return $this->request->getParams();
|
2013-08-17 13:16:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the method of the request
|
2014-05-06 18:29:19 +04:00
|
|
|
* @deprecated use $this->request instead
|
2013-08-17 13:16:48 +04:00
|
|
|
* @return string the method of the request (POST, GET, etc)
|
|
|
|
*/
|
|
|
|
public function method() {
|
2013-08-20 23:05:55 +04:00
|
|
|
return $this->request->getMethod();
|
2013-08-17 13:16:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Shortcut for accessing an uploaded file through the $_FILES array
|
2014-05-06 18:29:19 +04:00
|
|
|
* @deprecated use $this->request instead
|
2013-08-17 13:16:48 +04:00
|
|
|
* @param string $key the key that will be taken from the $_FILES array
|
|
|
|
* @return array the file in the $_FILES element
|
|
|
|
*/
|
|
|
|
public function getUploadedFile($key) {
|
2013-08-20 23:05:55 +04:00
|
|
|
return $this->request->getUploadedFile($key);
|
2013-08-17 13:16:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Shortcut for getting env variables
|
2014-05-06 18:29:19 +04:00
|
|
|
* @deprecated use $this->request instead
|
2013-08-17 13:16:48 +04:00
|
|
|
* @param string $key the key that will be taken from the $_ENV array
|
|
|
|
* @return array the value in the $_ENV element
|
|
|
|
*/
|
|
|
|
public function env($key) {
|
2013-08-20 23:05:55 +04:00
|
|
|
return $this->request->getEnv($key);
|
2013-08-17 13:16:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Shortcut for getting cookie variables
|
2014-05-06 18:29:19 +04:00
|
|
|
* @deprecated use $this->request instead
|
2013-08-17 13:16:48 +04:00
|
|
|
* @param string $key the key that will be taken from the $_COOKIE array
|
|
|
|
* @return array the value in the $_COOKIE element
|
|
|
|
*/
|
|
|
|
public function cookie($key) {
|
2013-08-20 23:05:55 +04:00
|
|
|
return $this->request->getCookie($key);
|
2013-08-17 13:16:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Shortcut for rendering a template
|
2014-05-06 18:29:19 +04:00
|
|
|
* @deprecated return a template response instead
|
2013-08-17 13:16:48 +04:00
|
|
|
* @param string $templateName the name of the template
|
|
|
|
* @param array $params the template parameters in key => value structure
|
|
|
|
* @param string $renderAs user renders a full page, blank only your template
|
|
|
|
* admin an entry in the admin settings
|
2014-02-19 12:31:54 +04:00
|
|
|
* @param string[] $headers set additional headers in name/value pairs
|
2013-08-21 03:00:26 +04:00
|
|
|
* @return \OCP\AppFramework\Http\TemplateResponse containing the page
|
2013-08-17 13:16:48 +04:00
|
|
|
*/
|
|
|
|
public function render($templateName, array $params=array(),
|
|
|
|
$renderAs='user', array $headers=array()){
|
2014-04-02 19:54:33 +04:00
|
|
|
$response = new TemplateResponse($this->appName, $templateName);
|
2013-08-17 13:16:48 +04:00
|
|
|
$response->setParams($params);
|
|
|
|
$response->renderAs($renderAs);
|
|
|
|
|
|
|
|
foreach($headers as $name => $value){
|
|
|
|
$response->addHeader($name, $value);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $response;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|