View Javadoc

1   /**
2    * This file Copyright (c) 2003-2010 Magnolia International
3    * Ltd.  (http://www.magnolia-cms.com). All rights reserved.
4    *
5    *
6    * This file is dual-licensed under both the Magnolia
7    * Network Agreement and the GNU General Public License.
8    * You may elect to use one or the other of these licenses.
9    *
10   * This file is distributed in the hope that it will be
11   * useful, but AS-IS and WITHOUT ANY WARRANTY; without even the
12   * implied warranty of MERCHANTABILITY or FITNESS FOR A
13   * PARTICULAR PURPOSE, TITLE, or NONINFRINGEMENT.
14   * Redistribution, except as permitted by whichever of the GPL
15   * or MNA you select, is prohibited.
16   *
17   * 1. For the GPL license (GPL), you can redistribute and/or
18   * modify this file under the terms of the GNU General
19   * Public License, Version 3, as published by the Free Software
20   * Foundation.  You should have received a copy of the GNU
21   * General Public License, Version 3 along with this program;
22   * if not, write to the Free Software Foundation, Inc., 51
23   * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
24   *
25   * 2. For the Magnolia Network Agreement (MNA), this file
26   * and the accompanying materials are made available under the
27   * terms of the MNA which accompanies this distribution, and
28   * is available at http://www.magnolia-cms.com/mna.html
29   *
30   * Any modifications to this file must keep this entire header
31   * intact.
32   *
33   */
34  package info.magnolia.cms.security;
35  
36  import java.util.Collection;
37  import java.util.Collections;
38  import java.util.ArrayList;
39  
40  import org.apache.commons.lang.StringUtils;
41  import org.slf4j.Logger;
42  import org.slf4j.LoggerFactory;
43  
44  
45  /**
46   * Dummy user implementation returned when an actual user instance can't be instantiated.
47   *
48   * @author Sameer Charles
49   * @version $Revision:9391 $ ($Author:scharles $)
50   */
51  public class DummyUser extends AbstractUser {
52  
53      private static final Logger log = LoggerFactory.getLogger(DummyUser.class);
54  
55      private static final String DEFAULT_LANGUAGE = "en";
56  
57      DummyUser() {
58          log.info("Initializing dummy user - Anonymous");
59          log.info("This area and/or instance is not secured");
60      }
61  
62      /**
63       * Dummy user has full access, always returns true.
64       */
65      public boolean hasRole(String roleName) {
66          return true;
67      }
68  
69      /**
70       * Simply log that its a dummy user.
71       */
72      public void removeRole(String roleName) throws UnsupportedOperationException {
73          log.debug("User [ Anonymous ] has no roles");
74      }
75  
76      /**
77       * Simply log that its a dummy user.
78       * @param roleName the name of the role
79       */
80      public void addRole(String roleName) throws UnsupportedOperationException {
81          log.debug("No roles can be attached to user [ Anonymous ]");
82      }
83  
84      /**
85       * Always returns true.
86       */
87      public boolean inGroup(String groupName) {
88          return true;
89      }
90  
91      public void removeGroup(String groupName) throws UnsupportedOperationException {
92          log.debug("User [ Anonymous ] has no groups");
93      }
94  
95      public void addGroup(String groupName) throws UnsupportedOperationException {
96          log.debug("No groups can be attached to user [ Anonymous ]");
97      }
98  
99      public boolean isEnabled() {
100         return true;
101     }
102 
103     public void setEnabled(boolean enabled) {
104     }
105 
106     public String getLanguage() {
107         return DEFAULT_LANGUAGE;
108     }
109 
110     public String getName() {
111         return UserManager.ANONYMOUS_USER;
112     }
113 
114     public String getPassword() {
115         return StringUtils.EMPTY;
116     }
117 
118     public String getProperty(String propertyName) {
119         return null;
120     }
121 
122     public void setProperty(String propertyName, String value) {
123         log.debug("Can not set properties on dummy user (name: {}, value: {})", propertyName, value);
124     }
125 
126     public Collection<String> getGroups() {
127         return Collections.emptyList();
128     }
129 
130     public Collection<String> getAllGroups() {
131         return new ArrayList<String>();
132     }
133 
134     public Collection<String> getRoles() {
135         return Collections.emptyList();
136     }
137 
138     public Collection<String> getAllRoles() {
139         return new ArrayList<String>();
140     }
141 }