-
Notifications
You must be signed in to change notification settings - Fork 20
/
ShibbolethUserToken.php
184 lines (159 loc) · 5.06 KB
/
ShibbolethUserToken.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<?php
/**
* This file is part of kuleuven/shibboleth-bundle
*
* kuleuven/shibboleth-bundle is free software; you can redistribute it
* and/or modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* kuleuven/shibboleth-bundle 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with kuleuven/shibboleth-bundle; if not, see
* <http://www.gnu.org/licenses/>.
*
* Copyright (C) 2013 Ronny Moreas, KU Leuven
*
* @package kuleuven/shibboleth-bundle
* @copyright (C) 2013 Ronny Moreas, KU Leuven
* @license http://www.gnu.org/licenses/lgpl-3.0-standalone.html LGPL-3
*/
namespace KULeuven\ShibbolethBundle\Security;
use Symfony\Component\Security\Core\User\UserInterface;
use Symfony\Component\Security\Core\Authentication\Token\AbstractToken;
class ShibbolethUserToken extends AbstractToken
{
/**
* @param mixed $user
* @param array $attributes
* @param array $roles
* @throws \InvalidArgumentException
*/
public function __construct($user = null, $attributes = array(), $roles = array())
{
if ((empty($roles) && $user instanceof UserInterface)) {
$roles = $user->getRoles();
}
parent::__construct($roles);
$this->setUser($user);
$this->setAttributes($attributes);
}
public function getCredentials()
{
return '';
}
/**
* Returns name for display. Default is the 'cn' attribute or principal name if not available.
*/
public function getDisplayName()
{
return ($this->hasAttribute('cn'))? $this->getAttribute('cn') : $this->getUsername();
}
/**
* Returns common name of principal. This is an alias for the 'cn' attribute
*/
public function getCommonName()
{
return $this->getAttribute('cn');
}
/**
* Returns full name of principal. This is an alias for commonName
*/
public function getFullName()
{
return $this->getAttribute('cn');
}
public function getSurname()
{
return $this->getAttribute('sn');
}
public function getGivenName()
{
return $this->getAttribute('givenName');
}
public function getMail()
{
return $this->getAttribute('mail');
}
public function getMails()
{
return $this->getArrayAttribute('mail');
}
public function getUID()
{
return $this->getAttribute('uid');
}
public function getAffiliation()
{
return $this->getAttribute('affiliation');
}
public function getScopedAffiliation()
{
return $this->getAttribute('scopedAffiliation');
}
public function hasAffiliation($value = null)
{
return $this->hasAttributeValue('affiliation', $value);
}
public function hasScopedAffiliation($value = null)
{
return $this->hasAttributeValue('scopedAffiliation', $value);
}
public function isMember($scope = null)
{
return (empty($scope))? $this->hasAffiliation('member'): $this->hasScopedAffiliation('member@'.$scope);
}
public function isEmployee($scope = null)
{
return (empty($scope))? $this->hasAffiliation('employee'): $this->hasScopedAffiliation('employee@'.$scope);
}
public function isStudent($scope = null)
{
return (empty($scope))? $this->hasAffiliation('student'): $this->hasScopedAffiliation('student@'.$scope);
}
public function isStaff($scope = null)
{
return (empty($scope))? $this->hasAffiliation('staff'): $this->hasScopedAffiliation('staff@'.$scope);
}
public function isFaculty($scope = null)
{
return (empty($scope))? $this->hasAffiliation('faculty'): $this->hasScopedAffiliation('faculty@'.$scope);
}
public function getLogoutURL()
{
return $this->getAttribute('logoutURL');
}
/**
* Returns attribute value. If it's a multivalue, the first value is returned
*/
public function getAttribute($name)
{
$value = parent::getAttribute($name);
return (is_array($value)) ? $value[0] : $value;
}
/**
* Returns an attribute as an array of values
* @param string $name
* @return array
*/
public function getArrayAttribute($name)
{
$value = parent::getAttribute($name);
return (is_array($value)) ? $value : array($value);
}
/**
* Returns true if attribute exists with given value, or if attribute exists
* if given value is null.
*/
public function hasAttributeValue($name, $value = null)
{
if (!$this->hasAttribute($name)) {
return false;
}
return (empty($value))? true : (array_search($value, $this->getArrayAttribute($name)) !== false);
}
}