Skip to content
Snippets Groups Projects
Commit db16939a authored by Guillaume Heurtier's avatar Guillaume Heurtier
Browse files

FEAT #12003 TIME 3:30 privilege menu + hasService

parent abfeb3cc
No related branches found
No related tags found
No related merge requests found
...@@ -8,7 +8,15 @@ use User\models\UserModel; ...@@ -8,7 +8,15 @@ use User\models\UserModel;
class ServiceController class ServiceController
{ {
public static function getMenuServicesByUserId(array $aArgs) const SERVICE_MENU = [
"admin",
"adv_search_mlb",
"entities_print_sep_mlb",
"reports",
"save_numeric_package"
];
public static function getMenuServicesByUserIdByXml(array $aArgs)
{ {
ValidatorModel::notEmpty($aArgs, ['userId']); ValidatorModel::notEmpty($aArgs, ['userId']);
ValidatorModel::stringType($aArgs, ['userId']); ValidatorModel::stringType($aArgs, ['userId']);
...@@ -44,4 +52,39 @@ class ServiceController ...@@ -44,4 +52,39 @@ class ServiceController
return $menu; return $menu;
} }
public static function getMenuServicesByUserId(array $aArgs)
{
ValidatorModel::notEmpty($aArgs, ['userId']);
ValidatorModel::stringType($aArgs, ['userId']);
$rawServicesStoredInDB = ServiceModel::getByUserId(['userId' => $aArgs['userId']]);
$servicesStoredInDB = array_column($rawServicesStoredInDB, 'service_id');
$menu = [];
if (!empty($servicesStoredInDB)) {
foreach ($servicesStoredInDB as $service) {
if (in_array($service, self::SERVICE_MENU)) {
$menu[] = $service;
}
}
}
$userGroups = UserModel::getGroupsByLogin(['login' => $aArgs['userId']]);
$indexingGroups = [];
foreach ($userGroups as $group) {
if ($group['can_index']) {
$indexingGroups[] = ['id' => $group['id'], 'label' => $group['group_desc']];
}
}
if (!empty($indexingGroups)) {
$menu[] = 'indexing';
}
return $menu;
}
public static function getServicesMenu() {
return self::SERVICE_MENU;
}
} }
...@@ -324,6 +324,35 @@ abstract class ServiceModelAbstract ...@@ -324,6 +324,35 @@ abstract class ServiceModelAbstract
return false; return false;
} }
public static function hasService2(array $args)
{
ValidatorModel::notEmpty($args, ['serviceId', 'userId']);
ValidatorModel::stringType($args, ['serviceId']);
ValidatorModel::intVal($args, ['userId']);
$user = UserModel::getById([
'select' => ['user_id'],
'id' => $args['userId']
]);
if ($user['user_id'] == 'superadmin') {
return true;
}
$aServices = DatabaseModel::select([
'select' => ['usergroups_services.service_id'],
'table' => ['usergroup_content, usergroups_services, usergroups'],
'where' => [
'usergroup_content.group_id = usergroups.id',
'usergroups.group_id = usergroups_services.group_id',
'usergroup_content.user_id = ?',
'usergroups_services.service_id = ?'
],
'data' => [$args['userId'], $args['serviceId']]
]);
return !empty($aServices);
}
public static function canIndex(array $args) public static function canIndex(array $args)
{ {
ValidatorModel::notEmpty($args, ['userId']); ValidatorModel::notEmpty($args, ['userId']);
......
...@@ -85,12 +85,18 @@ class CoreController ...@@ -85,12 +85,18 @@ class CoreController
$user['groups'] = UserModel::getGroupsByLogin(['login' => $GLOBALS['userId']]); $user['groups'] = UserModel::getGroupsByLogin(['login' => $GLOBALS['userId']]);
$user['entities'] = UserModel::getEntitiesByLogin(['login' => $GLOBALS['userId']]); $user['entities'] = UserModel::getEntitiesByLogin(['login' => $GLOBALS['userId']]);
// if ($GLOBALS['userId'] == 'superadmin') {
// $menu = ServiceController::getServicesMenu();
// } else {
// $menu = ServiceController::getMenuServicesByUserId(['userId' => $GLOBALS['userId']]);
// }
if ($GLOBALS['userId'] == 'superadmin') { if ($GLOBALS['userId'] == 'superadmin') {
$menu = ServiceModel::getApplicationServicesByXML(['type' => 'menu']); $menu = ServiceModel::getApplicationServicesByXML(['type' => 'menu']);
$menuModules = ServiceModel::getModulesServicesByXML(['type' => 'menu']); $menuModules = ServiceModel::getModulesServicesByXML(['type' => 'menu']);
$menu = array_merge($menu, $menuModules); $menu = array_merge($menu, $menuModules);
} else { } else {
$menu = ServiceController::getMenuServicesByUserId(['userId' => $GLOBALS['userId']]); $menu = ServiceController::getMenuServicesByUserIdByXml(['userId' => $GLOBALS['userId']]);
} }
return $response->withJson([ return $response->withJson([
...@@ -105,10 +111,10 @@ class CoreController ...@@ -105,10 +111,10 @@ class CoreController
['id' => 'home'] ['id' => 'home']
]; ];
if (ServiceModel::hasService(['id' => 'admin', 'userId' => $GLOBALS['userId'], 'location' => 'apps', 'type' => 'menu'])) { if (ServiceModel::hasService2(['serviceId' => 'admin', 'userId' => $GLOBALS['id']])) {
$shortcuts[] = ['id' => 'administration']; $shortcuts[] = ['id' => 'administration'];
} }
if (ServiceModel::hasService(['id' => 'adv_search_mlb', 'userId' => $GLOBALS['userId'], 'location' => 'apps', 'type' => 'menu'])) { if (ServiceModel::hasService2(['serviceId' => 'adv_search_mlb', 'userId' => $GLOBALS['id']])) {
$shortcuts[] = ['id' => 'search']; $shortcuts[] = ['id' => 'search'];
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment