Project

General

Profile

Download (3.66 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2007 EDIT
3
* European Distributed Institute of Taxonomy
4
* http://www.e-taxonomy.eu
5
*
6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7
* See LICENSE.TXT at the top of this package for the full license terms.
8
*/
9

    
10
package eu.etaxonomy.taxeditor.ui.password;
11

    
12
import org.eclipse.jface.wizard.Wizard;
13
import org.eclipse.swt.widgets.Display;
14
import org.springframework.security.access.AccessDeniedException;
15
import org.springframework.security.core.AuthenticationException;
16

    
17
import eu.etaxonomy.cdm.api.conversation.ConversationHolder;
18
import eu.etaxonomy.cdm.api.conversation.IConversationEnabled;
19
import eu.etaxonomy.cdm.api.service.IUserService;
20
import eu.etaxonomy.cdm.model.common.User;
21
import eu.etaxonomy.cdm.persistence.hibernate.CdmDataChangeMap;
22
import eu.etaxonomy.taxeditor.l10n.Messages;
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(Messages.PasswordWizardPage_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
		String warningTitle = Messages.PasswordWizard_COULD_NOT_CHANGE_PWD;
64
        String warningMessage = Messages.PasswordWizard_OLD_PWD_INCORRECT;
65
        try{
66
			if(passwordPage.isChangingOwnPassword()){
67
			    // change own password with validating of old one
68
				CdmStore.getService(IUserService.class).changePassword(passwordPage.getOldPassword(), passwordPage.getNewPassword());
69
			}else{
70
			    // change others passwords
71
			    CdmStore.getService(IUserService.class).changePasswordForUser(user.getUsername(), passwordPage.getNewPassword());
72
			}
73
			CdmStore.getService(IUserService.class).loadWithUpdate(user.getUuid());
74
			if (user.equals(CdmStore.getLoginManager().getAuthenticatedUser())){
75
				CdmStore.getLoginManager().authenticate(user.getUsername(), passwordPage.getNewPassword());
76
			}
77
		    internalConversation.commit(false);
78
		    internalConversation.unbind();
79
		    internalConversation.close();
80
			return true;
81
		}catch(AccessDeniedException e){
82
			MessagingUtils.warningDialog(warningTitle, this, warningMessage);
83
			return false;
84
		}catch (AuthenticationException e){
85
			MessagingUtils.warningDialog(warningTitle, this, warningMessage);
86

    
87
			return false;
88
		}catch(Exception e){
89
			MessagingUtils.warningDialog(Messages.PasswordWizard_PROBLEM_WITH_CHANGING_PWD, this, Messages.PasswordWizard_PWD_COULD_NOT_BE_CHANGED + e.getMessage());
90
			return false;
91
		}finally{
92
		    if(conversation != null){
93
		        conversation.bind();
94
		    }
95
		}
96
	}
97

    
98
	@Override
99
	public void update(CdmDataChangeMap arg0) {
100
	}
101

    
102
	@Override
103
	public ConversationHolder getConversationHolder() {
104
		return conversation;
105
	}
106

    
107
}
(2-2/3)