initLogin($return, $errorURL, $params); } /** * @deprecated This method will be removed in SSP 2.0. Please use * SimpleSAML_Auth_State::getPersistentAuthData() instead. */ public static function extractPersistentAuthState(array &$state) { return SimpleSAML_Auth_State::getPersistentAuthData($state); } /** * @deprecated This method will be removed in SSP 2.0. Please use SimpleSAML_Auth_Source::loginCompleted() instead. */ public static function loginCompleted($state) { SimpleSAML_Auth_Source::loginCompleted($state); } /** * @deprecated This method will be removed in SSP 2.0. */ public static function initLogoutReturn($returnURL, $authority) { assert('is_string($returnURL)'); assert('is_string($authority)'); $session = SimpleSAML_Session::getSessionFromRequest(); $state = $session->getAuthData($authority, 'LogoutState'); $session->doLogout($authority); $state['SimpleSAML_Auth_Default.ReturnURL'] = $returnURL; $state['LogoutCompletedHandler'] = array(get_class(), 'logoutCompleted'); $as = SimpleSAML_Auth_Source::getById($authority); if ($as === NULL) { // The authority wasn't an authentication source... self::logoutCompleted($state); } $as->logout($state); } /** * @deprecated This method will be removed in SSP 2.0. */ public static function initLogout($returnURL, $authority) { assert('is_string($returnURL)'); assert('is_string($authority)'); self::initLogoutReturn($returnURL, $authority); \SimpleSAML\Utils\HTTP::redirectTrustedURL($returnURL); } /** * @deprecated This method will be removed in SSP 2.0. */ public static function logoutCompleted($state) { assert('is_array($state)'); assert('array_key_exists("SimpleSAML_Auth_Default.ReturnURL", $state)'); \SimpleSAML\Utils\HTTP::redirectTrustedURL($state['SimpleSAML_Auth_Default.ReturnURL']); } /** * @deprecated This method will be removed in SSP 2.0. Please use SimpleSAML_Auth_Source::logoutCallback() instead. */ public static function logoutCallback($state) { SimpleSAML_Auth_Source::logoutCallback($state); } /** * @deprecated This method will be removed in SSP 2.0. Please use * sspmod_saml_Auth_Source_SP::handleUnsolicitedAuth() instead. */ public static function handleUnsolicitedAuth($authId, array $state, $redirectTo) { sspmod_saml_Auth_Source_SP::handleUnsolicitedAuth($authId, $state, $redirectTo); } /** * Return an authentication source by ID. * * @param string $id The id of the authentication source. * @return SimpleSAML_Auth_Source The authentication source. * @throws Exception If the $id does not correspond with an authentication source. */ private static function getAuthSource($id) { $as = SimpleSAML_Auth_Source::getById($id); if ($as === null) { throw new Exception('Invalid authentication source: ' . $id); } return $as; } }