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   * @deprecated since 4.3.6 - usage needs to be reviewed - see MAGNOLIA-3269
49   *
50   * @author Sameer Charles
51   * @version $Revision:9391 $ ($Author:scharles $)
52   */
53  public class DummyUser extends AbstractUser {
54  
55      private static final Logger log = LoggerFactory.getLogger(DummyUser.class);
56  
57      private static final String DEFAULT_LANGUAGE = "en";
58  
59      DummyUser() {
60          log.info("Initializing dummy user - Anonymous");
61          log.info("This area and/or instance is not secured");
62      }
63  
64      /**
65       * Dummy user has full access, always returns true.
66       */
67      public boolean hasRole(String roleName) {
68          return true;
69      }
70  
71      /**
72       * Simply log that its a dummy user.
73       */
74      public void removeRole(String roleName) throws UnsupportedOperationException {
75          log.debug("User [ Anonymous ] has no roles");
76      }
77  
78      /**
79       * Simply log that its a dummy user.
80       * @param roleName the name of the role
81       */
82      public void addRole(String roleName) throws UnsupportedOperationException {
83          log.debug("No roles can be attached to user [ Anonymous ]");
84      }
85  
86      /**
87       * Always returns true.
88       */
89      public boolean inGroup(String groupName) {
90          return true;
91      }
92  
93      public void removeGroup(String groupName) throws UnsupportedOperationException {
94          log.debug("User [ Anonymous ] has no groups");
95      }
96  
97      public void addGroup(String groupName) throws UnsupportedOperationException {
98          log.debug("No groups can be attached to user [ Anonymous ]");
99      }
100 
101     public boolean isEnabled() {
102         return true;
103     }
104 
105     public void setEnabled(boolean enabled) {
106     }
107 
108     public String getLanguage() {
109         return DEFAULT_LANGUAGE;
110     }
111 
112     public String getName() {
113         return UserManager.ANONYMOUS_USER;
114     }
115 
116     public String getPassword() {
117         return StringUtils.EMPTY;
118     }
119 
120     public String getProperty(String propertyName) {
121         return null;
122     }
123 
124     public void setProperty(String propertyName, String value) {
125         log.debug("Can not set properties on dummy user (name: {}, value: {})", propertyName, value);
126     }
127 
128     public Collection<String> getGroups() {
129         return Collections.emptyList();
130     }
131 
132     public Collection<String> getAllGroups() {
133         return new ArrayList<String>();
134     }
135 
136     public Collection<String> getRoles() {
137         return Collections.emptyList();
138     }
139 
140     public Collection<String> getAllRoles() {
141         return new ArrayList<String>();
142     }
143 }