sessionManager->open(); $this->dispatcher->dispatch('app.bootstrap'); $this->sendHeaders($action); $this->authenticationManager->checkCurrentSession(); if (! $this->applicationAuthorization->isAllowed($controller, $action, Role::APP_PUBLIC)) { $this->handleAuthentication(); $this->handlePostAuthentication($controller, $action); $this->checkApplicationAuthorization($controller, $action); $this->checkProjectAuthorization($controller, $action); } } /** * Send HTTP headers * * @access private */ private function sendHeaders($action) { // HTTP secure headers $this->response->csp($this->container['cspRules']); $this->response->nosniff(); $this->response->xss(); // Allow the public board iframe inclusion if (ENABLE_XFRAME && $action !== 'readonly') { $this->response->xframe(); } if (ENABLE_HSTS) { $this->response->hsts(); } } /** * Check authentication * * @access private */ private function handleAuthentication() { if (! $this->userSession->isLogged() && ! $this->authenticationManager->preAuthentication()) { if ($this->request->isAjax()) { $this->response->text('Not Authorized', 401); } $this->sessionStorage->redirectAfterLogin = $this->request->getUri(); $this->response->redirect($this->helper->url->to('auth', 'login')); } } /** * Handle Post-Authentication (2FA) * * @access private */ private function handlePostAuthentication($controller, $action) { $ignore = ($controller === 'twofactor' && in_array($action, array('code', 'check'))) || ($controller === 'auth' && $action === 'logout'); if ($ignore === false && $this->userSession->hasPostAuthentication() && ! $this->userSession->isPostAuthenticationValidated()) { if ($this->request->isAjax()) { $this->response->text('Not Authorized', 401); } $this->response->redirect($this->helper->url->to('twofactor', 'code')); } } /** * Check application authorization * * @access private */ private function checkApplicationAuthorization($controller, $action) { if (! $this->helper->user->hasAccess($controller, $action)) { $this->forbidden(); } } /** * Check project authorization * * @access private */ private function checkProjectAuthorization($controller, $action) { $project_id = $this->request->getIntegerParam('project_id'); $task_id = $this->request->getIntegerParam('task_id'); // Allow urls without "project_id" if ($task_id > 0 && $project_id === 0) { $project_id = $this->taskFinder->getProjectId($task_id); } if ($project_id > 0 && ! $this->helper->user->hasProjectAccess($controller, $action, $project_id)) { $this->forbidden(); } } /** * Application not found page (404 error) * * @access protected * @param boolean $no_layout Display the layout or not */ protected function notfound($no_layout = false) { $this->response->html($this->template->layout('app/notfound', array( 'title' => t('Page not found'), 'no_layout' => $no_layout, ))); } /** * Application forbidden page * * @access protected * @param boolean $no_layout Display the layout or not */ protected function forbidden($no_layout = false) { if ($this->request->isAjax()) { $this->response->text('Not Authorized', 401); } $this->response->html($this->template->layout('app/forbidden', array( 'title' => t('Access Forbidden'), 'no_layout' => $no_layout, ))); } /** * Check if the CSRF token from the URL is correct * * @access protected */ protected function checkCSRFParam() { if (! $this->token->validateCSRFToken($this->request->getStringParam('csrf_token'))) { $this->forbidden(); } } /** * Check webhook token * * @access protected */ protected function checkWebhookToken() { if ($this->config->get('webhook_token') !== $this->request->getStringParam('token')) { $this->response->text('Not Authorized', 401); } } /** * 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) { $content = $this->template->render($template, $params); $params['task_content_for_layout'] = $content; $params['title'] = $params['task']['project_name'].' > '.$params['task']['title']; $params['board_selector'] = $this->projectUserRole->getProjectsByUser($this->userSession->getId()); return $this->template->layout('task/layout', $params); } /** * 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, $sidebar_template = 'project/sidebar') { $content = $this->template->render($template, $params); $params['project_content_for_layout'] = $content; $params['title'] = $params['project']['name'] === $params['title'] ? $params['title'] : $params['project']['name'].' > '.$params['title']; $params['board_selector'] = $this->projectUserRole->getProjectsByUser($this->userSession->getId()); $params['sidebar_template'] = $sidebar_template; return $this->template->layout('project/layout', $params); } /** * Common method to get a task for task views * * @access protected * @return array */ protected function getTask() { $project_id = $this->request->getIntegerParam('project_id'); $task = $this->taskFinder->getDetails($this->request->getIntegerParam('task_id')); if (empty($task)) { $this->notfound(); } if ($project_id !== 0 && $project_id != $task['project_id']) { $this->forbidden(); } return $task; } /** * 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 (empty($project)) { $this->flash->failure(t('Project not found.')); $this->response->redirect($this->helper->url->to('project', 'index')); } return $project; } /** * Common method to get the user * * @access protected * @return array */ protected function getUser() { $user = $this->user->getById($this->request->getIntegerParam('user_id', $this->userSession->getId())); if (empty($user)) { $this->notfound(); } if (! $this->userSession->isAdmin() && $this->userSession->getId() != $user['id']) { $this->forbidden(); } return $user; } /** * Common method to get project filters * * @access protected * @param string $controller * @param string $action * @return array */ protected function getProjectFilters($controller, $action) { $project = $this->getProject(); $search = $this->request->getStringParam('search', $this->userSession->getFilters($project['id'])); $board_selector = $this->projectUserRole->getProjectsByUser($this->userSession->getId()); unset($board_selector[$project['id']]); $filters = array( 'controller' => $controller, 'action' => $action, 'project_id' => $project['id'], 'search' => urldecode($search), ); $this->userSession->setFilters($project['id'], $filters['search']); return array( 'project' => $project, 'board_selector' => $board_selector, 'filters' => $filters, 'title' => $project['name'], ); } }