View source
<?php
namespace Drupal\saml_sp\SAML;
use Drupal\Core\Url;
use Drupal\Core\Link;
use Drupal\Core\Messenger\MessengerInterface;
use OneLogin\Saml2\Auth;
use OneLogin\Saml2\Settings;
use OneLogin\Saml2\Utils;
use RobRichards\XMLSecLibs\XMLSecurityKey;
class SamlSPAuth extends Auth {
public $authCallback;
private $samlSettings;
public function __construct($oldSettings = NULL) {
$this->samlSettings = new Settings($oldSettings);
parent::__construct($oldSettings);
}
public function setAuthCallback($callback) {
$this->authCallback = $callback;
}
public function login($returnTo = NULL, array $parameters = [], $forceAuthn = FALSE, $isPassive = FALSE, $stay = FALSE, $setNameIdPolicy = TRUE, $nameIdValueReq = NULL) {
$authnRequest = new SamlSPAuthnRequest($this
->getSettings(), $forceAuthn, $isPassive, $setNameIdPolicy, $nameIdValueReq);
$this->_lastRequestID = $authnRequest
->getId();
$samlRequest = $authnRequest
->getRequest();
$parameters['SAMLRequest'] = $samlRequest;
if (!empty($returnTo)) {
$parameters['RelayState'] = $returnTo;
}
else {
$parameters['RelayState'] = Utils::getSelfRoutedURLNoQuery();
}
$security = $this
->getSettings()
->getSecurityData();
if (isset($security['authnRequestsSigned']) && $security['authnRequestsSigned']) {
$signature = $this
->buildRequestSignature($samlRequest, $parameters['RelayState'], $security['signatureAlgorithm']);
$parameters['SigAlg'] = $security['signatureAlgorithm'];
$parameters['Signature'] = $signature;
}
$idp = NULL;
$idp_data = (object) $this
->getSettings()
->getIdPData();
$all_idps = saml_sp__load_all_idps();
foreach ($all_idps as $this_idp) {
if ($this_idp
->getEntityId() == $idp_data->entityId) {
$idp = $this_idp;
break;
}
}
if (!isset($idp)) {
\Drupal::messenger()
->addMessage(t('Could not find a valid Identity Provider server.'), MessengerInterface::TYPE_ERROR);
$this
->redirectTo($parameters['RelayState']);
}
$id = $authnRequest
->getId();
saml_sp__track_request($id, $idp, $this->authCallback);
if (\Drupal::config('saml_sp.settings')
->get('debug')) {
_saml_sp__debug('SAML Request', $samlRequest);
$decoded_request = base64_decode($samlRequest);
if ($this->samlSettings
->shouldCompressRequests()) {
$decoded_request = gzinflate($decoded_request);
}
_saml_sp__debug('Decoded Request', base64_decode($samlRequest));
_saml_sp__debug('Parameters', $parameters);
$url = Url::fromUri($this
->getSSOurl(), [
'query' => $parameters,
]);
return [
'message' => [
'#markup' => t('This is a debug page, you can proceed by clicking the following link (this might not work, because "/" chars are encoded differently when the link is made by Drupal as opposed to redirected, as it is when debugging is turned off).') . ' ',
],
'link' => Link::fromTextAndUrl(t('test link'), $url)
->toRenderable(),
];
}
$this
->redirectTo($this
->getSSOurl(), $parameters);
}
public function buildRequestSignature($samlRequest, $relayState, $signAlgorithm = XMLSecurityKey::RSA_SHA1) {
if (\Drupal::config('saml_sp.settings')
->get('debug')) {
_saml_sp__debug('$this->getSettings()->getSecurityData()', $this
->getSettings()
->getSecurityData());
}
return parent::buildRequestSignature($samlRequest, $relayState, $signAlgorithm);
}
}