2020-05-29 13:41:58 +02:00
|
|
|
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
|
|
|
|
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
|
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* For full copyright and license information, please see the LICENSE.txt
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
|
|
|
|
* @link https://cakephp.org CakePHP(tm) Project
|
|
|
|
* @since 0.2.9
|
|
|
|
* @license https://opensource.org/licenses/mit-license.php MIT License
|
|
|
|
*/
|
|
|
|
namespace App\Controller;
|
|
|
|
|
|
|
|
use Cake\Controller\Controller;
|
|
|
|
use Cake\Core\Configure;
|
|
|
|
use Cake\Core\Configure\Engine\PhpConfig;
|
|
|
|
use Cake\Event\EventInterface;
|
|
|
|
use Cake\Utility\Text;
|
|
|
|
use Cake\Http\Exception\NotFoundException;
|
|
|
|
use Cake\Http\Exception\MethodNotAllowedException;
|
|
|
|
use Cake\Http\Exception\ForbiddenException;
|
2020-06-04 10:05:45 +02:00
|
|
|
use Cake\Error\Debugger;
|
2020-05-29 13:41:58 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Application Controller
|
|
|
|
*
|
|
|
|
* Add your application-wide methods in the class below, your controllers
|
|
|
|
* will inherit them.
|
|
|
|
*
|
|
|
|
* @link https://book.cakephp.org/4/en/controllers.html#the-app-controller
|
|
|
|
*/
|
|
|
|
class AppController extends Controller
|
|
|
|
{
|
|
|
|
|
|
|
|
public $isRest = null;
|
2020-06-09 15:59:30 +02:00
|
|
|
public $restResponsePayload = null;
|
2020-06-21 21:27:11 +02:00
|
|
|
public $user = null;
|
2020-05-29 13:41:58 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialization hook method.
|
|
|
|
*
|
|
|
|
* Use this method to add common initialization code like loading components.
|
|
|
|
*
|
|
|
|
* e.g. `$this->loadComponent('FormProtection');`
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function initialize(): void
|
|
|
|
{
|
|
|
|
parent::initialize();
|
|
|
|
|
|
|
|
$this->loadComponent('RequestHandler');
|
|
|
|
$this->loadComponent('Flash');
|
|
|
|
$this->loadComponent('RestResponse');
|
2020-06-21 21:27:11 +02:00
|
|
|
$this->loadComponent('Security');
|
2020-06-09 15:59:30 +02:00
|
|
|
$this->loadComponent('ParamHandler', [
|
|
|
|
'request' => $this->request
|
|
|
|
]);
|
2020-09-28 01:25:07 +02:00
|
|
|
$this->loadModel('MetaFields');
|
|
|
|
$this->loadModel('MetaTemplates');
|
2020-06-09 15:59:30 +02:00
|
|
|
$this->loadComponent('CRUD', [
|
|
|
|
'request' => $this->request,
|
2020-09-28 01:25:07 +02:00
|
|
|
'table' => $this->{$this->modelClass},
|
|
|
|
'MetaFields' => $this->MetaFields,
|
|
|
|
'MetaTemplates' => $this->MetaTemplates
|
2020-06-09 15:59:30 +02:00
|
|
|
]);
|
2020-06-21 21:27:11 +02:00
|
|
|
$this->loadComponent('Authentication.Authentication');
|
|
|
|
$this->loadComponent('ACL', [
|
|
|
|
'request' => $this->request,
|
|
|
|
'Authentication' => $this->Authentication
|
|
|
|
]);
|
2020-05-29 13:41:58 +02:00
|
|
|
if (Configure::read('debug')) {
|
|
|
|
Configure::write('DebugKit.panels', ['DebugKit.Packages' => true]);
|
|
|
|
Configure::write('DebugKit.forceEnable', true);
|
|
|
|
}
|
2021-01-13 14:21:25 +01:00
|
|
|
$this->loadComponent('CustomPagination');
|
2020-05-29 13:41:58 +02:00
|
|
|
/*
|
|
|
|
* Enable the following component for recommended CakePHP form protection settings.
|
|
|
|
* see https://book.cakephp.org/4/en/controllers/components/form-protection.html
|
|
|
|
*/
|
|
|
|
//$this->loadComponent('FormProtection');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function beforeFilter(EventInterface $event)
|
|
|
|
{
|
2020-06-22 17:45:00 +02:00
|
|
|
$this->loadModel('Users');
|
|
|
|
$this->Users->checkForNewInstance();
|
2020-06-21 23:13:17 +02:00
|
|
|
$this->authApiUser();
|
2021-06-17 08:54:09 +02:00
|
|
|
if ($this->ParamHandler->isRest()) {
|
|
|
|
$this->Security->setConfig('unlockedActions', [$this->request->getParam('action')]);
|
|
|
|
}
|
2020-06-21 21:27:11 +02:00
|
|
|
$this->ACL->setPublicInterfaces();
|
|
|
|
if (!empty($this->request->getAttribute('identity'))) {
|
|
|
|
$user = $this->Users->get($this->request->getAttribute('identity')->getIdentifier(), [
|
|
|
|
'contain' => ['Roles', 'Individuals' => 'Organisations']
|
|
|
|
]);
|
|
|
|
if (!empty($user['disabled'])) {
|
|
|
|
$this->Authentication->logout();
|
|
|
|
$this->Flash->error(__('The user account is disabled.'));
|
2021-04-30 23:59:53 +02:00
|
|
|
return $this->redirect(\Cake\Routing\Router::url('/users/login'));
|
2020-06-21 21:27:11 +02:00
|
|
|
}
|
|
|
|
unset($user['password']);
|
|
|
|
$this->ACL->setUser($user);
|
2020-06-21 23:13:17 +02:00
|
|
|
$this->isAdmin = $user['role']['perm_admin'];
|
|
|
|
} else if ($this->ParamHandler->isRest()) {
|
|
|
|
throw new MethodNotAllowedException(__('Invalid user credentials.'));
|
2020-06-21 21:27:11 +02:00
|
|
|
}
|
2021-03-15 22:47:13 +01:00
|
|
|
|
2021-03-19 11:14:02 +01:00
|
|
|
if ($this->request->getParam('action') === 'index') {
|
|
|
|
$this->Security->setConfig('validatePost', false);
|
|
|
|
}
|
2021-03-15 22:47:13 +01:00
|
|
|
$this->Security->setConfig('unlockedActions', ['index']);
|
2021-06-17 14:13:10 +02:00
|
|
|
if ($this->ParamHandler->isRest()) {
|
|
|
|
$this->Security->setConfig('unlockedActions', [$this->request->getParam('action')]);
|
|
|
|
$this->Security->setConfig('validatePost', false);
|
|
|
|
}
|
2021-03-15 22:47:13 +01:00
|
|
|
|
2020-06-21 21:27:11 +02:00
|
|
|
$this->ACL->checkAccess();
|
2020-09-29 13:18:28 +02:00
|
|
|
$this->set('menu', $this->ACL->getMenu());
|
2020-05-29 13:41:58 +02:00
|
|
|
$this->set('ajax', $this->request->is('ajax'));
|
2020-06-21 23:53:38 +02:00
|
|
|
$this->request->getParam('prefix');
|
2020-06-23 14:14:20 +02:00
|
|
|
$this->set('darkMode', !empty(Configure::read('Cerebrate.dark')));
|
2021-02-09 22:10:26 +01:00
|
|
|
$this->set('baseurl', Configure::read('App.fullBaseUrl'));
|
2020-05-29 13:41:58 +02:00
|
|
|
}
|
|
|
|
|
2020-06-21 23:13:17 +02:00
|
|
|
private function authApiUser(): void
|
|
|
|
{
|
|
|
|
if (!empty($_SERVER['HTTP_AUTHORIZATION']) && strlen($_SERVER['HTTP_AUTHORIZATION'])) {
|
|
|
|
$this->loadModel('AuthKeys');
|
2020-08-07 21:47:04 +02:00
|
|
|
$authKey = $this->AuthKeys->checkKey($_SERVER['HTTP_AUTHORIZATION']);
|
2020-06-21 23:13:17 +02:00
|
|
|
if (!empty($authKey)) {
|
|
|
|
$this->loadModel('Users');
|
|
|
|
$user = $this->Users->get($authKey['user_id']);
|
|
|
|
if (!empty($user)) {
|
|
|
|
$this->Authentication->setIdentity($user);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-29 13:41:58 +02:00
|
|
|
public function generateUUID()
|
|
|
|
{
|
|
|
|
$uuid = Text::uuid();
|
|
|
|
return $this->RestResponse->viewData(['uuid' => $uuid], 'json');
|
|
|
|
}
|
2020-06-04 10:05:45 +02:00
|
|
|
|
2020-06-21 21:27:11 +02:00
|
|
|
public function queryACL()
|
|
|
|
{
|
2020-09-29 13:18:28 +02:00
|
|
|
return $this->RestResponse->viewData($this->ACL->findMissingFunctionNames());
|
2020-06-21 21:27:11 +02:00
|
|
|
}
|
2020-05-29 13:41:58 +02:00
|
|
|
}
|