[ticket/17332] Fix permission migrator tool to work with copied permissions

PHPBB-17332
This commit is contained in:
rxu 2024-06-05 00:20:49 +07:00
parent cd0e682984
commit ef4db99709
No known key found for this signature in database
GPG key ID: 955F0567380E586A

View file

@ -435,15 +435,14 @@ class permission implements \phpbb\db\migration\tool\tool_interface
}
$this->db->sql_freeresult($result);
if (empty($new_auth))
$type = (string) $type; // Prevent PHP bug.
if (empty($new_auth) || !in_array($type, ['role','group']))
{
return;
}
$current_auth = array();
$type = (string) $type; // Prevent PHP bug.
switch ($type)
{
case 'role':
@ -525,40 +524,32 @@ class permission implements \phpbb\db\migration\tool\tool_interface
break;
}
$sql_ary = array();
switch ($type)
{
case 'role':
$sql_ary = $auth_update_list = [];
$table = $type == 'role' ? ACL_ROLES_DATA_TABLE : ACL_GROUPS_TABLE;
foreach ($new_auth as $auth_option_id)
{
if (!isset($current_auth[$auth_option_id]))
{
$sql_ary[] = array(
'role_id' => $role_id,
$sql_ary[] = [
$type . '_id' => ${$type . '_id'},
'auth_option_id' => $auth_option_id,
'auth_setting' => $has_permission,
);
'auth_setting' => (int) $has_permission,
];
}
}
$this->db->sql_multi_insert(ACL_ROLES_DATA_TABLE, $sql_ary);
break;
case 'group':
foreach ($new_auth as $auth_option_id)
else
{
if (!isset($current_auth[$auth_option_id]))
{
$sql_ary[] = array(
'group_id' => $group_id,
'auth_option_id' => $auth_option_id,
'auth_setting' => $has_permission,
);
$auth_update_list[] = $auth_option_id;
}
}
$this->db->sql_multi_insert($table, $sql_ary);
$this->db->sql_multi_insert(ACL_GROUPS_TABLE, $sql_ary);
break;
if (count($auth_update_list))
{
$sql = 'UPDATE ' . $table . '
SET auth_setting = ' . (int) $has_permission . '
WHERE ' . $this->db->sql_in_set('auth_option_id', $auth_update_list) . '
AND ' . $type . '_id = ' . (int) ${$type . '_id'};
$this->db->sql_query($sql);
}
$this->auth->acl_clear_prefetch();