diff options
author | Matteo Mazza <matteom.mazza@gmail.com> | 2018-08-23 06:00:01 +0200 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2018-08-22 21:00:01 -0700 |
commit | f28d7a15b96e25e38a3e4bcfb95dbd804158e339 (patch) | |
tree | 5c8474e36d9a28b5ba4d8860eea5c4ae6fdc9d8c /app/Model/ProjectRoleRestrictionModel.php | |
parent | e5904ad2ed6b5402ebced2b37e5139847c02af10 (diff) |
Add custom roles project duplication
Diffstat (limited to 'app/Model/ProjectRoleRestrictionModel.php')
-rw-r--r-- | app/Model/ProjectRoleRestrictionModel.php | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/app/Model/ProjectRoleRestrictionModel.php b/app/Model/ProjectRoleRestrictionModel.php index 45e7ed2f..9e5a36fa 100644 --- a/app/Model/ProjectRoleRestrictionModel.php +++ b/app/Model/ProjectRoleRestrictionModel.php @@ -133,4 +133,35 @@ class ProjectRoleRestrictionModel extends Base { return $this->db->table(self::TABLE)->eq('restriction_id', $restriction_id)->remove(); } + + /** + * Copy role restriction models from a custome_role in the src project to the dst custom_role of the dst project + * + * @param integer $project_src_id + * @param integer $project_dst_id + * @param integer $role_src_id + * @param integer $role_dst_id + * @return boolean + */ + public function duplicate($project_src_id, $project_dst_id, $role_src_id, $role_dst_id) + { + $rows = $this->db->table(self::TABLE) + ->eq('project_id', $project_src_id) + ->eq('role_id', $role_src_id) + ->findAll(); + + foreach ($rows as $row) { + $result = $this->db->table(self::TABLE)->persist(array( + 'project_id' => $project_dst_id, + 'role_id' => $role_dst_id, + 'rule' => $row['rule'], + )); + + if (! $result) { + return false; + } + } + + return true; + } } |