]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.cms.ui/src/org/argeo/cms/widgets/auth/CmsLogin.java
Improve CMS UI
[lgpl/argeo-commons.git] / org.argeo.cms.ui / src / org / argeo / cms / widgets / auth / CmsLogin.java
1 package org.argeo.cms.widgets.auth;
2
3 import static org.argeo.cms.CmsMsg.password;
4 import static org.argeo.cms.CmsMsg.username;
5
6 import java.io.IOException;
7 import java.util.List;
8 import java.util.Locale;
9
10 import javax.security.auth.Subject;
11 import javax.security.auth.callback.Callback;
12 import javax.security.auth.callback.CallbackHandler;
13 import javax.security.auth.callback.LanguageCallback;
14 import javax.security.auth.callback.NameCallback;
15 import javax.security.auth.callback.PasswordCallback;
16 import javax.security.auth.callback.UnsupportedCallbackException;
17 import javax.security.auth.login.LoginContext;
18 import javax.security.auth.login.LoginException;
19
20 import org.apache.commons.logging.Log;
21 import org.apache.commons.logging.LogFactory;
22 import org.argeo.cms.CmsMsg;
23 import org.argeo.cms.auth.HttpRequestCallback;
24 import org.argeo.cms.i18n.LocaleUtils;
25 import org.argeo.cms.ui.CmsStyles;
26 import org.argeo.cms.ui.CmsView;
27 import org.argeo.cms.ui.internal.Activator;
28 import org.argeo.cms.util.CmsUtils;
29 import org.argeo.eclipse.ui.specific.UiContext;
30 import org.argeo.node.NodeConstants;
31 import org.eclipse.swt.SWT;
32 import org.eclipse.swt.events.MouseAdapter;
33 import org.eclipse.swt.events.MouseEvent;
34 import org.eclipse.swt.events.SelectionAdapter;
35 import org.eclipse.swt.events.SelectionEvent;
36 import org.eclipse.swt.events.SelectionListener;
37 import org.eclipse.swt.events.TraverseEvent;
38 import org.eclipse.swt.events.TraverseListener;
39 import org.eclipse.swt.layout.GridData;
40 import org.eclipse.swt.layout.GridLayout;
41 import org.eclipse.swt.widgets.Button;
42 import org.eclipse.swt.widgets.Composite;
43 import org.eclipse.swt.widgets.Control;
44 import org.eclipse.swt.widgets.Label;
45 import org.eclipse.swt.widgets.Shell;
46 import org.eclipse.swt.widgets.Text;
47
48 public class CmsLogin implements CmsStyles, CallbackHandler {
49 private final static Log log = LogFactory.getLog(CmsLogin.class);
50
51 private Composite parent;
52 private Text usernameT, passwordT;
53 private Composite credentialsBlock;
54 private final SelectionListener loginSelectionListener;
55
56 private final Locale defaultLocale;
57 private LocaleChoice localeChoice = null;
58
59 private final CmsView cmsView;
60
61 // optional subject to be set explicitly
62 private Subject subject = null;
63
64 public CmsLogin(CmsView cmsView) {
65 this.cmsView = cmsView;
66 defaultLocale = Activator.getNodeState().getDefaultLocale();
67 List<Locale> locales = Activator.getNodeState().getLocales();
68 if (locales != null)
69 localeChoice = new LocaleChoice(locales, defaultLocale);
70 loginSelectionListener = new SelectionListener() {
71 private static final long serialVersionUID = -8832133363830973578L;
72
73 @Override
74 public void widgetSelected(SelectionEvent e) {
75 login();
76 }
77
78 @Override
79 public void widgetDefaultSelected(SelectionEvent e) {
80 }
81 };
82 }
83
84 protected boolean isAnonymous() {
85 return cmsView.isAnonymous();
86 }
87
88 public final void createUi(Composite parent) {
89 this.parent = parent;
90 createContents(parent);
91 }
92
93 protected void createContents(Composite parent) {
94 defaultCreateContents(parent);
95 }
96
97 public final void defaultCreateContents(Composite parent) {
98 parent.setLayout(CmsUtils.noSpaceGridLayout());
99 Composite credentialsBlock = createCredentialsBlock(parent);
100 if (parent instanceof Shell) {
101 credentialsBlock.setLayoutData(new GridData(SWT.CENTER, SWT.CENTER, true, true));
102 }
103 }
104
105 public final Composite createCredentialsBlock(Composite parent) {
106 if (isAnonymous()) {
107 return anonymousUi(parent);
108 } else {
109 return userUi(parent);
110 }
111 }
112
113 protected Composite getCredentialsBlock() {
114 return credentialsBlock;
115 }
116
117 protected Composite userUi(Composite parent) {
118 Locale locale = localeChoice == null ? this.defaultLocale : localeChoice.getSelectedLocale();
119 credentialsBlock = new Composite(parent, SWT.NONE);
120 credentialsBlock.setLayout(new GridLayout());
121 // credentialsBlock.setLayoutData(CmsUtils.fillAll());
122
123 specificUserUi(credentialsBlock);
124
125 Label l = new Label(credentialsBlock, SWT.NONE);
126 CmsUtils.style(l, CMS_USER_MENU_ITEM);
127 l.setText(CmsMsg.logout.lead(locale));
128 GridData lData = CmsUtils.fillWidth();
129 lData.widthHint = 120;
130 l.setLayoutData(lData);
131
132 l.addMouseListener(new MouseAdapter() {
133 private static final long serialVersionUID = 6444395812777413116L;
134
135 public void mouseDown(MouseEvent e) {
136 logout();
137 }
138 });
139 return credentialsBlock;
140 }
141
142 /** To be overridden */
143 protected void specificUserUi(Composite parent) {
144
145 }
146
147 protected Composite anonymousUi(Composite parent) {
148 Locale locale = localeChoice == null ? this.defaultLocale : localeChoice.getSelectedLocale();
149 // We need a composite for the traversal
150 credentialsBlock = new Composite(parent, SWT.NONE);
151 credentialsBlock.setLayout(new GridLayout());
152 // credentialsBlock.setLayoutData(CmsUtils.fillAll());
153 CmsUtils.style(credentialsBlock, CMS_LOGIN_DIALOG);
154
155 Integer textWidth = 120;
156 if (parent instanceof Shell)
157 CmsUtils.style(parent, CMS_USER_MENU);
158 // new Label(this, SWT.NONE).setText(CmsMsg.username.lead());
159 usernameT = new Text(credentialsBlock, SWT.BORDER);
160 usernameT.setMessage(username.lead(locale));
161 CmsUtils.style(usernameT, CMS_LOGIN_DIALOG_USERNAME);
162 GridData gd = CmsUtils.fillWidth();
163 gd.widthHint = textWidth;
164 usernameT.setLayoutData(gd);
165
166 // new Label(this, SWT.NONE).setText(CmsMsg.password.lead());
167 passwordT = new Text(credentialsBlock, SWT.BORDER | SWT.PASSWORD);
168 passwordT.setMessage(password.lead(locale));
169 CmsUtils.style(passwordT, CMS_LOGIN_DIALOG_PASSWORD);
170 gd = CmsUtils.fillWidth();
171 gd.widthHint = textWidth;
172 passwordT.setLayoutData(gd);
173
174 TraverseListener tl = new TraverseListener() {
175 private static final long serialVersionUID = -1158892811534971856L;
176
177 public void keyTraversed(TraverseEvent e) {
178 if (e.detail == SWT.TRAVERSE_RETURN)
179 login();
180 }
181 };
182 credentialsBlock.addTraverseListener(tl);
183 usernameT.addTraverseListener(tl);
184 passwordT.addTraverseListener(tl);
185 parent.setTabList(new Control[] { credentialsBlock });
186 credentialsBlock.setTabList(new Control[] { usernameT, passwordT });
187 // credentialsBlock.setFocus();
188
189 extendsCredentialsBlock(credentialsBlock, locale, loginSelectionListener);
190 if (localeChoice != null)
191 createLocalesBlock(credentialsBlock);
192 return credentialsBlock;
193 }
194
195 /**
196 * To be overridden in order to provide custom login button and other links.
197 */
198 protected void extendsCredentialsBlock(Composite credentialsBlock, Locale selectedLocale,
199 SelectionListener loginSelectionListener) {
200
201 }
202
203 protected void updateLocale(Locale selectedLocale) {
204 // save already entered values
205 String usernameStr = usernameT.getText();
206 char[] pwd = passwordT.getTextChars();
207
208 for (Control child : parent.getChildren())
209 child.dispose();
210 createContents(parent);
211 if (parent.getParent() != null)
212 parent.getParent().layout();
213 else
214 parent.layout();
215 usernameT.setText(usernameStr);
216 passwordT.setTextChars(pwd);
217 }
218
219 protected Composite createLocalesBlock(final Composite parent) {
220 Composite c = new Composite(parent, SWT.NONE);
221 CmsUtils.style(c, CMS_USER_MENU_ITEM);
222 c.setLayout(CmsUtils.noSpaceGridLayout());
223 c.setLayoutData(CmsUtils.fillAll());
224
225 SelectionListener selectionListener = new SelectionAdapter() {
226 private static final long serialVersionUID = 4891637813567806762L;
227
228 public void widgetSelected(SelectionEvent event) {
229 Button button = (Button) event.widget;
230 if (button.getSelection()) {
231 localeChoice.setSelectedIndex((Integer) event.widget.getData());
232 updateLocale(localeChoice.getSelectedLocale());
233 }
234 };
235 };
236
237 List<Locale> locales = localeChoice.getLocales();
238 for (Integer i = 0; i < locales.size(); i++) {
239 Locale locale = locales.get(i);
240 Button button = new Button(c, SWT.RADIO);
241 CmsUtils.style(button, CMS_USER_MENU_ITEM);
242 button.setData(i);
243 button.setText(LocaleUtils.lead(locale.getDisplayName(locale), locale) + " (" + locale + ")");
244 // button.addListener(SWT.Selection, listener);
245 button.addSelectionListener(selectionListener);
246 if (i == localeChoice.getSelectedIndex())
247 button.setSelection(true);
248 }
249 return c;
250 }
251
252 protected boolean login() {
253 // TODO use CmsVie in order to retrieve subject?
254 // Subject subject = cmsView.getLoginContext().getSubject();
255 // LoginContext loginContext = cmsView.getLoginContext();
256 try {
257 //
258 // LOGIN
259 //
260 // loginContext.logout();
261 LoginContext loginContext;
262 if (subject == null)
263 loginContext = new LoginContext(NodeConstants.LOGIN_CONTEXT_USER, this);
264 else
265 loginContext = new LoginContext(NodeConstants.LOGIN_CONTEXT_USER, subject, this);
266 loginContext.login();
267 cmsView.authChange(loginContext);
268 return true;
269 } catch (LoginException e) {
270 if (log.isTraceEnabled())
271 log.warn("Login failed: " + e.getMessage(), e);
272 else
273 log.warn("Login failed: " + e.getMessage());
274
275 try {
276 Thread.sleep(3000);
277 } catch (InterruptedException e2) {
278 // silent
279 }
280 // ErrorFeedback.show("Login failed", e);
281 return false;
282 }
283 // catch (LoginException e) {
284 // log.error("Cannot login", e);
285 // return false;
286 // }
287 }
288
289 protected void logout() {
290 cmsView.logout();
291 cmsView.navigateTo("~");
292 }
293
294 @Override
295 public void handle(Callback[] callbacks) throws IOException, UnsupportedCallbackException {
296 for (Callback callback : callbacks) {
297 if (callback instanceof NameCallback && usernameT != null)
298 ((NameCallback) callback).setName(usernameT.getText());
299 else if (callback instanceof PasswordCallback && passwordT != null)
300 ((PasswordCallback) callback).setPassword(passwordT.getTextChars());
301 else if (callback instanceof HttpRequestCallback) {
302 ((HttpRequestCallback) callback).setRequest(UiContext.getHttpRequest());
303 ((HttpRequestCallback) callback).setResponse(UiContext.getHttpResponse());
304 } else if (callback instanceof LanguageCallback) {
305 Locale toUse = null;
306 if (localeChoice != null)
307 toUse = localeChoice.getSelectedLocale();
308 else if (defaultLocale != null)
309 toUse = defaultLocale;
310
311 if (toUse != null) {
312 ((LanguageCallback) callback).setLocale(toUse);
313 UiContext.setLocale(toUse);
314 }
315
316 }
317 }
318 }
319
320 public void setSubject(Subject subject) {
321 this.subject = subject;
322 }
323
324 }