]> source.dussan.org Git - archiva.git/blob
a5bb09ecefe5e2b587e863b7586abab94c2dded7
[archiva.git] /
1 package org.apache.maven.archiva.security;
2
3 /*
4  * Licensed to the Apache Software Foundation (ASF) under one
5  * or more contributor license agreements.  See the NOTICE file
6  * distributed with this work for additional information
7  * regarding copyright ownership.  The ASF licenses this file
8  * to you under the Apache License, Version 2.0 (the
9  * "License"); you may not use this file except in compliance
10  * with the License.  You may obtain a copy of the License at
11  *
12  *  http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17  * KIND, either express or implied.  See the License for the
18  * specific language governing permissions and limitations
19  * under the License.
20  */
21
22 import java.util.Map;
23
24 import org.codehaus.plexus.redback.system.SecuritySession;
25 import org.codehaus.plexus.redback.system.SecuritySystemConstants;
26 import org.codehaus.plexus.redback.users.User;
27 import org.codehaus.plexus.registry.Registry;
28
29 /**
30  * ArchivaXworkUser 
31  *
32  * @version $Id$
33  * 
34  * @plexus.component role="org.apache.maven.archiva.security.ArchivaXworkUser"
35  */
36 public class ArchivaXworkUser
37 {
38     /**
39      * @plexus.requirement role-hint="commons-configuration"
40      */
41     private Registry registry;
42     
43     private static final String KEY = "org.codehaus.plexus.redback";
44     
45     private static String guest;
46             
47     public String getActivePrincipal( Map<String, Object> sessionMap )
48     {   
49         if ( sessionMap == null )
50         {
51             return getGuest();
52         }
53
54         SecuritySession securitySession =
55             (SecuritySession) sessionMap.get( SecuritySystemConstants.SECURITY_SESSION_KEY );
56
57         if ( securitySession == null )
58         {
59             securitySession = (SecuritySession) sessionMap.get( SecuritySession.ROLE );
60         }
61
62         if ( securitySession == null )
63         {
64             return getGuest();
65         }
66
67         User user = securitySession.getUser();        
68         if ( user == null )
69         {
70             return getGuest();
71         }
72
73         return (String) user.getPrincipal();
74     }    
75    
76     public String getGuest()
77     {
78         if( guest == null || "".equals( guest ) )
79         {
80             Registry subset = registry.getSubset( KEY );
81             guest = subset.getString( "redback.default.guest", ArchivaRoleConstants.PRINCIPAL_GUEST );
82         }
83         
84         return guest;
85     }
86     
87     public void setGuest( String guesT )
88     {
89         guest = guesT;
90     }
91 }