1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
|
18 | |
|
19 | |
package org.apache.shiro.subject; |
20 | |
|
21 | |
import org.apache.shiro.util.CollectionUtils; |
22 | |
|
23 | |
import java.util.*; |
24 | |
|
25 | |
|
26 | |
|
27 | |
|
28 | |
|
29 | |
|
30 | |
|
31 | |
|
32 | |
|
33 | 0 | public class SimplePrincipalMap implements PrincipalMap { |
34 | |
|
35 | |
|
36 | |
|
37 | |
private Map<String, Map<String, Object>> realmPrincipals; |
38 | |
|
39 | |
|
40 | |
|
41 | |
|
42 | |
private Map<String, Object> combinedPrincipals; |
43 | |
|
44 | |
public SimplePrincipalMap() { |
45 | 0 | this(null); |
46 | 0 | } |
47 | |
|
48 | 0 | public SimplePrincipalMap(Map<String, Map<String, Object>> backingMap) { |
49 | 0 | if (!CollectionUtils.isEmpty(backingMap)) { |
50 | 0 | this.realmPrincipals = backingMap; |
51 | 0 | for (Map<String, Object> principals : this.realmPrincipals.values()) { |
52 | 0 | if (!CollectionUtils.isEmpty(principals) ) { |
53 | 0 | ensureCombinedPrincipals().putAll(principals); |
54 | |
} |
55 | 0 | } |
56 | |
} |
57 | 0 | } |
58 | |
|
59 | |
public int size() { |
60 | 0 | return CollectionUtils.size(this.combinedPrincipals); |
61 | |
} |
62 | |
|
63 | |
protected Map<String, Object> ensureCombinedPrincipals() { |
64 | 0 | if (this.combinedPrincipals == null) { |
65 | 0 | this.combinedPrincipals = new HashMap<String, Object>(); |
66 | |
} |
67 | 0 | return this.combinedPrincipals; |
68 | |
} |
69 | |
|
70 | |
public boolean containsKey(Object o) { |
71 | 0 | return this.combinedPrincipals != null && this.combinedPrincipals.containsKey(o); |
72 | |
} |
73 | |
|
74 | |
public boolean containsValue(Object o) { |
75 | 0 | return this.combinedPrincipals != null && this.combinedPrincipals.containsKey(o); |
76 | |
} |
77 | |
|
78 | |
public Object get(Object o) { |
79 | 0 | return this.combinedPrincipals != null && this.combinedPrincipals.containsKey(o); |
80 | |
} |
81 | |
|
82 | |
public Object put(String s, Object o) { |
83 | 0 | return ensureCombinedPrincipals().put(s, o); |
84 | |
} |
85 | |
|
86 | |
public Object remove(Object o) { |
87 | 0 | return this.combinedPrincipals != null ? this.combinedPrincipals.remove(o) : null; |
88 | |
} |
89 | |
|
90 | |
public void putAll(Map<? extends String, ?> map) { |
91 | 0 | if (!CollectionUtils.isEmpty(map)) { |
92 | 0 | ensureCombinedPrincipals().putAll(map); |
93 | |
} |
94 | 0 | } |
95 | |
|
96 | |
public Set<String> keySet() { |
97 | 0 | return CollectionUtils.isEmpty(this.combinedPrincipals) ? |
98 | |
Collections.<String>emptySet() : |
99 | |
Collections.unmodifiableSet(this.combinedPrincipals.keySet()); |
100 | |
} |
101 | |
|
102 | |
public Collection<Object> values() { |
103 | 0 | return CollectionUtils.isEmpty(this.combinedPrincipals) ? |
104 | |
Collections.emptySet() : |
105 | |
Collections.unmodifiableCollection(this.combinedPrincipals.values()); |
106 | |
} |
107 | |
|
108 | |
public Set<Entry<String, Object>> entrySet() { |
109 | 0 | return CollectionUtils.isEmpty(this.combinedPrincipals) ? |
110 | |
Collections.<Entry<String,Object>>emptySet() : |
111 | |
Collections.unmodifiableSet(this.combinedPrincipals.entrySet()); |
112 | |
} |
113 | |
|
114 | |
public void clear() { |
115 | 0 | this.realmPrincipals = null; |
116 | 0 | this.combinedPrincipals = null; |
117 | 0 | } |
118 | |
|
119 | |
public Object getPrimaryPrincipal() { |
120 | |
|
121 | 0 | return !CollectionUtils.isEmpty(this.combinedPrincipals) ? |
122 | |
this.combinedPrincipals.values().iterator().next() : |
123 | |
null; |
124 | |
} |
125 | |
|
126 | |
public <T> T oneByType(Class<T> type) { |
127 | 0 | if (CollectionUtils.isEmpty(this.combinedPrincipals)) { |
128 | 0 | return null; |
129 | |
} |
130 | 0 | for( Object value : this.combinedPrincipals.values()) { |
131 | 0 | if (type.isInstance(value) ) { |
132 | 0 | return type.cast(value); |
133 | |
} |
134 | 0 | } |
135 | 0 | return null; |
136 | |
} |
137 | |
|
138 | |
public <T> Collection<T> byType(Class<T> type) { |
139 | 0 | if (CollectionUtils.isEmpty(this.combinedPrincipals)) { |
140 | 0 | return Collections.emptySet(); |
141 | |
} |
142 | 0 | Collection<T> instances = null; |
143 | 0 | for( Object value : this.combinedPrincipals.values()) { |
144 | 0 | if (type.isInstance(value) ) { |
145 | 0 | if (instances == null) { |
146 | 0 | instances = new ArrayList<T>(); |
147 | |
} |
148 | 0 | instances.add(type.cast(value)); |
149 | |
} |
150 | 0 | } |
151 | 0 | return instances != null ? instances : Collections.<T>emptyList(); |
152 | |
} |
153 | |
|
154 | |
public List asList() { |
155 | 0 | if (CollectionUtils.isEmpty(this.combinedPrincipals)) { |
156 | 0 | return Collections.emptyList(); |
157 | |
} |
158 | 0 | List<Object> list = new ArrayList<Object>(this.combinedPrincipals.size()); |
159 | 0 | list.addAll(this.combinedPrincipals.values()); |
160 | 0 | return list; |
161 | |
} |
162 | |
|
163 | |
public Set asSet() { |
164 | 0 | if (CollectionUtils.isEmpty(this.combinedPrincipals)) { |
165 | 0 | return Collections.emptySet(); |
166 | |
} |
167 | 0 | Set<Object> set = new HashSet<Object>(this.combinedPrincipals.size()); |
168 | 0 | set.addAll(this.combinedPrincipals.values()); |
169 | 0 | return set; |
170 | |
} |
171 | |
|
172 | |
public Collection fromRealm(String realmName) { |
173 | 0 | if (CollectionUtils.isEmpty(this.realmPrincipals)) { |
174 | 0 | return Collections.emptySet(); |
175 | |
} |
176 | 0 | Map<String,Object> principals = this.realmPrincipals.get(realmName); |
177 | 0 | if (CollectionUtils.isEmpty(principals)) { |
178 | 0 | return Collections.emptySet(); |
179 | |
} |
180 | 0 | return Collections.unmodifiableCollection(principals.values()); |
181 | |
} |
182 | |
|
183 | |
public Set<String> getRealmNames() { |
184 | 0 | if (CollectionUtils.isEmpty(this.realmPrincipals)) { |
185 | 0 | return Collections.emptySet(); |
186 | |
} |
187 | 0 | return Collections.unmodifiableSet(this.realmPrincipals.keySet()); |
188 | |
} |
189 | |
|
190 | |
public boolean isEmpty() { |
191 | 0 | return CollectionUtils.isEmpty(this.combinedPrincipals); |
192 | |
} |
193 | |
|
194 | |
public Iterator iterator() { |
195 | 0 | return asList().iterator(); |
196 | |
} |
197 | |
|
198 | |
public Map<String, Object> getRealmPrincipals(String name) { |
199 | 0 | if (this.realmPrincipals == null) { |
200 | 0 | return null; |
201 | |
} |
202 | 0 | Map<String,Object> principals = this.realmPrincipals.get(name); |
203 | 0 | if (principals == null) { |
204 | 0 | return null; |
205 | |
} |
206 | 0 | return Collections.unmodifiableMap(principals); |
207 | |
} |
208 | |
|
209 | |
public Map<String,Object> setRealmPrincipals(String realmName, Map<String, Object> principals) { |
210 | 0 | if (realmName == null) { |
211 | 0 | throw new NullPointerException("realmName argument cannot be null."); |
212 | |
} |
213 | 0 | if (this.realmPrincipals == null) { |
214 | 0 | if (!CollectionUtils.isEmpty(principals)) { |
215 | 0 | this.realmPrincipals = new HashMap<String,Map<String,Object>>(); |
216 | 0 | return this.realmPrincipals.put(realmName, new HashMap<String,Object>(principals)); |
217 | |
} else { |
218 | 0 | return null; |
219 | |
} |
220 | |
} else { |
221 | 0 | Map<String,Object> existingPrincipals = this.realmPrincipals.remove(realmName); |
222 | 0 | if (!CollectionUtils.isEmpty(principals)) { |
223 | 0 | this.realmPrincipals.put(realmName, new HashMap<String,Object>(principals)); |
224 | |
} |
225 | 0 | return existingPrincipals; |
226 | |
} |
227 | |
} |
228 | |
|
229 | |
public Object setRealmPrincipal(String realmName, String principalName, Object principal) { |
230 | 0 | if (realmName == null) { |
231 | 0 | throw new NullPointerException("realmName argument cannot be null."); |
232 | |
} |
233 | 0 | if (principalName == null) { |
234 | 0 | throw new NullPointerException(("principalName argument cannot be null.")); |
235 | |
} |
236 | 0 | if (principal == null) { |
237 | 0 | return removeRealmPrincipal(realmName, principalName); |
238 | |
} |
239 | 0 | if (this.realmPrincipals == null) { |
240 | 0 | this.realmPrincipals = new HashMap<String,Map<String,Object>>(); |
241 | |
} |
242 | 0 | Map<String,Object> principals = this.realmPrincipals.get(realmName); |
243 | 0 | if (principals == null) { |
244 | 0 | principals = new HashMap<String,Object>(); |
245 | 0 | this.realmPrincipals.put(realmName, principals); |
246 | |
} |
247 | 0 | return principals.put(principalName, principal); |
248 | |
} |
249 | |
|
250 | |
public Object getRealmPrincipal(String realmName, String principalName) { |
251 | 0 | if (realmName == null) { |
252 | 0 | throw new NullPointerException("realmName argument cannot be null."); |
253 | |
} |
254 | 0 | if (principalName == null) { |
255 | 0 | throw new NullPointerException(("principalName argument cannot be null.")); |
256 | |
} |
257 | 0 | if (this.realmPrincipals == null) { |
258 | 0 | return null; |
259 | |
} |
260 | 0 | Map<String,Object> principals = this.realmPrincipals.get(realmName); |
261 | 0 | if (principals != null) { |
262 | 0 | return principals.get(principalName); |
263 | |
} |
264 | 0 | return null; |
265 | |
} |
266 | |
|
267 | |
public Object removeRealmPrincipal(String realmName, String principalName) { |
268 | 0 | if (realmName == null) { |
269 | 0 | throw new NullPointerException("realmName argument cannot be null."); |
270 | |
} |
271 | 0 | if (principalName == null) { |
272 | 0 | throw new NullPointerException(("principalName argument cannot be null.")); |
273 | |
} |
274 | 0 | if (this.realmPrincipals == null) { |
275 | 0 | return null; |
276 | |
} |
277 | 0 | Map<String,Object> principals = this.realmPrincipals.get(realmName); |
278 | 0 | if (principals != null) { |
279 | 0 | return principals.remove(principalName); |
280 | |
} |
281 | 0 | return null; |
282 | |
} |
283 | |
} |