| <?php |
|
|
| namespace Kanboard\Controller; |
|
|
| use Kanboard\Core\Controller\AccessForbiddenException; |
| use Kanboard\Core\Security\Role; |
|
|
| |
| |
| |
| |
| |
| |
| class ProjectPermissionController extends BaseController |
| { |
| |
| |
| |
| |
| |
| |
| |
| |
| protected function getProject($project_id = 0) |
| { |
| $project = parent::getProject($project_id); |
|
|
| if ($project['is_private'] == 1) { |
| throw new AccessForbiddenException(); |
| } |
|
|
| return $project; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| public function index(array $values = array(), array $errors = array()) |
| { |
| $project = $this->getProject(); |
|
|
| if (empty($values)) { |
| $values['role'] = Role::PROJECT_MEMBER; |
| } |
|
|
| $this->response->html($this->helper->layout->project('project_permission/index', array( |
| 'project' => $project, |
| 'users' => $this->projectUserRoleModel->getUsers($project['id']), |
| 'groups' => $this->projectGroupRoleModel->getGroups($project['id']), |
| 'roles' => $this->projectRoleModel->getList($project['id']), |
| 'values' => $values, |
| 'errors' => $errors, |
| 'title' => t('Project Permissions'), |
| ))); |
| } |
|
|
| |
| |
| |
| |
| |
| public function addUser() |
| { |
| $project = $this->getProject(); |
| $values = $this->request->getValues(); |
|
|
| if (empty($values['user_id']) && ! empty($values['external_id']) && ! empty($values['external_id_column'])) { |
| $values['user_id'] = $this->userModel->getOrCreateExternalUserId($values['username'], $values['name'], $values['external_id_column'], $values['external_id']); |
| } |
|
|
| if (empty($values['user_id'])) { |
| $this->flash->failure(t('User not found.')); |
| } elseif ($this->projectUserRoleModel->addUser($values['project_id'], $values['user_id'], $values['role'])) { |
| $this->flash->success(t('Project updated successfully.')); |
| } else { |
| $this->flash->failure(t('Unable to update this project.')); |
| } |
|
|
| $this->response->redirect($this->helper->url->to('ProjectPermissionController', 'index', array('project_id' => $project['id']))); |
| } |
|
|
| |
| |
| |
| |
| |
| public function removeUser() |
| { |
| $this->checkCSRFParam(); |
| $project = $this->getProject(); |
| $user_id = $this->request->getIntegerParam('user_id'); |
|
|
| if ($this->projectUserRoleModel->removeUser($project['id'], $user_id)) { |
| $this->flash->success(t('Project updated successfully.')); |
| } else { |
| $this->flash->failure(t('Unable to update this project.')); |
| } |
|
|
| $this->response->redirect($this->helper->url->to('ProjectPermissionController', 'index', array('project_id' => $project['id']))); |
| } |
|
|
| |
| |
| |
| |
| |
| public function changeUserRole() |
| { |
| $project = $this->getProject(); |
| $values = $this->request->getJson(); |
|
|
| if (empty($project) || |
| empty($values) |
| ) { |
| $this->response->json(array('status' => 'error'), 500); |
| return; |
| } |
|
|
| $userRole = $this->projectUserRoleModel->getUserRole($project['id'], $values['id']); |
| $usersGroupedByRole = $this->projectUserRoleModel->getAllUsersGroupedByRole($project['id']); |
|
|
| if ($userRole === 'project-manager' && |
| $values['role'] !== 'project-manager' && |
| count($usersGroupedByRole['project-manager']) <= 1 |
| ) { |
| $this->response->json(array('status' => 'error'), 500); |
| return; |
| } |
|
|
| $this->projectUserRoleModel->changeUserRole($project['id'], $values['id'], $values['role']); |
|
|
| $this->response->json(array('status' => 'ok')); |
| } |
|
|
| |
| |
| |
| |
| |
| public function addGroup() |
| { |
| $project = $this->getProject(); |
| $values = $this->request->getValues(); |
|
|
| if (empty($values['group_id']) && ! empty($values['external_id'])) { |
| $values['group_id'] = $this->groupModel->getOrCreateExternalGroupId($values['name'], $values['external_id']); |
| } |
|
|
| if (empty($values['group_id'])) { |
| $this->flash->failure(t('Unable to find this group.')); |
| } else { |
| if ($this->projectGroupRoleModel->addGroup($project['id'], $values['group_id'], $values['role'])) { |
| $this->flash->success(t('Project updated successfully.')); |
| } else { |
| $this->flash->failure(t('Unable to update this project.')); |
| } |
| } |
|
|
| $this->response->redirect($this->helper->url->to('ProjectPermissionController', 'index', array('project_id' => $project['id']))); |
| } |
|
|
| |
| |
| |
| |
| |
| public function removeGroup() |
| { |
| $this->checkCSRFParam(); |
| $project = $this->getProject(); |
| $group_id = $this->request->getIntegerParam('group_id'); |
|
|
| if ($this->projectGroupRoleModel->removeGroup($project['id'], $group_id)) { |
| $this->flash->success(t('Project updated successfully.')); |
| } else { |
| $this->flash->failure(t('Unable to update this project.')); |
| } |
|
|
| $this->response->redirect($this->helper->url->to('ProjectPermissionController', 'index', array('project_id' => $project['id']))); |
| } |
|
|
| |
| |
| |
| |
| |
| public function changeGroupRole() |
| { |
| $project = $this->getProject(); |
| $values = $this->request->getJson(); |
|
|
| if (! empty($project) && ! empty($values) && $this->projectGroupRoleModel->changeGroupRole($project['id'], $values['id'], $values['role'])) { |
| $this->response->json(array('status' => 'ok')); |
| } else { |
| $this->response->json(array('status' => 'error')); |
| } |
| } |
| } |
|
|