1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/kanboard_ynh.git synced 2024-09-03 19:36:17 +02:00
kanboard_ynh/sources/app/Controller/Base.php

310 lines
9 KiB
PHP
Raw Normal View History

2014-07-20 12:26:15 +02:00
<?php
namespace Controller;
2014-12-22 19:15:38 +01:00
use Pimple\Container;
2014-07-20 12:26:15 +02:00
use Core\Security;
2014-12-22 19:15:38 +01:00
use Core\Request;
use Core\Response;
use Core\Template;
use Core\Session;
2014-07-20 12:26:15 +02:00
use Model\LastLogin;
2015-01-16 14:23:05 +01:00
use Symfony\Component\EventDispatcher\Event;
2014-07-20 12:26:15 +02:00
/**
* Base controller
*
* @package controller
* @author Frederic Guillot
2014-10-22 19:59:09 +02:00
*
2015-01-16 14:23:05 +01:00
* @property \Core\Session $session
* @property \Core\Template $template
2014-12-22 19:15:38 +01:00
* @property \Model\Acl $acl
* @property \Model\Authentication $authentication
* @property \Model\Action $action
* @property \Model\Board $board
* @property \Model\Category $category
* @property \Model\Color $color
* @property \Model\Comment $comment
* @property \Model\Config $config
* @property \Model\DateParser $dateParser
* @property \Model\File $file
* @property \Model\LastLogin $lastLogin
* @property \Model\Notification $notification
* @property \Model\Project $project
* @property \Model\ProjectPermission $projectPermission
* @property \Model\ProjectAnalytic $projectAnalytic
* @property \Model\ProjectDailySummary $projectDailySummary
* @property \Model\SubTask $subTask
* @property \Model\Task $task
* @property \Model\TaskCreation $taskCreation
* @property \Model\TaskModification $taskModification
* @property \Model\TaskDuplication $taskDuplication
* @property \Model\TaskHistory $taskHistory
* @property \Model\TaskExport $taskExport
* @property \Model\TaskFinder $taskFinder
* @property \Model\TaskPosition $taskPosition
* @property \Model\TaskPermission $taskPermission
* @property \Model\TaskStatus $taskStatus
* @property \Model\TaskValidator $taskValidator
* @property \Model\CommentHistory $commentHistory
* @property \Model\SubtaskHistory $subtaskHistory
* @property \Model\TimeTracking $timeTracking
* @property \Model\User $user
2015-01-16 14:23:05 +01:00
* @property \Model\UserSession $userSession
2014-12-22 19:15:38 +01:00
* @property \Model\Webhook $webhook
2014-07-20 12:26:15 +02:00
*/
abstract class Base
{
/**
* Request instance
*
2014-12-22 19:15:38 +01:00
* @accesss protected
2014-07-20 12:26:15 +02:00
* @var \Core\Request
*/
2014-12-22 19:15:38 +01:00
protected $request;
2014-07-20 12:26:15 +02:00
/**
* Response instance
*
2014-12-22 19:15:38 +01:00
* @accesss protected
2014-07-20 12:26:15 +02:00
* @var \Core\Response
*/
2014-12-22 19:15:38 +01:00
protected $response;
2014-07-20 12:26:15 +02:00
/**
2014-12-22 19:15:38 +01:00
* Container instance
2014-07-20 12:26:15 +02:00
*
* @access private
2014-12-22 19:15:38 +01:00
* @var \Pimple\Container
2014-07-20 12:26:15 +02:00
*/
2014-12-22 19:15:38 +01:00
private $container;
2014-07-20 12:26:15 +02:00
/**
* Constructor
*
* @access public
2014-12-22 19:15:38 +01:00
* @param \Pimple\Container $container
*/
public function __construct(Container $container)
{
$this->container = $container;
$this->request = new Request;
$this->response = new Response;
}
/**
* Destructor
*
* @access public
2014-07-20 12:26:15 +02:00
*/
2014-12-22 19:15:38 +01:00
public function __destruct()
2014-07-20 12:26:15 +02:00
{
2015-01-16 14:23:05 +01:00
if (DEBUG) {
foreach ($this->container['db']->getLogMessages() as $message) {
$this->container['logger']->debug($message);
}
$this->container['logger']->debug('SQL_QUERIES={nb}', array('nb' => $this->container['db']->nb_queries));
$this->container['logger']->debug('RENDERING={time}', array('time' => microtime(true) - $_SERVER['REQUEST_TIME_FLOAT']));
}
2014-07-20 12:26:15 +02:00
}
/**
* Load automatically models
*
* @access public
2014-12-22 19:15:38 +01:00
* @param string $name Model name
2014-07-20 12:26:15 +02:00
* @return mixed
*/
public function __get($name)
{
2015-01-16 14:23:05 +01:00
return $this->container[$name];
2014-07-20 12:26:15 +02:00
}
/**
2015-01-16 14:23:05 +01:00
* Send HTTP headers
2014-07-20 12:26:15 +02:00
*
2015-01-16 14:23:05 +01:00
* @access private
2014-07-20 12:26:15 +02:00
*/
2015-01-16 14:23:05 +01:00
private function sendHeaders($action)
2014-07-20 12:26:15 +02:00
{
// HTTP secure headers
$this->response->csp(array('style-src' => "'self' 'unsafe-inline'"));
$this->response->nosniff();
$this->response->xss();
2014-11-23 20:13:38 +01:00
// Allow the public board iframe inclusion
if ($action !== 'readonly') {
$this->response->xframe();
}
if (ENABLE_HSTS) {
$this->response->hsts();
}
2015-01-16 14:23:05 +01:00
}
2014-07-20 12:26:15 +02:00
2015-01-16 14:23:05 +01:00
/**
* Method executed before each action
*
* @access public
*/
public function beforeAction($controller, $action)
{
// Start the session
$this->session->open(BASE_URL_DIRECTORY);
$this->sendHeaders($action);
$this->container['dispatcher']->dispatch('session.bootstrap', new Event);
2014-07-20 12:26:15 +02:00
2015-01-16 14:23:05 +01:00
if (! $this->acl->isPublicAction($controller, $action)) {
$this->handleAuthenticatedUser($controller, $action);
}
}
/**
* Check page access and authentication
*
* @access public
*/
public function handleAuthenticatedUser($controller, $action)
{
if (! $this->authentication->isAuthenticated()) {
2014-12-22 19:15:38 +01:00
if ($this->request->isAjax()) {
$this->response->text('Not Authorized', 401);
}
2014-11-23 20:13:38 +01:00
$this->response->redirect('?controller=user&action=login&redirect_query='.urlencode($this->request->getQueryString()));
2014-07-20 12:26:15 +02:00
}
2015-01-16 14:23:05 +01:00
if (! $this->acl->isAllowed($controller, $action, $this->request->getIntegerParam('project_id', 0))) {
$this->forbidden();
2014-10-22 19:59:09 +02:00
}
2014-07-20 12:26:15 +02:00
}
/**
* Application not found page (404 error)
*
* @access public
2014-10-22 19:59:09 +02:00
* @param boolean $no_layout Display the layout or not
2014-07-20 12:26:15 +02:00
*/
2014-10-22 19:59:09 +02:00
public function notfound($no_layout = false)
2014-07-20 12:26:15 +02:00
{
2014-12-22 19:15:38 +01:00
$this->response->html($this->template->layout('app/notfound', array(
2014-10-22 19:59:09 +02:00
'title' => t('Page not found'),
'no_layout' => $no_layout,
)));
2014-07-20 12:26:15 +02:00
}
/**
* Application forbidden page
*
* @access public
2014-10-22 19:59:09 +02:00
* @param boolean $no_layout Display the layout or not
2014-07-20 12:26:15 +02:00
*/
2014-10-22 19:59:09 +02:00
public function forbidden($no_layout = false)
2014-07-20 12:26:15 +02:00
{
2014-12-22 19:15:38 +01:00
$this->response->html($this->template->layout('app/forbidden', array(
2014-10-22 19:59:09 +02:00
'title' => t('Access Forbidden'),
'no_layout' => $no_layout,
)));
2014-07-20 12:26:15 +02:00
}
/**
* Check if the CSRF token from the URL is correct
*
* @access protected
*/
protected function checkCSRFParam()
{
if (! Security::validateCSRFToken($this->request->getStringParam('csrf_token'))) {
$this->forbidden();
}
}
/**
* Redirection when there is no project in the database
*
* @access protected
*/
protected function redirectNoProject()
{
$this->session->flash(t('There is no active project, the first step is to create a new project.'));
$this->response->redirect('?controller=project&action=create');
}
/**
* Common layout for task views
*
* @access protected
* @param string $template Template name
* @param array $params Template parameters
* @return string
*/
protected function taskLayout($template, array $params)
{
2015-01-16 14:23:05 +01:00
$content = $this->template->render($template, $params);
2014-07-20 12:26:15 +02:00
$params['task_content_for_layout'] = $content;
2014-12-22 19:15:38 +01:00
$params['title'] = $params['task']['project_name'].' &gt; '.$params['task']['title'];
2015-01-16 14:23:05 +01:00
$params['board_selector'] = $this->projectPermission->getAllowedProjects($this->userSession->getId());
2014-07-20 12:26:15 +02:00
2014-12-22 19:15:38 +01:00
return $this->template->layout('task/layout', $params);
2014-07-20 12:26:15 +02:00
}
2014-10-22 19:59:09 +02:00
/**
* Common layout for project views
*
* @access protected
* @param string $template Template name
* @param array $params Template parameters
* @return string
*/
protected function projectLayout($template, array $params)
{
2015-01-16 14:23:05 +01:00
$content = $this->template->render($template, $params);
2014-10-22 19:59:09 +02:00
$params['project_content_for_layout'] = $content;
2014-12-22 19:15:38 +01:00
$params['title'] = $params['project']['name'] === $params['title'] ? $params['title'] : $params['project']['name'].' &gt; '.$params['title'];
2015-01-16 14:23:05 +01:00
$params['board_selector'] = $this->projectPermission->getAllowedProjects($this->userSession->getId());
2014-10-22 19:59:09 +02:00
2014-12-22 19:15:38 +01:00
return $this->template->layout('project/layout', $params);
2014-10-22 19:59:09 +02:00
}
2014-07-20 12:26:15 +02:00
/**
* Common method to get a task for task views
*
* @access protected
* @return array
*/
protected function getTask()
{
2014-11-23 20:13:38 +01:00
$task = $this->taskFinder->getDetails($this->request->getIntegerParam('task_id'));
2014-07-20 12:26:15 +02:00
2015-01-16 14:23:05 +01:00
if (! $task || $task['project_id'] != $this->request->getIntegerParam('project_id')) {
2014-07-20 12:26:15 +02:00
$this->notfound();
}
return $task;
}
2014-10-22 19:59:09 +02:00
/**
* Common method to get a project
*
* @access protected
* @param integer $project_id Default project id
* @return array
*/
protected function getProject($project_id = 0)
{
$project_id = $this->request->getIntegerParam('project_id', $project_id);
$project = $this->project->getById($project_id);
if (! $project) {
$this->session->flashError(t('Project not found.'));
$this->response->redirect('?controller=project');
}
2014-11-23 20:13:38 +01:00
return $project;
}
2014-07-20 12:26:15 +02:00
}