2013-08-17 13:16:48 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2020-04-29 12:57:22 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Stefan Weil <sw@weilnetz.de>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
* @author Thomas Tanghus <thomas@tanghus.net>
|
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,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2013-08-17 13:16:48 +04:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Public interface of ownCloud for apps to use.
|
|
|
|
* AppFramework\Middleware class
|
|
|
|
*/
|
|
|
|
|
2013-10-05 18:59:06 +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\Response;
|
2013-08-17 13:16:48 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Middleware is used to provide hooks before or after controller methods and
|
|
|
|
* deal with possible exceptions raised in the controller methods.
|
|
|
|
* They're modeled after Django's middleware system:
|
|
|
|
* https://docs.djangoproject.com/en/dev/topics/http/middleware/
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 6.0.0
|
2013-08-17 13:16:48 +04:00
|
|
|
*/
|
2013-10-05 21:13:12 +04:00
|
|
|
abstract class Middleware {
|
2013-08-17 13:16:48 +04:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is being run in normal order before the controller is being
|
|
|
|
* called which allows several modifications and checks
|
|
|
|
*
|
|
|
|
* @param Controller $controller the controller that is being called
|
|
|
|
* @param string $methodName the name of the method that will be called on
|
|
|
|
* the controller
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 6.0.0
|
2013-08-17 13:16:48 +04:00
|
|
|
*/
|
2020-04-09 14:53:40 +03:00
|
|
|
public function beforeController($controller, $methodName) {
|
2013-08-17 13:16:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is being run when either the beforeController method or the
|
|
|
|
* controller method itself is throwing an exception. The middleware is
|
|
|
|
* asked in reverse order to handle the exception and to return a response.
|
|
|
|
* If the response is null, it is assumed that the exception could not be
|
|
|
|
* handled and the error will be thrown again
|
|
|
|
*
|
|
|
|
* @param Controller $controller the controller that is being called
|
|
|
|
* @param string $methodName the name of the method that will be called on
|
|
|
|
* the controller
|
|
|
|
* @param \Exception $exception the thrown exception
|
2016-04-07 20:51:27 +03:00
|
|
|
* @throws \Exception the passed in exception if it can't handle it
|
2013-08-17 13:16:48 +04:00
|
|
|
* @return Response a Response object in case that the exception was handled
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 6.0.0
|
2013-08-17 13:16:48 +04:00
|
|
|
*/
|
2020-04-09 14:53:40 +03:00
|
|
|
public function afterException($controller, $methodName, \Exception $exception) {
|
2013-08-17 13:16:48 +04:00
|
|
|
throw $exception;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is being run after a successful controllermethod call and allows
|
|
|
|
* the manipulation of a Response object. The middleware is run in reverse order
|
|
|
|
*
|
|
|
|
* @param Controller $controller the controller that is being called
|
|
|
|
* @param string $methodName the name of the method that will be called on
|
|
|
|
* the controller
|
|
|
|
* @param Response $response the generated response from the controller
|
|
|
|
* @return Response a Response object
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 6.0.0
|
2013-08-17 13:16:48 +04:00
|
|
|
*/
|
2020-04-09 14:53:40 +03:00
|
|
|
public function afterController($controller, $methodName, Response $response) {
|
2013-08-17 13:16:48 +04:00
|
|
|
return $response;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is being run after the response object has been rendered and
|
|
|
|
* allows the manipulation of the output. The middleware is run in reverse order
|
|
|
|
*
|
|
|
|
* @param Controller $controller the controller that is being called
|
|
|
|
* @param string $methodName the name of the method that will be called on
|
|
|
|
* the controller
|
|
|
|
* @param string $output the generated output from a response
|
|
|
|
* @return string the output that should be printed
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 6.0.0
|
2013-08-17 13:16:48 +04:00
|
|
|
*/
|
2020-04-09 14:53:40 +03:00
|
|
|
public function beforeOutput($controller, $methodName, $output) {
|
2013-08-17 13:16:48 +04:00
|
|
|
return $output;
|
|
|
|
}
|
|
|
|
}
|