MM_authorizedUsers = $authorizedUsers; if(!$registry){ global $engine; $registry =& $engine->registry; } $this->engine =& $registry; } /** * Restrict Access To Page: Grant or deny access to this page * * @param string $strUsers * @param string $strGroups * @param string $UserName * @param string $UserGroup * @return bool */ public function isAuthorized($strUsers, $strGroups, $UserName, $UserGroup) { // For security, start by assuming the visitor is NOT authorized. $isValid = false; // When a visitor has logged into this site, the Session variable MM_Username set equal to their username. // Therefore, we know that a user is NOT logged in if that Session variable is blank. if (!empty($UserName)) { // Besides being logged in, you may restrict access to only certain users based on an ID established when they login. // Parse the strings into arrays. $arrUsers = explode(",", $strUsers); $arrGroups = explode(",", $strGroups); if (in_array($UserName, $arrUsers)) { $isValid = true; } // Or, you may restrict access to only certain users based on their username. if (in_array($UserGroup, $arrGroups)) { $isValid = true; } /* if (($strUsers == "") && false) { $isValid = true; } */ } return $isValid; } /** * @param string $restrictGoTo * @return void */ public function check($restrictGoTo) { $MM_restrictGoTo = $restrictGoTo; if (!((isset($this->engine->session->data['MM_Username'])) && ($this->isAuthorized("",$this->MM_authorizedUsers, $this->engine->session->data['MM_Username'], $this->engine->session->data['MM_UserGroup'])))) { $MM_qsChar = "?"; $MM_referrer = $this->engine->request->server['PHP_SELF']; if (strpos($MM_restrictGoTo, "?")) $MM_qsChar = "&"; if (isset($this->engine->request->server['QUERY_STRING']) && strlen($this->engine->request->server['QUERY_STRING']) > 0) $MM_referrer .= "?" . $this->engine->request->server['QUERY_STRING']; $MM_restrictGoTo = $MM_restrictGoTo. $MM_qsChar . "accesscheck=" . urlencode($MM_referrer); header("Location: ". $MM_restrictGoTo); exit; } } /** @return bool */ public function isLogged () { $lgged = $this->isAuthorized("",$this->MM_authorizedUsers, $this->engine->session->data['MM_Username'], $this->engine->session->data['MM_UserGroup']); return($lgged); } /** @return void */ public function logout() { unset($this->engine->session->data['MM_Username']); unset($this->engine->session->data['MM_UserGroup']); session_destroy(); } /** @return string */ public function getUserName() { return $this->engine->session->data['MM_Username']; } /** @return string */ public function getUserGroup() { return $this->engine->session->data['MM_UserGroup']; } }