Add custom roles project duplication
This commit is contained in:
committed by
Frédéric Guillot
parent
e5904ad2ed
commit
f28d7a15b9
@@ -149,4 +149,44 @@ class ColumnRestrictionModel extends Base
|
||||
{
|
||||
return $this->db->table(self::TABLE)->eq('restriction_id', $restriction_id)->remove();
|
||||
}
|
||||
|
||||
/**
|
||||
* Copy column_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) {
|
||||
$column_title = $this->columnModel->getColumnTitleById($row['column_id']);
|
||||
$dst_column_id = $this->columnModel->getColumnIdByTitle($project_dst_id, $column_title);
|
||||
|
||||
if (! $dst_column_id) {
|
||||
$this->logger->error("The column $column_title is not present in project $project_dst_id");
|
||||
return false;
|
||||
}
|
||||
|
||||
$result = $this->db->table(self::TABLE)->persist(array(
|
||||
'project_id' => $project_dst_id,
|
||||
'role_id' => $role_dst_id,
|
||||
'column_id' => $dst_column_id,
|
||||
'rule' => $row['rule'],
|
||||
));
|
||||
|
||||
if (! $result) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user