for the Univesity of Geneva */ class Redirect { /** * Returns the result of api_get_path() (a web path to the root of Chamilo) * @return string */ public static function www() { return Uri::www(); } /** * Checks whether the given URL contains "http". If not, prepend the web * root of Chamilo and send the browser there (HTTP redirect) * @param string $url */ public static function go($url = '') { if (empty($url)) { Redirect::session_request_uri(); $www = self::www(); self::navigate($www); } $is_full_uri = (strpos($url, 'http') === 0); if ($is_full_uri) { self::navigate($url); } $url = self::www() . $url; self::navigate($url); } /** * Redirect to the current session's "request uri" if it is defined, or * check sso_referer, user's role and page_after_login settings to send * the user to some predefined URL * @param bool Whether the user just logged in (in this case, use page_after_login rules) * @param int The user_id, if defined. Otherwise just send to where the page_after_login setting says */ public static function session_request_uri($logging_in = false, $user_id = null) { $no_redirection = isset($_SESSION['noredirection']) ? $_SESSION['noredirection'] : false; if ($no_redirection) { unset($_SESSION['noredirection']); return; } $url = isset($_SESSION['request_uri']) ? $_SESSION['request_uri'] : ''; unset($_SESSION['request_uri']); if (!empty($url)) { self::navigate($url); } elseif ($logging_in || (isset($_REQUEST['sso_referer']) && !empty($_REQUEST['sso_referer']))) { if (isset($user_id)) { // Make sure we use the appropriate role redirection in case one has been defined $user_status = api_get_user_status($user_id); switch ($user_status) { case COURSEMANAGER: $redir = api_get_setting('teacher_page_after_login'); if (!empty($redir)) { self::navigate(api_get_path(WEB_PATH) . $redir); } break; case STUDENT: $redir = api_get_setting('student_page_after_login'); if (!empty($redir)) { self::navigate(api_get_path(WEB_PATH) . $redir); } break; case DRH: $redir = api_get_setting('drh_page_after_login'); if (!empty($redir)) { self::navigate(api_get_path(WEB_PATH) . $redir); } break; case SESSIONADMIN: $redir = api_get_setting('sessionadmin_page_after_login'); if (!empty($redir)) { self::navigate(api_get_path(WEB_PATH) . $redir); } break; default: break; } } global $_configuration; if (!isset($_configuration['redirect_admin_to_courses_list']) or $_configuration['redirect_admin_to_courses_list'] === 'false') { // If the user is a platform admin, redirect to the main admin page if (api_is_multiple_url_enabled()) { // if multiple URLs are enabled, make sure he's admin of the // current URL before redirecting $url = api_get_current_access_url_id(); if (api_is_platform_admin_by_id($user_id, $url)) { self::navigate(api_get_path(WEB_CODE_PATH).'admin/index.php'); } } else { // if no multiple URL, then it's enough to be platform admin if (api_is_platform_admin_by_id($user_id)) { self::navigate(api_get_path(WEB_CODE_PATH).'admin/index.php'); } } } $page_after_login = api_get_setting('page_after_login'); if (!empty($page_after_login)) { self::navigate(api_get_path(WEB_PATH) . $page_after_login); } } } /** * Sends the user to the web root of Chamilo (e.g. http://my.chamiloportal.com/ ) */ public static function home() { $www = self::www(); self::navigate($www); } /** * Sends the user to the user_portal.php page */ public static function user_home() { $www = self::www(); self::navigate("$www/user_portal.php"); } /** * Redirects the user to a given URL through the header('location: ...') function * @param $url */ protected static function navigate($url) { // $url = Security::remove_XSS($url); session_write_close(); //should not be neeeded header("Location: $url"); exit; } }