Merge branch 'ent-9498-14180-perfil-de-usuario-sin-grupo-asignado-en-llamada-por-api' into 'develop'

Check group and profile exist on api add permission user to group

See merge request artica/pandorafms!5223
This commit is contained in:
Rafael Ameijeiras 2022-12-13 14:22:16 +00:00
commit 44e22d1675
1 changed files with 26 additions and 0 deletions

View File

@ -16929,6 +16929,32 @@ function api_set_add_permission_user_to_group($thrash1, $thrash2, $other, $retur
];
$group_exist = db_get_value_filter(
'id_grupo',
'tgrupo',
[
'id_grupo' => $values['id_grupo'],
]
);
if ((bool) $group_exist === false) {
returnError('Selected group does not exist');
return;
}
$profile_exist = db_get_value_filter(
'id_perfil',
'tperfil',
[
'id_perfil' => $values['id_perfil'],
]
);
if ((bool) $profile_exist === false) {
returnError('Selected profile does not exist');
return;
}
$where_id_up = ['id_up' => $other['data'][4]];
if ($exist_profile === $other['data'][4] && $where_id_up !== null) {
$sucessfull_insert = db_process_sql_update('tusuario_perfil', $values, $where_id_up);