mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
30 lines
1.0 KiB
PHP
30 lines
1.0 KiB
PHP
<?php
|
|
|
|
/**
|
|
* The SSOService is part of the SAML 2.0 IdP code, and it receives incoming Authentication Requests
|
|
* from a SAML 2.0 SP, parses, and process it, and then authenticates the user and sends the user back
|
|
* to the SP with an Authentication Response.
|
|
*
|
|
* @author Andreas Åkre Solberg, UNINETT AS. <andreas.solberg@uninett.no>
|
|
* @package SimpleSAMLphp
|
|
*/
|
|
|
|
require_once('../../_include.php');
|
|
|
|
\SimpleSAML\Logger::info('SAML2.0 - IdP.SSOService: Accessing SAML 2.0 IdP endpoint SSOService');
|
|
|
|
$metadata = \SimpleSAML\Metadata\MetaDataStorageHandler::getMetadataHandler();
|
|
$idpEntityId = $metadata->getMetaDataCurrentEntityID('saml20-idp-hosted');
|
|
$idp = \SimpleSAML\IdP::getById('saml2:' . $idpEntityId);
|
|
|
|
try {
|
|
\SimpleSAML\Module\saml\IdP\SAML2::receiveAuthnRequest($idp);
|
|
} catch (\Exception $e) {
|
|
if ($e->getMessage() === "Unable to find the current binding.") {
|
|
throw new \SimpleSAML\Error\Error('SSOPARAMS', $e, 400);
|
|
} else {
|
|
throw $e; // do not ignore other exceptions!
|
|
}
|
|
}
|
|
assert(false);
|