-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAuthnResponse.php
100 lines (74 loc) · 2.4 KB
/
AuthnResponse.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?php
/**
* Copyright (C) 2009 Open LMS
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see http://opensource.org/licenses/gpl-3.0.html.
*
* @copyright Copyright (c) 2009 Open LMS (https://www.openlms.net)
* @license http://opensource.org/licenses/gpl-3.0.html GNU Public License
* @author Chris Stones
*/
/**
* Abstract class of an Authentication response
*
* @author Andreas �kre Solberg, UNINETT AS. <[email protected]>
* @package simpleSAMLphp
* @version $Id: AuthnResponse.php 610 2008-06-06 06:04:20Z olavmrk $
* @abstract
*/
abstract class gSimpleSAML_XML_AuthnResponse {
private $configuration = null;
private $metadata = 'default.php';
private $message = null;
private $dom;
private $relayState = null;
private $validIDs = null;
const PROTOCOL = 'urn:oasis:names:tc:SAML:2.0';
function __construct(gSimpleSAML_Configuration $configuration, gSimpleSAML_Metadata_MetaDataStorageHandler $metadatastore) {
$this->configuration = $configuration;
$this->metadata = $metadatastore;
}
abstract public function validate();
abstract public function createSession();
abstract public function getAttributes();
abstract public function getIssuer();
abstract public function getNameID();
public function setXML($xml) {
$this->message = $xml;
}
public function getXML() {
return $this->message;
}
public function setRelayState($relayState) {
$this->relayState = $relayState;
}
public function getRelayState() {
return $this->relayState;
}
public function getDOM() {
if (isset($this->message) ) {
if (isset($this->dom)) {
return $this->dom;
}
$token = new DOMDocument();
$token->loadXML(str_replace ("\r", "", $this->message));
if (empty($token)) {
throw new Exception("Unable to load token");
}
$this->dom = $token;
return $this->dom;
}
return null;
}
}