Skip to content
Snippets Groups Projects
GroupController.php 16.4 KiB
Newer Older
  • Learn to ignore specific revisions
  • namespace Group\controllers;
    
    use Action\models\ActionModel;
    
    use Basket\models\GroupBasketModel;
    
    use Entity\models\EntityModel;
    
    use Group\models\ServiceModel;
    
    use Group\models\GroupModel;
    
    use Respect\Validation\Validator;
    
    use Slim\Http\Request;
    use Slim\Http\Response;
    
    use SrcCore\controllers\PreparedClauseController;
    
    Damien's avatar
    Damien committed
    use SrcCore\models\ValidatorModel;
    
    Damien's avatar
    Damien committed
    use User\models\UserModel;
    
    
    class GroupController
    {
    
        public function get(Request $request, Response $response)
    
            if (!ServiceModel::hasService(['id' => 'admin_groups', 'userId' => $GLOBALS['userId'], 'location' => 'apps', 'type' => 'admin'])) {
    
                return $response->withStatus(403)->withJson(['errors' => 'Service forbidden']);
            }
    
    
            $groups = GroupModel::get();
            foreach ($groups as $key => $value) {
    
                $groups[$key]['users'] = GroupModel::getUsersByGroupId(['groupId' => $value['group_id'], 'select' => ['users.user_id', 'users.firstname', 'users.lastname']]);
    
            }
    
            return $response->withJson(['groups' => $groups]);
        }
    
    
        public function getById(Request $request, Response $response, array $aArgs)
    
            if (!ServiceModel::hasService(['id' => 'admin_groups', 'userId' => $GLOBALS['userId'], 'location' => 'apps', 'type' => 'admin'])) {
                return $response->withStatus(403)->withJson(['errors' => 'Service forbidden']);
            }
    
            $group = GroupModel::getById(['id' => $aArgs['id']]);
            if (empty($group)) {
                return $response->withStatus(400)->withJson(['errors' => 'Group not found']);
            }
    
            return $response->withJson(['group' => $group]);
        }
    
        public function create(Request $request, Response $response)
        {
            if (!ServiceModel::hasService(['id' => 'admin_groups', 'userId' => $GLOBALS['userId'], 'location' => 'apps', 'type' => 'admin'])) {
    
                return $response->withStatus(403)->withJson(['errors' => 'Service forbidden']);
            }
    
            $data = $request->getParams();
    
    
            $check = Validator::stringType()->notEmpty()->validate($data['group_id']) && preg_match("/^[\w-]*$/", $data['group_id']) && (strlen($data['group_id']) < 33);
    
            $check = $check && Validator::stringType()->notEmpty()->validate($data['group_desc']);
    
            $check = $check && Validator::stringType()->notEmpty()->validate($data['security']['where_clause']);
            if (!$check) {
                return $response->withStatus(400)->withJson(['errors' => 'Bad Request']);
            }
    
    
            $existingGroup = GroupModel::getByGroupId(['groupId' => $data['group_id'], 'select' => ['1']]);
            if (!empty($existingGroup)) {
    
                return $response->withStatus(400)->withJson(['errors' => _ID. ' ' . _ALREADY_EXISTS]);
    
    Damien's avatar
    Damien committed
            if (!PreparedClauseController::isRequestValid(['clause' => $data['security']['where_clause'], 'userId' => $GLOBALS['userId']])) {
    
                return $response->withStatus(400)->withJson(['errors' => _INVALID_CLAUSE]);
            }
    
    
            GroupModel::create(['groupId' => $data['group_id'], 'description' => $data['group_desc'], 'clause' => $data['security']['where_clause'], 'comment' => $data['security']['maarch_comment']]);
    
    
            $group = GroupModel::getByGroupId(['groupId' => $data['group_id'], 'select' => ['id']]);
            if (empty($group)) {
    
                return $response->withStatus(500)->withJson(['errors' => 'Group Creation Error']);
            }
    
    
            return $response->withJson(['group' => $group['id']]);
    
        public function update(Request $request, Response $response, array $aArgs)
    
            if (!ServiceModel::hasService(['id' => 'admin_groups', 'userId' => $GLOBALS['userId'], 'location' => 'apps', 'type' => 'admin'])) {
    
                return $response->withStatus(403)->withJson(['errors' => 'Service forbidden']);
            }
    
            $group = GroupModel::getById(['id' => $aArgs['id']]);
            if (empty($group)) {
                return $response->withStatus(400)->withJson(['errors' => 'Group not found']);
            }
    
            $data = $request->getParams();
            $check = Validator::stringType()->notEmpty()->validate($data['description']);
            $check = $check && Validator::stringType()->notEmpty()->validate($data['security']['where_clause']);
            if (!$check) {
                return $response->withStatus(400)->withJson(['errors' => 'Bad Request']);
            }
    
    
    Damien's avatar
    Damien committed
            if (!PreparedClauseController::isRequestValid(['clause' => $data['security']['where_clause'], 'userId' => $GLOBALS['userId']])) {
    
                return $response->withStatus(400)->withJson(['errors' => _INVALID_CLAUSE]);
            }
    
    
            GroupModel::update([
                'set'   => ['group_desc' => $data['description']],
                'where' => ['id = ?'],
                'data'  => [$aArgs['id']]
            ]);
            GroupModel::updateSecurity([
                'set'   => ['where_clause' => $data['security']['where_clause'], 'maarch_comment' => $data['security']['maarch_comment']],
                'where' => ['group_id = ?'],
                'data'  => [$group['group_id']]
            ]);
    
    
            return $response->withJson(['success' => 'success']);
        }
    
    
        public function delete(Request $request, Response $response, array $aArgs)
    
            if (!ServiceModel::hasService(['id' => 'admin_groups', 'userId' => $GLOBALS['userId'], 'location' => 'apps', 'type' => 'admin'])) {
    
                return $response->withStatus(403)->withJson(['errors' => 'Service forbidden']);
            }
    
            $group = GroupModel::getById(['id' => $aArgs['id']]);
            if (empty($group)) {
                return $response->withStatus(400)->withJson(['errors' => 'Group not found']);
            }
    
            GroupModel::delete(['id' => $aArgs['id']]);
    
            $groups = GroupModel::get();
            foreach ($groups as $key => $value) {
    
                $groups[$key]['users'] = GroupModel::getUsersByGroupId(['groupId' => $value['group_id'], 'select' => ['users.user_id']]);
    
            }
    
            return $response->withJson(['groups' => $groups]);
        }
    
    
        public function getDetailledById(Request $request, Response $response, array $aArgs)
    
            if (!ServiceModel::hasService(['id' => 'admin_groups', 'userId' => $GLOBALS['userId'], 'location' => 'apps', 'type' => 'admin'])) {
    
                return $response->withStatus(403)->withJson(['errors' => 'Service forbidden']);
            }
    
    
    Damien's avatar
    Damien committed
            $group = GroupModel::getById(['id' => $aArgs['id'], 'select' => ['id', 'group_id', 'group_desc']]);
    
            if (empty($group)) {
                return $response->withStatus(400)->withJson(['errors' => 'Group not found']);
            }
    
    
            $group['security']          = GroupModel::getSecurityByGroupId(['groupId' => $group['group_id']]);
            $group['services']          = GroupModel::getAllServicesByGroupId(['groupId' => $group['group_id']]);
    
    kevin.dezaphi's avatar
    kevin.dezaphi committed
            $group['users']             = GroupModel::getUsersByGroupId(['groupId' => $group['group_id'], 'select' => ['users.id', 'users.user_id', 'users.firstname', 'users.lastname', 'users.status']]);
    
            $group['baskets']           = GroupBasketModel::getBasketsByGroupId(['select' => ['baskets.basket_id', 'baskets.basket_name', 'baskets.basket_desc'], 'groupId' => $group['group_id']]);
            $group['canAdminUsers']     = ServiceModel::hasService(['id' => 'admin_users', 'userId' => $GLOBALS['userId'], 'location' => 'apps', 'type' => 'admin']);
            $group['canAdminBaskets']   = ServiceModel::hasService(['id' => 'admin_baskets', 'userId' => $GLOBALS['userId'], 'location' => 'basket', 'type' => 'admin']);
    
    
            return $response->withJson(['group' => $group]);
        }
    
    
        public function updateService(Request $request, Response $response, array $aArgs)
    
            if (!ServiceModel::hasService(['id' => 'admin_groups', 'userId' => $GLOBALS['userId'], 'location' => 'apps', 'type' => 'admin'])) {
    
                return $response->withStatus(403)->withJson(['errors' => 'Service forbidden']);
            }
    
            $data = $request->getParams();
    
            $group = GroupModel::getById(['id' => $aArgs['id']]);
            if (empty($group)) {
                return $response->withStatus(400)->withJson(['errors' => 'Group not found']);
            }
    
            if ($data['checked'] === true && !empty(GroupModel::getServiceById(['groupId' => $group['group_id'], 'serviceId' => $aArgs['serviceId']]))) {
                return $response->withStatus(400)->withJson(['errors' => 'Service is already linked to this group']);
            }
    
            GroupModel::updateServiceById(['groupId' => $group['group_id'], 'serviceId' => $aArgs['serviceId'], 'checked' => $data['checked']]);
    
            return $response->withJson(['success' => 'success']);
        }
    
    
        public function reassignUsers(Request $request, Response $response, array $aArgs)
    
            if (!ServiceModel::hasService(['id' => 'admin_groups', 'userId' => $GLOBALS['userId'], 'location' => 'apps', 'type' => 'admin'])) {
    
                return $response->withStatus(403)->withJson(['errors' => 'Service forbidden']);
            }
    
    
    Damien's avatar
    Damien committed
            $group = GroupModel::getById(['id' => $aArgs['id'], 'select' => ['group_id']]);
    
            if (empty($group)) {
                return $response->withStatus(400)->withJson(['errors' => 'Group not found']);
            }
    
    Damien's avatar
    Damien committed
            $newGroup = GroupModel::getById(['id' => $aArgs['newGroupId'], 'select' => ['group_id']]);
    
            if (empty($newGroup)) {
                return $response->withStatus(400)->withJson(['errors' => 'Group not found']);
            }
    
            $oldGroupUsers = GroupModel::getUsersByGroupId(['groupId' => $group['group_id'], 'select' => ['users.user_id']]);
            $newGroupUsers = GroupModel::getUsersByGroupId(['groupId' => $newGroup['group_id'], 'select' => ['users.user_id']]);
            
            //Mapped array to have only user_id
            $oldGroupUsers = array_map(function ($entry) {
                return $entry['user_id'];
            }, $oldGroupUsers);
    
            $newGroupUsers = array_map(function ($entry) {
                return $entry['user_id'];
            }, $newGroupUsers);
    
            $ignoredUsers = [];
    
            foreach ($oldGroupUsers as $user) {
    
                if (in_array($user, $newGroupUsers)) {
    
                    $ignoredUsers[] = $user;
                }
            }
    
            GroupModel::reassignUsers(['groupId' => $group['group_id'], 'newGroupId' => $newGroup['group_id'], 'ignoredUsers' => $ignoredUsers]);
    
            return $response->withJson(['success' => 'success']);
    
        public function getIndexingInformationsById(Request $request, Response $response, array $args)
    
        {
            if (!ServiceModel::hasService(['id' => 'admin_groups', 'userId' => $GLOBALS['userId'], 'location' => 'apps', 'type' => 'admin'])) {
                return $response->withStatus(403)->withJson(['errors' => 'Service forbidden']);
            }
    
            $group = GroupModel::getById(['id' => $args['id'], 'select' => ['can_index', 'indexation_parameters']]);
            if (empty($group)) {
                return $response->withStatus(400)->withJson(['errors' => 'Group not found']);
            }
    
    
            $group['canIndex'] = $group['can_index'];
            $group['indexationParameters'] = json_decode($group['indexation_parameters'], true);
            unset($group['can_index'], $group['indexation_parameters']);
    
    
            $allActions = ActionModel::get(['select' => ['id', 'label_action'], 'where' => ['component in (?)'], 'data' => [['confirmAction', 'closeMailAction']]]);
    
            $allEntities = EntityModel::get([
                'select'    => ['e1.id', 'e1.entity_id', 'e1.entity_label', 'e2.id as parent_id'],
                'table'     => ['entities e1', 'entities e2'],
                'left_join' => ['e1.parent_entity_id = e2.entity_id'],
                'where'     => ['e1.enabled = ?'],
                'data'      => ['Y']
            ]);
    
            foreach ($allEntities as $key => $value) {
                $allEntities[$key]['id'] = $value['id'];
                if (empty($value['parent_id'])) {
                    $allEntities[$key]['parent'] = '#';
                    $allEntities[$key]['icon']   = "fa fa-building";
                } else {
                    $allEntities[$key]['parent'] = $value['parent_id'];
                    $allEntities[$key]['icon']   = "fa fa-sitemap";
                }
    
    Damien's avatar
    Damien committed
                $allEntities[$key]['state']['opened'] = true;
    
    Damien's avatar
    Damien committed
                if (in_array($value['id'], $group['indexationParameters']['entities'])) {
    
                    $allEntities[$key]['state']['selected'] = true;
                }
    
                $allEntities[$key]['text'] = $value['entity_label'];
            }
    
            return $response->withJson(['group' => $group, 'actions' => $allActions, 'entities' => $allEntities]);
        }
    
    
        public function updateIndexingInformations(Request $request, Response $response, array $args)
        {
            if (!ServiceModel::hasService(['id' => 'admin_groups', 'userId' => $GLOBALS['userId'], 'location' => 'apps', 'type' => 'admin'])) {
                return $response->withStatus(403)->withJson(['errors' => 'Service forbidden']);
            }
    
    
    Damien's avatar
    Damien committed
            $body = $request->getParsedBody();
    
            if (!Validator::arrayType()->notEmpty()->validate($body)) {
                return $response->withStatus(400)->withJson(['errors' => 'Body is empty or not an array']);
    
    Damien's avatar
    Damien committed
            }
    
    
            $group = GroupModel::getById(['id' => $args['id'], 'select' => ['indexation_parameters']]);
            if (empty($group)) {
                return $response->withStatus(400)->withJson(['errors' => 'Group not found']);
            }
    
    
            $indexationParameters = json_decode($group['indexation_parameters'], true);
    
    
            if (isset($body['canIndex']) && is_bool($body['canIndex'])) {
    
                $set['can_index'] = $body['canIndex'] ? 'true' : 'false';
            }
    
            if (isset($body['actions']) && is_array($body['actions'])) {
                if (!empty($body['actions'])) {
                    $countActions = ActionModel::get(['select' => ['count(1)'], 'where' => ['id in (?)'], 'data' => [$body['actions']]]);
                    if ($countActions[0]['count'] != count($body['actions'])) {
                        return $response->withStatus(400)->withJson(['errors' => 'Body actions contains invalid actions']);
                    }
    
                }
                $indexationParameters['actions'] = $body['actions'];
            }
    
            if (isset($body['entities']) && is_array($body['entities'])) {
                if (!empty($body['entities'])) {
                    $countEntities = EntityModel::get(['select' => ['count(1)'], 'where' => ['id in (?)'], 'data' => [$body['entities']]]);
                    if ($countEntities[0]['count'] != count($body['entities'])) {
                        return $response->withStatus(400)->withJson(['errors' => 'Body entities contains invalid entities']);
                    }
    
                }
                $indexationParameters['entities'] = $body['entities'];
            }
    
            if (isset($body['keywords']) && is_array($body['keywords'])) {
    
                $indexationParameters['keywords'] = $body['keywords'];
            }
    
            $set['indexation_parameters'] = json_encode($indexationParameters);
    
    
            GroupModel::update([
    
                'where' => ['id = ?'],
                'data'  => [$args['id']]
            ]);
    
            return $response->withStatus(204);
        }
    
    
    Damien's avatar
    Damien committed
        public static function getGroupsClause(array $aArgs)
        {
            ValidatorModel::notEmpty($aArgs, ['userId']);
            ValidatorModel::stringType($aArgs, ['userId']);
    
            $groups = UserModel::getGroupsByUserId(['userId' => $aArgs['userId']]);
            $groupsClause = '';
            foreach ($groups as $key => $group) {
                if (!empty($group['where_clause'])) {
    
    Damien's avatar
    Damien committed
                    $groupClause = PreparedClauseController::getPreparedClause(['clause' => $group['where_clause'], 'login' => $aArgs['userId']]);
    
    Damien's avatar
    Damien committed
                    if ($key > 0) {
                        $groupsClause .= ' or ';
                    }
                    $groupsClause .= "({$groupClause})";
                }
            }
    
            return $groupsClause;
        }
    
    
    Damien's avatar
    Damien committed
        public static function arraySort($aArgs)
    
    Damien's avatar
    Damien committed
        {
            ValidatorModel::notEmpty($aArgs, ['data', 'on']);
            ValidatorModel::arrayType($aArgs, ['data']);
            ValidatorModel::stringType($aArgs, ['on']);
    
            $order = SORT_ASC;
            $sortableArray = [];
    
            foreach ($aArgs['data'] as $k => $v) {
                if (is_array($v)) {
                    foreach ($v as $k2 => $v2) {
                        if ($k2 == $aArgs['on']) {
                            $sortableArray[$k] = $v2;
                        }
                    }
                } else {
                    $sortableArray[$k] = $v;
                }
            }
    
            switch ($order) {
                case SORT_ASC:
                    asort($sortableArray);
                    break;
                case SORT_DESC:
                    arsort($sortableArray);
                    break;
            }
    
            $newArray = [];
            foreach ($sortableArray as $k => $v) {
                $newArray[] = $aArgs['data'][$k];
            }
    
            return $newArray;
        }