* @copyright Catalyst .Net Ltd, Morphoss Ltd * @license http://gnu.org/copyleft/gpl.html GNU GPL v2 */ /** * @global resource $session * @name $session * The session object is global. */ $session = 1; // Fake initialisation // The Session object uses some (optional) configurable SQL to load // the records related to the logged-on user... (the where clause gets added). // It's very important that someone not be able to externally control this, // so we make it a function rather than a variable. /** * @todo Make this a defined constant */ function local_session_sql() { $sql = <<Session($sid); } /** * Internal function used to assign the session details to a user's new session. * @param object $u The user+session object we (probably) read from the database. */ function AssignSessionDetails( $u ) { if ( !isset($u->principal_id) ) { // If they don't have a principal_id set then we should re-read from our local database $qry = new AwlQuery('SELECT * FROM dav_principal WHERE username = :username', array(':username' => $u->username) ); if ( $qry->Exec() && $qry->rows() == 1 ) { $u = $qry->Fetch(); } } parent::AssignSessionDetails( $u ); $this->GetRoles(); if ( function_exists('awl_set_locale') && isset($this->locale) && $this->locale != '' ) { awl_set_locale($this->locale); } } /** * Method used to get the user's roles */ function GetRoles () { $this->roles = array(); $sql = 'SELECT role_name FROM roles JOIN role_member ON roles.role_no=role_member.role_no WHERE user_no = '.$this->user_no; $qry = new AwlQuery( $sql ); if ( $qry->Exec('DAViCalSession') && $qry->rows() > 0 ) { while( $role = $qry->Fetch() ) { $this->roles[$role->role_name] = 1; } } } /** * Checks that this user is logged in, and presents a login screen if they aren't. * * The function can optionally confirm whether they are a member of one of a list * of roles, and deny access if they are not a member of any of them. * * @param string $roles The list of roles that the user must be a member of one of to be allowed to proceed. * @return boolean Whether or not the user is logged in and is a member of one of the required roles. */ function LoginRequired( $roles = '' ) { global $c, $session, $main_menu, $sub_menu, $tab_menu; $current_domain = (isset($_SERVER['SERVER_NAME'])?$_SERVER['SERVER_NAME']:$_SERVER['SERVER_ADDR']); if ( (isset($c->restrict_admin_domain) && $c->restrict_admin_domain != $current_domain) || (isset($c->restrict_admin_port) && $c->restrict_admin_port != $_SERVER['SERVER_PORT'] ) ) { header('Location: caldav.php'); dbg_error_log( 'LOG WARNING', 'Access to "%s" via "%s:%d" rejected.', $_SERVER['REQUEST_URI'], $current_domain, $_SERVER['SERVER_PORT'] ); exit(0); } if ( isset($c->restrict_admin_roles) && $roles == '' ) $roles = $c->restrict_admin_roles; if ( $this->logged_in && $roles == '' ) return; if ( ! $this->logged_in ) { $c->messages[] = i18n('You must log in to use this system.'); include_once('page-header.php'); if ( function_exists('local_index_not_logged_in') ) { local_index_not_logged_in(); } else { if ( $this->login_failed ) { $c->messages[] = i18n('Invalid user name or password.'); } echo '

'.translate('Log On Please')."

\n"; echo '

'.translate('For access to the') .' '.translate($c->system_name).' ' .translate('you should log on with the username and password that have been issued to you.') ."

\n"; echo '

'.translate('If you would like to request access, please e-mail').' '.$c->admin_email."

\n"; echo $this->RenderLoginPanel(); } } else { $valid_roles = explode(',', $roles); foreach( $valid_roles AS $k => $v ) { if ( $this->AllowedTo($v) ) return; } $c->messages[] = i18n('You are not authorised to use this function.'); include_once('page-header.php'); } include('page-footer.php'); exit; } } $session = new DAViCalSession(); $session->_CheckLogin();