Skip to content
Snippets Groups Projects
users_controler.php 18 KiB
Newer Older
  • Learn to ignore specific revisions
  • SNA's avatar
    SNA committed
    /*
    
    * Copyright Maarch since 2008 under licence GPLv3.
    * See LICENCE.txt file at the root folder for more details.
    * This file is part of Maarch software.
    
    * @brief  Contains the controler of the user object (create, save, modify)
    
    SNA's avatar
    SNA committed
    * @file
    * @author Claire Figueras <dev@maarch.org>
    * @date $date$
    * @version $Revision$
    * @ingroup core
    */
    
    SNA's avatar
    SNA committed
    // Loads the required class
    
    SNA's avatar
    SNA committed
        require_once 'core/core_tables.php' ;
        require_once 'core/class/users.php' ;
        require_once 'core/class/ObjectControlerAbstract.php';
        require_once 'core/class/ObjectControlerIF.php';
        require_once 'core/class/class_history.php';
    
        require_once('core' . DIRECTORY_SEPARATOR . 'class'
            . DIRECTORY_SEPARATOR . 'class_security.php');
    
        functions::xecho($e->getMessage()) . ' // ';
    
    SNA's avatar
    SNA committed
    /**
    
    SNA's avatar
    SNA committed
    * @brief  controler of the user object
    
    SNA's avatar
    SNA committed
    *
    *<ul>
    
    *  <li>Get an user object from an id</li>
    
    SNA's avatar
    SNA committed
    *  <li>Save in the database a user</li>
    
    *  <li>Manage the operation on the users related tables in the database
    *   (insert, select, update, delete)</li>
    
    SNA's avatar
    SNA committed
    *</ul>
    * @ingroup core
    */
    
    class users_controler extends ObjectControler implements ObjectControlerIF
    {
    
        /**
        * Returns an user object based on a user identifier
        *
    
    SNA's avatar
    SNA committed
        * @param  $userId string  User identifier
        * @param  $compWhere string  where clause arguments
    
    SNA's avatar
    SNA committed
        *               (must begin with and or or)
    
    SNA's avatar
    SNA committed
        * @param  $canBeDisabled bool if true gets the user even if it is
    
    SNA's avatar
    SNA committed
        *               disabled in the database (false by default)
    
        * @return user object with properties from the database or null
        */
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
        public function get($userId)
    
            self::set_foolish_ids(array('user_id', 'docserver_location_id'));
    
            self::set_specific_id('user_id');
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
            $user = self::advanced_get($userId, USERS_TABLE);
    
    SNA's avatar
    SNA committed
            if (isset($user)
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
            ) {
    
    SNA's avatar
    SNA committed
            } else {
    
        /**
        * Returns an user object based on a user identifier with PDO
        *
        * @param  $userId string  User identifier
        * @param  $compWhere string  where clause arguments
        *               (must begin with and or or)
        * @return user object with properties from the database or null
        */
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
        public function getWithComp($userId, $compWhere='', $params=array())
    
        {
            self::set_foolish_ids(array('user_id', 'docserver_location_id'));
            self::set_specific_id('user_id');
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
            $user = self::advanced_getWithComp($userId, USERS_TABLE, $compWhere, $params);
    
                && ($user->__get('status') == 'OK'
    
                || $user->__get('status') == 'ABS')
            ) {
                return $user;
            } else {
                return null;
            }
        }
    
    
        * Returns in an array all the groups associated with a user (user_id,
    
        * group_id and role)
    
    SNA's avatar
    SNA committed
        * @param  $userId string  User identifier
    
        * @return Array or null
        */
    
    SNA's avatar
    SNA committed
        public function getGroups($userId)
    
    SNA's avatar
    SNA committed
            if (empty($userId)) {
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
            self::$db = new Database();
    
            $userUse = \User\models\UserModel::getByLogin(['login' => $userId, 'select' => ['id']]);
    
            $query = 'select u.group_id, uc.role from usergroup_content uc, usergroups u where uc.user_id = ? and uc.group_id = u.id ';
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
            try {
    
                $stmt = self::$db->query($query, array($userUse['id']));
    
                echo _NO_USER_WITH_ID.' '.functions::xssafe($userId).' // ';
    
    SNA's avatar
    SNA committed
            }
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
            while ($res = $stmt->fetchObject()) {
    
    SNA's avatar
    SNA committed
                array_push(
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
                    array(
                        'USER_ID' => $userId,
    
    SNA's avatar
    SNA committed
                        'GROUP_ID' => $res->group_id,
                        'ROLE' => $res->role,
                    )
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
            
    
            return $groups;
        }
    
    
        /**
        * Saves in the database a user object
        *
        * @param  $user user object to be saved
    
        * @param  $groups Groups data,
    
    SNA's avatar
    SNA committed
        *            array( 'USER_ID'    => User Identifier,
    
        *                   'GROUP_ID'   => Group identifier,
        *                   'LABEL'      => Group label,
        *                   'PRIMARY'    => Y / N (Is the group,
    
    SNA's avatar
    SNA committed
        *                               the primary group for the user),
    
        *                   'ROLE'       => User role in the group (string)
        *                  )
    
        * @param  $mode Mode (add or up)
    
        * @param  $params More parameters,
    
    SNA's avatar
    SNA committed
        *           array('modules_services' => $_SESSION['modules_services']
        *                                       type array,
    
        *                 'log_user_up'      => 'true' / 'false':
    
    SNA's avatar
    SNA committed
        *                                       log user modification ,
    
        *                 'log_user_add'     => 'true' / 'false': log user addition,
    
        *                 'databasetype'     => Type of the database,
    
    SNA's avatar
    SNA committed
        *                 'userdefaultpassword' => Default password for user,
        *                 'manageGroups'     => If true manage groups for the user
    
        *                                       )
        * @return array (   'status' => 'ok' / 'ko',
        *                   'value'  => User identifier or empty in case of error,
        *                   'error'  => Error message, defined only in case of error
    
    SNA's avatar
    SNA committed
        public function save($user, $groups=array(), $mode='', $params=array())
    
            $control = array();
            // If user not defined or empty, return an error
    
    SNA's avatar
    SNA committed
            if (! isset($user) || empty($user)) {
                $control = array(
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
                    'status' => 'ko',
    
    SNA's avatar
    SNA committed
                    'value'  => '',
    
    SNA's avatar
    SNA committed
                );
    
                return $control;
            }
            // If mode not up or add, return an error
    
            if (! isset($mode) || empty($mode)
                || ($mode <> 'add' && $mode <> 'up')
    
    SNA's avatar
    SNA committed
            ) {
                $control = array(
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
                    'status' => 'ko',
    
    SNA's avatar
    SNA committed
                    'value'  => '',
                    'error'  => _MODE . ' ' ._UNKNOWN,
                );
    
    SNA's avatar
    SNA committed
            $user = self::_isAUser($user);
    
            self::set_foolish_ids(array('user_id', 'docserver_location_id'));
    
            self::set_specific_id('user_id');
    
    
    SNA's avatar
    SNA committed
            $control = self::_control($user, $groups, $mode, $params);
    
            if ($control['status'] == 'ok') {
    
    SNA's avatar
    SNA committed
                $core = new core_tools();
    
    
                $_SESSION['service_tag'] = 'user_' . $mode;
    
    SNA's avatar
    SNA committed
                if (isset($params['modules_services'])) {
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
                    $core->execute_modules_services(
    
                        $params['modules_services'],
                        'users_add_db',
                        'include'
    
    SNA's avatar
    SNA committed
                }
                if ($mode == 'up') {
    
    SNA's avatar
    SNA committed
                    if (self::_update($user)) {
                        $control = array(
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
                            'status' => 'ok',
    
    SNA's avatar
    SNA committed
                            'value'  => $user->user_id,
                        );
    
    SNA's avatar
    SNA committed
                        if ($params['log_user_up'] == 'true') {
    
    SNA's avatar
    SNA committed
                            $history->add(
    
                                USERS_TABLE,
                                $user->user_id,
                                'UP',
                                'usersup',
    
                                _USER_UPDATE . ' : ' . $user->user_id,
    
    SNA's avatar
    SNA committed
                                $params['databasetype']
                            );
    
    SNA's avatar
    SNA committed
                        $control = array(
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
                            'status' => 'ko',
    
    SNA's avatar
    SNA committed
                            'value'  => '',
                            'error'  => _PB_WITH_USER_UPDATE,
                        );
    
    SNA's avatar
    SNA committed
                } else { //mode == add
                    if (self::_insert($user)) {
                        $control = array(
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
                            'status' => 'ok',
    
    SNA's avatar
    SNA committed
                            'value'  => $user->user_id,
                        );
    
    SNA's avatar
    SNA committed
                        if ($params['log_user_add'] == 'true') {
    
    SNA's avatar
    SNA committed
                            $history->add(
    
                                USERS_TABLE,
                                $user->user_id,
                                'ADD',
                                'usersadd',
    
                                _USER_ADDED . ' : ' . $user->user_id,
    
    SNA's avatar
    SNA committed
                                $params['databasetype']
                            );
    
    SNA's avatar
    SNA committed
                        $control = array(
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
                            'status' => 'ko',
    
    SNA's avatar
    SNA committed
                            'value'  => '',
                            'error'  => _PB_WITH_USER,
                        );
    
                    }
                }
            }
            unset($_SESSION['service_tag']);
            return $control;
        }
    
        /**
        * Fill a user object with an object if it's not a user
        *
        * @param  $object ws users object
        * @return object users
        */
    
    SNA's avatar
    SNA committed
        private function _isAUser($object)
    
    SNA's avatar
    SNA committed
            if (get_class($object) <> 'users') {
    
                $func = new functions();
                $userObject = new users();
                $array = array();
                $array = $func->object2array($object);
    
    SNA's avatar
    SNA committed
                foreach (array_keys($array) as $key) {
    
                    $userObject->{$key} = $array[$key];
    
    SNA's avatar
    SNA committed
        * _control the data of user object
    
        * @param  $groups Groups data,
    
    SNA's avatar
    SNA committed
        *               array( 'USER_ID'       => User Identifier,
    
        *                      'GROUP_ID'      => Group identifier,
        *                      'LABEL'         => Group label,
        *                      'PRIMARY'       => Y / N (Is the group, the primary
    
    SNA's avatar
    SNA committed
        *                                         group for the user),
    
        *                      'ROLE'          => User role in the group (string)
        *                )
    
        * @param  $mode Mode (add or up)
    
        * @param  $params More parameters,
    
    SNA's avatar
    SNA committed
        *               array('modules_services'   => $_SESSION['modules_services']
        *                                             type array,
    
        *                     'log_user_up'        => 'true' / 'false': log user
    
    SNA's avatar
    SNA committed
        *                                             modification ,
    
        *                     'log_user_add'       => 'true' / 'false': log user
    
    SNA's avatar
    SNA committed
        *                                             addition ,
    
        *                     'databasetype'       => Type of the database
    
    SNA's avatar
    SNA committed
        *                     'userdefaultpassword' => Default password for user,
        *                     'manageGroups'     => If true manage groups for the user
    
        *                )
        * @return array (  'status' => 'ok' / 'ko',
        *                  'value'  => User identifier or empty in case of error,
        *                  'error'  => Error message, defined only in case of error
    
    SNA's avatar
    SNA committed
        *               )
    
    SNA's avatar
    SNA committed
        private function _control($user, $groups, $mode, $params=array())
    
            $error = "";
            $f = new functions();
    
    
            if (strpos($user->user_id, "'") !== false) {
                $error .= _USER_ID . ' '._WRONG_FORMAT . '#';
            }
    
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
            $user->user_id = $f->wash($user->user_id, 'no', _THE_ID, 'yes', 0, 128);
    
    SNA's avatar
    SNA committed
            if ($mode == 'add') {
    
                $sec = new security();
                $user->password =  $sec->getPasswordHash($params['userdefaultpassword']);
    
    SNA's avatar
    SNA committed
                if (self::userExists($user->user_id)) {
    
                    $error .= _USER . ' ' . _ALREADY_EXISTS;
    
    
                if (self::userDeleted($user->user_id)) {
                    $url = "'".$_SESSION['config']['businessappurl']."index.php?admin=users&page=users_management_controler&mode=up&reactivate=true'";
    
                    $error .= _ALREADY_CREATED_AND_DELETED . '. ';
    
                    $_SESSION['reactivateUser'] = '<input class="button" style="cursor:pointer;text-align: center" onclick="document.getElementById(\'frmuser\').action ='.$url.';document.getElementById(\'user_submit\').click();" value="' . _REACTIVATE .' ?">';
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
            $user->firstname = $f->wash($user->firstname, 'no', _THE_FIRSTNAME, 'yes', 0, 255);
            $user->lastname = $f->wash($user->lastname, 'no', _THE_LASTNAME, 'yes', 0, 255);
    
    SNA's avatar
    SNA committed
            if (isset($user->department) && ! empty($user->department)) {
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
                $user->department = $f->wash($user->department, 'no', _DEPARTMENT, 'yes', 0, 50);
    
    SNA's avatar
    SNA committed
            if (isset($user->phone) && ! empty($user->phone)) {
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
                $user->phone = $f->wash($user->phone, 'no', _PHONE, 'yes', 0, 32);
    
    SNA's avatar
    SNA committed
            if (isset($user->loginmode) && ! empty($user->loginmode)) {
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
                $user->loginmode  = $f->wash($user->loginmode, 'no', _LOGIN_MODE, 'yes', 0, 50);
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
            $user->mail = $f->wash($user->mail, 'mail', _MAIL, 'yes', 0, 255);
    
    
    
            $_SESSION['service_tag'] = 'user_check';
    
    SNA's avatar
    SNA committed
            $core = new core_tools();
    
    SNA's avatar
    SNA committed
            if (isset($params['modules_services'])) {
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
                $core->execute_modules_services(
    
                    $params['modules_services'],
                    'user_check',
                    'include'
    
    SNA's avatar
    SNA committed
            }
    
            $error .= $_SESSION['error'];
            //TODO:rewrite wash to return errors without html and not in the session
            $error = str_replace("<br />", "#", $error);
            $return = array();
    
    SNA's avatar
    SNA committed
            if (! empty($error)) {
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
                $return = array(
                    'status' => 'ko',
    
    SNA's avatar
    SNA committed
                    'value'  => $user->user_id,
                    'error'  => $error,
                );
    
    SNA's avatar
    SNA committed
                $return = array(
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
                    'status' => 'ok',
    
    SNA's avatar
    SNA committed
                    'value'  => $user->user_id,
                );
    
            }
            unset($_SESSION['service_tag']);
            return $return;
    
    SNA's avatar
    SNA committed
        * inserts in the database (users table) a user object
    
        *
        * @param  $user user object
        * @return bool true if the insertion is complete, false otherwise
        */
    
    SNA's avatar
    SNA committed
        private function _insert($user)
    
            return self::advanced_insert($user);
        }
    
        /**
        * Updates a user in the database (users table) with a user object
        *
        * @param  $user user object
        * @return bool true if the update is complete, false otherwise
        */
    
    SNA's avatar
    SNA committed
        private function _update($user)
    
            return self::advanced_update($user);
        }
    
    
        public function delete($user, $params = array())
    
        }
    
        /**
        * Asserts if a given user (user_id) exists in the database
        *
    
    SNA's avatar
    SNA committed
        * @param  $userId String User identifier
    
        * @return bool true if the user exists, false otherwise
        */
    
    SNA's avatar
    SNA committed
        public function userExists($userId)
    
    SNA's avatar
    SNA committed
            if (! isset($userId) || empty($userId)) {
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
            self::$db = new Database();
    
    SNA's avatar
    SNA committed
            $func = new functions();
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
            $query = 'select user_id from ' . USERS_TABLE . " where user_id = ? and status<>'DEL'";
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
                $stmt = self::$db->query($query, array($userId));
    
                echo _UNKNOWN . ' ' . _USER . ' ' . functions::xssafe($userId) . ' // ';
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
            
    
            return false;
        }
    
    
        /**
        * Disables a given user
        *
        * @param  $user user object
        * @return bool true if the disabling is complete, false otherwise
        */
    
    SNA's avatar
    SNA committed
        public function disable($user, $params=array())
    
        }
    
        /**
        * Enables a given user
        *
        * @param  $user user object
        * @return bool true if the enabling is complete, false otherwise
        */
    
    SNA's avatar
    SNA committed
        public function enable($user, $params=array())
    
        /**
        * Asserts if a given user (user_id) is deleted in the database
        *
        * @param  $userId String User identifier
        * @return bool true if the user is deleted, false otherwise
        */
        public function userDeleted($userId)
        {
            if (! isset($userId) || empty($userId)) {
                return false;
            }
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
            self::$db = new Database();
    
            $func = new functions();
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
            $query = 'select user_id from ' . USERS_TABLE . " where lower(user_id) = lower(?) and status = 'DEL'";
            try {
                $stmt = self::$db->query($query, array($userId));
    
                echo _UNKNOWN . ' ' . _USER . ' ' . functions::xssafe($userId) . ' // ';
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
            if ($stmt->rowCount() > 0) {
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
            
    
            return false;
        }
    
        /**
        * Reactivate a given user
        *
        * @param  $user user object
        * @return bool true if activate is complete, false otherwise
        */
        public function reactivate($user)
        {
            $user = self::_isAUser($user);
            self::set_foolish_ids(array('user_id', 'docserver_location_id'));
            self::set_specific_id('user_id');
    
            if (self::advanced_reactivate($user)) {
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
                self::$db = new Database();
                $query = "update users set user_id = ? where lower(user_id)=lower(?)";
                $stmt = self::$db->query($query, array($user->user_id, $user->user_id));
    
        /**
        * Returns in an array all the entities associated with a user (user_id,
        * entity_id, primary and role)
        *
        * @param  $userId string  User identifier
        * @return Array or null
        */
        public function getEntities($userId)
        {
            $entities = array();
            if (empty($userId)) {
                return null;
            }
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
            self::$db = new Database();
    
            $func = new functions();
            $query = "SELECT ue.entity_id, ue.user_role, ue.primary_entity 
                        FROM users_entities ue, entities e 
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
                        WHERE ue.user_id = ? and e.enabled = 'Y' and e.entity_id = ue.entity_id
    
                        ORDER BY primary_entity desc";
    
            // set primary entity to the first row
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
            try {
                $stmt = self::$db->query($query, array($userId));
    
                echo _NO_USER_WITH_ID.' '.functions::xssafe($userId).' // ';
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
            while ($res = $stmt->fetchObject()) {
    
                    array(
                        'USER_ID' => $userId,
                        'ENTITY_ID' => $res->entity_id,
                        'PRIMARY' => $res->primary_entity,
                        'ROLE' => $res->user_role,
                    )
                );
            }
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
    
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
    }