/**
* Copyright (C) 2012 - 2013, Grass CRM Studio
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.gcrm.action.system;
import java.util.Map;
import org.springframework.security.authentication.encoding.Md5PasswordEncoder;
import com.gcrm.domain.User;
import com.gcrm.security.AuthenticationFilter;
import com.gcrm.security.AuthenticationSuccessListener;
import com.gcrm.service.IUserService;
import com.opensymphony.xwork2.ActionContext;
import com.opensymphony.xwork2.ActionSupport;
/**
* Change Password Action
*/
public class ChangePasswordAction extends ActionSupport {
private static final long serialVersionUID = 1L;
private IUserService baseService;
private String oldPassword;
private String newPassword;
private String confirmPassword;
@Override
public String execute() throws Exception {
if (!newPassword.equals(confirmPassword)) {
this.addActionError(this.getText("changePassword.password.noequal"));
return INPUT;
}
ActionContext context = ActionContext.getContext();
Map<String, Object> session = context.getSession();
User loginUser = (User) session
.get(AuthenticationSuccessListener.LOGIN_USER);
Md5PasswordEncoder encoder = new Md5PasswordEncoder();
String encodePassword = encoder.encodePassword(oldPassword,
AuthenticationFilter.SALT);
if (!encodePassword.equals(loginUser.getPassword())) {
this.addActionError(this
.getText("changePassword.wrong.oldPassword"));
return INPUT;
}
encodePassword = encoder.encodePassword(newPassword,
AuthenticationFilter.SALT);
loginUser.setPassword(encodePassword);
baseService.makePersistent(loginUser);
this.addActionError(this.getText("changePassword.password.success"));
return SUCCESS;
}
/**
* @return the baseService
*/
public IUserService getBaseService() {
return baseService;
}
/**
* @param baseService
* the baseService to set
*/
public void setBaseService(IUserService baseService) {
this.baseService = baseService;
}
/**
* @return the oldPassword
*/
public String getOldPassword() {
return oldPassword;
}
/**
* @param oldPassword
* the oldPassword to set
*/
public void setOldPassword(String oldPassword) {
this.oldPassword = oldPassword;
}
/**
* @return the newPassword
*/
public String getNewPassword() {
return newPassword;
}
/**
* @param newPassword
* the newPassword to set
*/
public void setNewPassword(String newPassword) {
this.newPassword = newPassword;
}
/**
* @return the confirmPassword
*/
public String getConfirmPassword() {
return confirmPassword;
}
/**
* @param confirmPassword
* the confirmPassword to set
*/
public void setConfirmPassword(String confirmPassword) {
this.confirmPassword = confirmPassword;
}
}