Trim code #3102
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / ui / password / PasswordWizard.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.ui.password;
12
13 import org.eclipse.jface.wizard.Wizard;
14 import org.eclipse.swt.widgets.Display;
15 import org.springframework.security.access.AccessDeniedException;
16 import org.springframework.security.core.AuthenticationException;
17
18 import eu.etaxonomy.cdm.api.conversation.ConversationHolder;
19 import eu.etaxonomy.cdm.api.conversation.IConversationEnabled;
20 import eu.etaxonomy.cdm.api.service.IUserService;
21 import eu.etaxonomy.cdm.model.common.User;
22 import eu.etaxonomy.cdm.persistence.hibernate.CdmDataChangeMap;
23 import eu.etaxonomy.taxeditor.model.MessagingUtils;
24 import eu.etaxonomy.taxeditor.store.CdmStore;
25 import eu.etaxonomy.taxeditor.ui.element.CdmFormFactory;
26
27 /**
28 * @author n.hoffmann
29 * @created Mar 10, 2011
30 * @version 1.0
31 */
32 public class PasswordWizard extends Wizard implements IConversationEnabled{
33
34 private PasswordWizardPage passwordPage;
35 private final User user;
36 private final ConversationHolder conversation;
37
38 /**
39 * @param user the user to change the password for
40 * @param conversation this optional parameter can be null. Only supply conversation if you
41 * need to run this wizard is a nested conversation
42 */
43 public PasswordWizard(User user, ConversationHolder conversation){
44 this.conversation = conversation;
45 this.user = user;
46 setWindowTitle("Change password");
47 }
48
49 @Override
50 public void addPages() {
51 CdmFormFactory formFactory = new CdmFormFactory(Display.getDefault());
52
53 passwordPage = new PasswordWizardPage(formFactory, getConversationHolder(), user);
54 addPage(passwordPage);
55 }
56
57 @Override
58 public boolean performFinish() {
59
60 ConversationHolder internalConversation = CdmStore.getCurrentApplicationConfiguration().NewConversation();
61 internalConversation.bind();
62 internalConversation.startTransaction();
63 try{
64 if(passwordPage.isChangingOwnPassword()){
65 // change own password with validating of old one
66 CdmStore.getService(IUserService.class).changePassword(passwordPage.getOldPassword(), passwordPage.getNewPassword());
67 }else{
68 // change others passwords
69 CdmStore.getService(IUserService.class).changePasswordForUser(user.getUsername(), passwordPage.getNewPassword());
70 }
71 CdmStore.getService(IUserService.class).loadWithUpdate(user.getUuid());
72 internalConversation.commit(false);
73 internalConversation.unbind();
74 internalConversation.close();
75 return true;
76 }catch(AccessDeniedException e){
77 MessagingUtils.warningDialog("Could not change password", this, "The old password is not correct.");
78 return false;
79 }catch (AuthenticationException e){
80 MessagingUtils.warningDialog("Could not change password", this, "The old password is not correct.");
81
82 return false;
83 }catch(Exception e){
84 MessagingUtils.warningDialog("Problem with changing password", this, "The password could not be changed. " + e.getMessage());
85 return false;
86 }finally{
87 if(conversation != null){
88 conversation.bind();
89 }
90 }
91 }
92
93 @Override
94 public void update(CdmDataChangeMap arg0) {
95 }
96
97 @Override
98 public ConversationHolder getConversationHolder() {
99 return conversation;
100 }
101
102 }