2014-12-04 16:15:55 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* This program 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, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2014-12-04 16:15:55 +03:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2014-12-04 16:15:55 +03:00
|
|
|
namespace OC\Settings\Middleware;
|
|
|
|
|
|
|
|
use OC\AppFramework\Http;
|
2016-04-22 16:28:48 +03:00
|
|
|
use OC\AppFramework\Middleware\Security\Exceptions\NotAdminException;
|
2014-12-04 16:15:55 +03:00
|
|
|
use OC\AppFramework\Utility\ControllerMethodReflector;
|
2017-07-26 10:03:04 +03:00
|
|
|
use OCP\AppFramework\Controller;
|
2014-12-04 16:15:55 +03:00
|
|
|
use OCP\AppFramework\Http\TemplateResponse;
|
|
|
|
use OCP\AppFramework\Middleware;
|
2018-02-26 17:32:17 +03:00
|
|
|
use OCP\IL10N;
|
2014-12-04 16:15:55 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Verifies whether an user has at least subadmin rights.
|
|
|
|
* To bypass use the `@NoSubadminRequired` annotation
|
|
|
|
*
|
|
|
|
* @package OC\Settings\Middleware
|
|
|
|
*/
|
|
|
|
class SubadminMiddleware extends Middleware {
|
|
|
|
/** @var bool */
|
|
|
|
protected $isSubAdmin;
|
|
|
|
/** @var ControllerMethodReflector */
|
|
|
|
protected $reflector;
|
2018-02-26 17:32:17 +03:00
|
|
|
/** @var IL10N */
|
|
|
|
private $l10n;
|
2014-12-04 16:15:55 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param ControllerMethodReflector $reflector
|
|
|
|
* @param bool $isSubAdmin
|
2018-02-26 17:32:17 +03:00
|
|
|
* @param IL10N $l10n
|
2014-12-04 16:15:55 +03:00
|
|
|
*/
|
|
|
|
public function __construct(ControllerMethodReflector $reflector,
|
2018-02-26 17:32:17 +03:00
|
|
|
$isSubAdmin,
|
|
|
|
IL10N $l10n) {
|
2014-12-04 16:15:55 +03:00
|
|
|
$this->reflector = $reflector;
|
|
|
|
$this->isSubAdmin = $isSubAdmin;
|
2018-02-26 17:32:17 +03:00
|
|
|
$this->l10n = $l10n;
|
2014-12-04 16:15:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if sharing is enabled before the controllers is executed
|
2017-07-26 10:03:04 +03:00
|
|
|
* @param Controller $controller
|
2014-12-04 16:15:55 +03:00
|
|
|
* @param string $methodName
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
2017-08-01 18:32:03 +03:00
|
|
|
public function beforeController($controller, $methodName) {
|
2014-12-04 16:15:55 +03:00
|
|
|
if(!$this->reflector->hasAnnotation('NoSubadminRequired')) {
|
|
|
|
if(!$this->isSubAdmin) {
|
2018-02-26 17:32:17 +03:00
|
|
|
throw new NotAdminException($this->l10n->t('Logged in user must be a subadmin'));
|
2014-12-04 16:15:55 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return 403 page in case of an exception
|
2017-07-26 10:03:04 +03:00
|
|
|
* @param Controller $controller
|
2014-12-04 16:15:55 +03:00
|
|
|
* @param string $methodName
|
|
|
|
* @param \Exception $exception
|
|
|
|
* @return TemplateResponse
|
2016-02-22 11:41:56 +03:00
|
|
|
* @throws \Exception
|
2014-12-04 16:15:55 +03:00
|
|
|
*/
|
2017-08-01 18:32:03 +03:00
|
|
|
public function afterException($controller, $methodName, \Exception $exception) {
|
2016-02-22 11:41:56 +03:00
|
|
|
if($exception instanceof NotAdminException) {
|
|
|
|
$response = new TemplateResponse('core', '403', array(), 'guest');
|
|
|
|
$response->setStatus(Http::STATUS_FORBIDDEN);
|
|
|
|
return $response;
|
|
|
|
}
|
|
|
|
|
|
|
|
throw $exception;
|
2014-12-04 16:15:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|