mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
69 lines
2.9 KiB
PHP
69 lines
2.9 KiB
PHP
<?php
|
|
|
|
namespace Kanboard\Api\Procedure;
|
|
|
|
use Kanboard\Api\Authorization\ProjectAuthorization;
|
|
use Kanboard\Core\Security\Role;
|
|
|
|
/**
|
|
* Project Permission API controller
|
|
*
|
|
* @package Kanboard\Api\Procedure
|
|
* @author Frederic Guillot
|
|
*/
|
|
class ProjectPermissionProcedure extends BaseProcedure
|
|
{
|
|
public function getProjectUsers($project_id)
|
|
{
|
|
ProjectAuthorization::getInstance($this->container)->check($this->getClassName(), 'getProjectUsers', $project_id);
|
|
return $this->projectUserRoleModel->getAllUsers($project_id);
|
|
}
|
|
|
|
public function getAssignableUsers($project_id, $prepend_unassigned = false)
|
|
{
|
|
ProjectAuthorization::getInstance($this->container)->check($this->getClassName(), 'getAssignableUsers', $project_id);
|
|
return $this->projectUserRoleModel->getAssignableUsersList($project_id, $prepend_unassigned);
|
|
}
|
|
|
|
public function addProjectUser($project_id, $user_id, $role = Role::PROJECT_MEMBER)
|
|
{
|
|
ProjectAuthorization::getInstance($this->container)->check($this->getClassName(), 'addProjectUser', $project_id);
|
|
return $this->projectUserRoleModel->addUser($project_id, $user_id, $role);
|
|
}
|
|
|
|
public function addProjectGroup($project_id, $group_id, $role = Role::PROJECT_MEMBER)
|
|
{
|
|
ProjectAuthorization::getInstance($this->container)->check($this->getClassName(), 'addProjectGroup', $project_id);
|
|
return $this->projectGroupRoleModel->addGroup($project_id, $group_id, $role);
|
|
}
|
|
|
|
public function removeProjectUser($project_id, $user_id)
|
|
{
|
|
ProjectAuthorization::getInstance($this->container)->check($this->getClassName(), 'removeProjectUser', $project_id);
|
|
return $this->projectUserRoleModel->removeUser($project_id, $user_id);
|
|
}
|
|
|
|
public function removeProjectGroup($project_id, $group_id)
|
|
{
|
|
ProjectAuthorization::getInstance($this->container)->check($this->getClassName(), 'removeProjectGroup', $project_id);
|
|
return $this->projectGroupRoleModel->removeGroup($project_id, $group_id);
|
|
}
|
|
|
|
public function changeProjectUserRole($project_id, $user_id, $role)
|
|
{
|
|
ProjectAuthorization::getInstance($this->container)->check($this->getClassName(), 'changeProjectUserRole', $project_id);
|
|
return $this->projectUserRoleModel->changeUserRole($project_id, $user_id, $role);
|
|
}
|
|
|
|
public function changeProjectGroupRole($project_id, $group_id, $role)
|
|
{
|
|
ProjectAuthorization::getInstance($this->container)->check($this->getClassName(), 'changeProjectGroupRole', $project_id);
|
|
return $this->projectGroupRoleModel->changeGroupRole($project_id, $group_id, $role);
|
|
}
|
|
|
|
public function getProjectUserRole($project_id, $user_id)
|
|
{
|
|
ProjectAuthorization::getInstance($this->container)->check($this->getClassName(), 'getProjectUserRole', $project_id);
|
|
return $this->projectUserRoleModel->getUserRole($project_id, $user_id);
|
|
}
|
|
}
|