You are here

SamlSPResponse.php in SAML Service Provider 8.2

File

src/SAML/SamlSPResponse.php
View source
<?php

namespace Drupal\saml_sp\SAML;

use OneLogin_Saml2_Response;
class SamlSPResponse extends OneLogin_Saml2_Response {

  /**
   * Verifies that the document has the expected signed nodes.
   *
   * @return bool
   */
  public function validateSignedElements($signedElements) {
    if (count($signedElements) > 2) {
      return FALSE;
    }
    $ocurrence = array_count_values($signedElements);
    if (in_array('samlp:Response', $signedElements) && $ocurrence['samlp:Response'] > 1 || in_array('saml:Assertion', $signedElements) && $ocurrence['saml:Assertion'] > 1 || in_array('Assertion', $signedElements) && $ocurrence['Assertion'] > 1 || !in_array('samlp:Response', $signedElements) && !in_array('saml:Assertion', $signedElements) && !in_array('Assertion', $signedElements)) {
      return FALSE;
    }
    return TRUE;
  }

}

Classes

Namesort descending Description
SamlSPResponse