EOTEXT;
return $html;
}
/**
* 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'] );
@ob_flush(); exit(0);
}
if ( isset($c->restrict_admin_roles) && $roles == '' ) $roles = $c->restrict_admin_roles;
if ( $this->logged_in && $roles == '' ) return;
/**
* We allow basic auth to apply also, if present, though we check everything else first...
*/
if ( isset($_SERVER['PHP_AUTH_USER']) && !$this->logged_in && $_SERVER['PHP_AUTH_USER'] != "" && $_SERVER['PHP_AUTH_PW'] != "" && ! $_COOKIE['NoAutoLogin'] ) {
if ( $this->Login($_SERVER['PHP_AUTH_USER'],$_SERVER['PHP_AUTH_PW'],false)) {
setcookie('NoAutoLogin',1,0);
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');
@ob_flush(); exit(0);
}
}
$session = new DAViCalSession();
$session->_CheckLogin();