View Javadoc

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