| <?php |
|
|
| namespace Kanboard\Model; |
|
|
| use Kanboard\Core\Base; |
| use Kanboard\Core\Security\Role; |
|
|
| |
| |
| |
| |
| |
| |
| class ProjectRoleModel extends Base |
| { |
| const TABLE = 'project_has_roles'; |
|
|
| |
| |
| |
| |
| |
| |
| public function getList($project_id) |
| { |
| $defaultRoles = $this->role->getProjectRoles(); |
| $customRoles = $this->db |
| ->hashtable(self::TABLE) |
| ->eq('project_id', $project_id) |
| ->getAll('role', 'role'); |
|
|
| return $defaultRoles + $customRoles; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| public function getById($project_id, $role_id) |
| { |
| return $this->db->table(self::TABLE) |
| ->eq('project_id', $project_id) |
| ->eq('role_id', $role_id) |
| ->findOne(); |
| } |
|
|
| |
| |
| |
| |
| |
| |
| public function getAll($project_id) |
| { |
| return $this->db->table(self::TABLE) |
| ->eq('project_id', $project_id) |
| ->asc('role') |
| ->findAll(); |
| } |
|
|
| |
| |
| |
| |
| |
| |
| public function getAllWithRestrictions($project_id) |
| { |
| $roles = $this->getAll($project_id); |
|
|
| $column_restrictions = $this->columnRestrictionModel->getAll($project_id); |
| $column_restrictions = array_column_index($column_restrictions, 'role_id'); |
| array_merge_relation($roles, $column_restrictions, 'column_restrictions', 'role_id'); |
|
|
| $column_move_restrictions = $this->columnMoveRestrictionModel->getAll($project_id); |
| $column_move_restrictions = array_column_index($column_move_restrictions, 'role_id'); |
| array_merge_relation($roles, $column_move_restrictions, 'column_move_restrictions', 'role_id'); |
|
|
| $project_restrictions = $this->projectRoleRestrictionModel->getAll($project_id); |
| $project_restrictions = array_column_index($project_restrictions, 'role_id'); |
| array_merge_relation($roles, $project_restrictions, 'project_restrictions', 'role_id'); |
|
|
| return $roles; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| public function create($project_id, $role) |
| { |
| return $this->db |
| ->table(self::TABLE) |
| ->persist(array( |
| 'project_id' => $project_id, |
| 'role' => $role, |
| )); |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| public function update($role_id, $project_id, $role) |
| { |
| $this->db->startTransaction(); |
|
|
| $previousRole = $this->getById($project_id, $role_id); |
|
|
| $r1 = $this->db |
| ->table(ProjectUserRoleModel::TABLE) |
| ->eq('project_id', $project_id) |
| ->eq('role', $previousRole['role']) |
| ->update(array( |
| 'role' => $role |
| )); |
|
|
| $r2 = $this->db |
| ->table(ProjectGroupRoleModel::TABLE) |
| ->eq('project_id', $project_id) |
| ->eq('role', $previousRole['role']) |
| ->update(array( |
| 'role' => $role |
| )); |
|
|
| $r3 = $this->db |
| ->table(self::TABLE) |
| ->eq('role_id', $role_id) |
| ->eq('project_id', $project_id) |
| ->update(array( |
| 'role' => $role, |
| )); |
|
|
| if ($r1 && $r2 && $r3) { |
| $this->db->closeTransaction(); |
| return true; |
| } |
|
|
| $this->db->cancelTransaction(); |
| return false; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| public function remove($project_id, $role_id) |
| { |
| $this->db->startTransaction(); |
|
|
| $role = $this->getById($project_id, $role_id); |
|
|
| $r1 = $this->db |
| ->table(ProjectUserRoleModel::TABLE) |
| ->eq('project_id', $project_id) |
| ->eq('role', $role['role']) |
| ->update(array( |
| 'role' => Role::PROJECT_MEMBER |
| )); |
|
|
| $r2 = $this->db |
| ->table(ProjectGroupRoleModel::TABLE) |
| ->eq('project_id', $project_id) |
| ->eq('role', $role['role']) |
| ->update(array( |
| 'role' => Role::PROJECT_MEMBER |
| )); |
|
|
| $r3 = $this->db |
| ->table(self::TABLE) |
| ->eq('project_id', $project_id) |
| ->eq('role_id', $role_id) |
| ->remove(); |
|
|
| if ($r1 && $r2 && $r3) { |
| $this->db->closeTransaction(); |
| return true; |
| } |
|
|
| $this->db->cancelTransaction(); |
| return false; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| public function duplicate($project_src_id, $project_dst_id) |
| { |
| $rows = $this->db->table(self::TABLE)->eq('project_id', $project_src_id)->findAll(); |
|
|
| foreach ($rows as $row) { |
| $role_src_id = $row['role_id']; |
| $role_dst_id = $this->db->table(self::TABLE)->persist(array( |
| 'project_id' => $project_dst_id, |
| 'role' => $row['role'], |
| )); |
|
|
| if (! $role_dst_id) { |
| return false; |
| } |
|
|
| if (! $this->columnRestrictionModel->duplicate($project_src_id, $project_dst_id, $role_src_id, $role_dst_id)) { |
| return false; |
| } |
|
|
| if (! $this->columnMoveRestrictionModel->duplicate($project_src_id, $project_dst_id, $role_src_id, $role_dst_id)) { |
| return false; |
| } |
| |
| if (! $this->projectRoleRestrictionModel->duplicate($project_src_id, $project_dst_id, $role_src_id, $role_dst_id)) { |
| return false; |
| } |
| } |
|
|
| return true; |
| } |
| } |
|
|