beb18fbc3289985b09fb7f512e40d07d99b61dfc
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / store / LoginManager.java
1 // $Id$
2 /**
3 * Copyright (C) 2007 EDIT
4 * European Distributed Institute of Taxonomy
5 * http://www.e-taxonomy.eu
6 *
7 * The contents of this file are subject to the Mozilla Public License Version 1.1
8 * See LICENSE.TXT at the top of this package for the full license terms.
9 */
10
11 package eu.etaxonomy.taxeditor.store;
12
13 import java.util.Observable;
14 import java.util.Set;
15
16 import org.apache.log4j.Logger;
17 import org.eclipse.core.runtime.IProgressMonitor;
18 import org.eclipse.ui.IMemento;
19 import org.springframework.security.authentication.BadCredentialsException;
20 import org.springframework.security.authentication.LockedException;
21 import org.springframework.security.authentication.UsernamePasswordAuthenticationToken;
22 import org.springframework.security.core.Authentication;
23 import org.springframework.security.core.GrantedAuthority;
24 import org.springframework.security.core.context.SecurityContextHolder;
25
26 import eu.etaxonomy.cdm.api.conversation.ConversationHolder;
27 import eu.etaxonomy.cdm.api.conversation.IConversationEnabled;
28 import eu.etaxonomy.cdm.model.common.Group;
29 import eu.etaxonomy.cdm.model.common.User;
30 import eu.etaxonomy.cdm.persistence.hibernate.CdmDataChangeMap;
31 import eu.etaxonomy.cdm.persistence.hibernate.permission.CdmAuthority;
32 import eu.etaxonomy.taxeditor.model.IContextListener;
33
34 /**
35 * <p>LoginManager class.</p>
36 *
37 * @author n.hoffmann
38 * @created 03.07.2009
39 * @version 1.0
40 */
41 public class LoginManager extends Observable implements IConversationEnabled, IContextListener{
42
43 public static final Logger logger = Logger.getLogger(LoginManager.class);
44
45 private ConversationHolder conversation;
46
47 public LoginManager(){
48 CdmStore.getContextManager().addContextListener(this);
49 }
50
51 /**
52 * <p>authenticate</p>
53 *
54 * @param token a {@link org.springframework.security.authentication.UsernamePasswordAuthenticationToken} object.
55 */
56 public boolean authenticate(String username, String password){
57
58 // close all open editors
59 if(!StoreUtil.closeAll()){
60 return false;
61 }
62
63
64 try{
65 getConversationHolder().bind();
66 getConversationHolder().commit();
67
68 SecurityContextHolder.clearContext();
69
70 UsernamePasswordAuthenticationToken token = new UsernamePasswordAuthenticationToken(username, password);
71 Authentication authentication = CdmStore.getAuthenticationManager().authenticate(token);
72
73 User user = (User) authentication.getPrincipal();
74 /* circumventing problem with hibernate not refreshing the transient collection authorities in this case,
75 * see http://dev.e-taxonomy.eu/trac/ticket/4053 */
76 user.initAuthorities();
77
78 if(logger.isDebugEnabled()){
79 StringBuilder gaText = new StringBuilder();
80 String indent = " ";
81 Set<GrantedAuthority> gaSet = user.getGrantedAuthorities();
82 _logGrantedAuthotities(gaText, indent, gaSet);
83 for(Group gr : user.getGroups()){
84 gaText.append(indent).append("gr[").append(gr.hashCode()).append("] \"").append(gr.getName()).append("\" ").append(gr.toString()).append("\n");
85 _logGrantedAuthotities(gaText, indent + indent, gr.getGrantedAuthorities());
86 }
87 logger.debug("User authenticated: " + user.getUsername() + "\n" + gaText.toString());
88 }
89
90 SecurityContextHolder.getContext().setAuthentication(authentication);
91
92 this.setChanged();
93 this.notifyObservers();
94 return true;
95 }
96 catch(BadCredentialsException e){
97 StoreUtil.warningDialog("Could not authenticate", this, "Could not authenticate. Reason: Bad Credentials.");
98 }
99 catch(LockedException e){
100 StoreUtil.warningDialog("Could not authenticate", this, "Could not authenticate. Reason: Account is locked.");
101 }
102 catch(IllegalArgumentException e){
103 StoreUtil.warningDialog("Could not authenticate", this, "Could not authenticate. Reason: Username and/or Password empty.");
104 }
105 return false;
106 }
107
108 private void _logGrantedAuthotities(StringBuilder gaText, String indent,
109 Set<GrantedAuthority> gaSet) {
110 for(GrantedAuthority ga : gaSet){
111 gaText.append(indent).append("ga[").append(ga.hashCode()).append("] ").append(ga.toString()).append("\n");
112 }
113 }
114
115 /**
116 * <p>getAuthenticatedUser</p>
117 *
118 * @return a {@link eu.etaxonomy.cdm.model.common.User} object.
119 */
120 public User getAuthenticatedUser(){
121 Authentication authentication = SecurityContextHolder.getContext().getAuthentication();
122
123 if(authentication != null
124 && authentication.getPrincipal() != null
125 && authentication.getPrincipal() instanceof User){
126 return (User)authentication.getPrincipal();
127 }
128 return null;
129 }
130
131 public void logoutAll(){
132 SecurityContextHolder.clearContext();
133 notifyObservers();
134 }
135
136 /* (non-Javadoc)
137 * @see eu.etaxonomy.cdm.persistence.hibernate.ICdmPostDataChangeObserver#update(eu.etaxonomy.cdm.persistence.hibernate.CdmDataChangeMap)
138 */
139 @Override
140 public void update(CdmDataChangeMap arg) {}
141
142 /* (non-Javadoc)
143 * @see eu.etaxonomy.cdm.api.conversation.IConversationEnabled#getConversationHolder()
144 */
145 @Override
146 public ConversationHolder getConversationHolder() {
147 if(conversation == null){
148 conversation = CdmStore.createConversation();
149 }
150 return conversation;
151 }
152
153 /**
154 * Whether the current user has the role admin
155 *
156 * @return
157 */
158 public boolean isAdmin() {
159 // FIXME until we have rights implemented properly we do this
160 // by a simple string check. This has to change
161
162 return "admin".equals(getAuthenticatedUser().getUsername());
163 }
164
165 @Override
166 public void contextAboutToStop(IMemento memento, IProgressMonitor monitor) {
167
168 }
169
170 @Override
171 public void contextStop(IMemento memento, IProgressMonitor monitor) {
172
173 }
174
175 @Override
176 public void contextStart(IMemento memento, IProgressMonitor monitor){
177 conversation = CdmStore.createConversation();
178 }
179
180 @Override
181 public void contextRefresh(IProgressMonitor monitor) {
182 conversation = CdmStore.createConversation();
183 }
184
185 @Override
186 public void workbenchShutdown(IMemento memento, IProgressMonitor monitor) {
187
188 }
189 }