nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ONELOGIN, INC. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ********************************************************************************/ require 'xmlsec.php'; /** * Parse the SAML response and maintain the XML for it. */ class SamlResponse { /** * A SamlResponse class provided to the constructor. */ private $settings; /** * The decoded, unprocessed XML assertion provided to the constructor. */ public $assertion; /** * A DOMDocument class loaded from the $assertion. */ public $xml; // At this time these private members are unused. private $nameid; private $xpath; /** * Construct the response object. * * @param SamlResponse $settings * A SamlResponse settings object containing the necessary * x509 certicate to decode the XML. * @param string $assertion * A UUEncoded SAML assertion from the IdP. */ function __construct($settings, $assertion) { $this->settings = $settings; $this->assertion = base64_decode($assertion); $this->xml = new DOMDocument(); $this->xml->loadXML($this->assertion); } /** * Determine if the SAML Response is valid using the certificate. * * @return * TRUE if the document passes. This could throw a generic Exception * if the document or key cannot be found. */ function is_valid() { $xmlsec = new SamlXmlSec($this->settings, $this->xml); return $xmlsec->is_valid(); } /** * Get the NameID provided by the SAML response from the IdP. */ function get_nameid() { $xpath = new DOMXPath($this->xml); $xpath->registerNamespace("samlp","urn:oasis:names:tc:SAML:2.0:protocol"); $xpath->registerNamespace("saml","urn:oasis:names:tc:SAML:2.0:assertion"); $query = "/samlp:Response/saml:Assertion/saml:Subject/saml:NameID"; $entries = $xpath->query($query); return $entries->item(0)->nodeValue; } } ?>