2012-06-16 15:59:59 -03:00
|
|
|
/*
|
2012-10-04 20:48:01 -03:00
|
|
|
* Copyright [2012] [wisemapping]
|
2012-06-16 15:59:59 -03:00
|
|
|
*
|
|
|
|
* Licensed under WiseMapping Public License, Version 1.0 (the "License").
|
|
|
|
* It is basically the Apache License, Version 2.0 (the "License") plus the
|
|
|
|
* "powered by wisemapping" text requirement on every single page;
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the license at
|
|
|
|
*
|
|
|
|
* http://www.wisemapping.org/license
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2012-11-10 17:19:28 -03:00
|
|
|
package com.wisemapping.webmvc;
|
2012-06-16 15:59:59 -03:00
|
|
|
|
|
|
|
|
2012-06-20 13:28:45 -03:00
|
|
|
import com.wisemapping.validator.Messages;
|
2012-06-16 19:27:22 -03:00
|
|
|
import com.wisemapping.exceptions.WiseMappingException;
|
|
|
|
import com.wisemapping.model.User;
|
2012-06-20 13:28:45 -03:00
|
|
|
import com.wisemapping.security.Utils;
|
2012-06-16 15:59:59 -03:00
|
|
|
import com.wisemapping.service.InvalidUserEmailException;
|
|
|
|
import com.wisemapping.service.UserService;
|
2012-06-16 19:27:22 -03:00
|
|
|
import com.wisemapping.validator.UserValidator;
|
|
|
|
import com.wisemapping.view.UserBean;
|
|
|
|
import net.tanesha.recaptcha.ReCaptcha;
|
|
|
|
import net.tanesha.recaptcha.ReCaptchaResponse;
|
2012-06-16 15:59:59 -03:00
|
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
import org.springframework.beans.factory.annotation.Qualifier;
|
2012-06-16 19:27:22 -03:00
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
2012-06-16 15:59:59 -03:00
|
|
|
import org.springframework.stereotype.Controller;
|
2012-06-20 13:28:45 -03:00
|
|
|
import org.springframework.ui.Model;
|
2012-06-16 15:59:59 -03:00
|
|
|
import org.springframework.validation.BindingResult;
|
|
|
|
import org.springframework.web.bind.annotation.ModelAttribute;
|
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
import org.springframework.web.bind.annotation.RequestMethod;
|
|
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
|
|
import org.springframework.web.servlet.ModelAndView;
|
|
|
|
|
2012-06-16 19:27:22 -03:00
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
|
import java.util.Properties;
|
|
|
|
|
2012-06-16 15:59:59 -03:00
|
|
|
@Controller
|
|
|
|
public class UsersController {
|
|
|
|
|
|
|
|
@Qualifier("userService")
|
|
|
|
@Autowired
|
|
|
|
private UserService userService;
|
|
|
|
|
2012-06-16 19:27:22 -03:00
|
|
|
@Autowired
|
|
|
|
private ReCaptcha captchaService;
|
|
|
|
|
2012-07-03 00:04:44 -03:00
|
|
|
@Value("${google.recaptcha.enabled}")
|
2012-06-16 19:27:22 -03:00
|
|
|
private boolean captchaEnabled;
|
|
|
|
|
|
|
|
|
2012-06-16 15:59:59 -03:00
|
|
|
@RequestMapping(value = "user/resetPassword", method = RequestMethod.GET)
|
|
|
|
public ModelAndView showResetPasswordPage() {
|
|
|
|
return new ModelAndView("forgotPassword");
|
|
|
|
}
|
|
|
|
|
|
|
|
@RequestMapping(value = "user/resetPassword", method = RequestMethod.POST)
|
|
|
|
public ModelAndView resetPassword(@RequestParam(required = true) String email) {
|
|
|
|
|
|
|
|
ModelAndView result;
|
|
|
|
try {
|
|
|
|
userService.resetPassword(email);
|
|
|
|
result = new ModelAndView("forgotPasswordSuccess");
|
|
|
|
|
|
|
|
} catch (InvalidUserEmailException e) {
|
|
|
|
result = new ModelAndView("forgotPasswordError");
|
|
|
|
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2012-06-16 19:27:22 -03:00
|
|
|
@RequestMapping(value = "user/registration", method = RequestMethod.GET)
|
|
|
|
public ModelAndView showRegistrationPage(@NotNull HttpServletRequest request) {
|
|
|
|
if (captchaEnabled) {
|
|
|
|
// If captcha is enabled, generate it ...
|
|
|
|
final Properties prop = new Properties();
|
|
|
|
prop.put("theme", "white");
|
|
|
|
|
|
|
|
final String captchaHtml = captchaService.createRecaptchaHtml(null, prop);
|
|
|
|
request.setAttribute("captchaHtml", captchaHtml);
|
|
|
|
request.setAttribute("captchaEnabled", true);
|
|
|
|
}
|
|
|
|
return new ModelAndView("userRegistration", "user", new UserBean());
|
|
|
|
}
|
|
|
|
|
|
|
|
@RequestMapping(value = "user/registration", method = RequestMethod.POST)
|
|
|
|
public ModelAndView registerUser(@ModelAttribute("user") UserBean userBean, @NotNull HttpServletRequest request, @NotNull BindingResult bindingResult) throws WiseMappingException {
|
|
|
|
ModelAndView result;
|
|
|
|
validateRegistrationForm(userBean, request, bindingResult);
|
|
|
|
if (bindingResult.hasErrors()) {
|
|
|
|
result = this.showRegistrationPage(request);
|
|
|
|
result.addObject("user", userBean);
|
|
|
|
} else {
|
|
|
|
final User user = new User();
|
|
|
|
|
|
|
|
// trim() the email email in order to remove spaces ...
|
|
|
|
user.setEmail(userBean.getEmail().trim());
|
|
|
|
user.setFirstname(userBean.getFirstname());
|
|
|
|
user.setLastname(userBean.getLastname());
|
|
|
|
user.setPassword(userBean.getPassword());
|
2012-11-01 23:29:18 -03:00
|
|
|
|
|
|
|
boolean confirmRegistrationByEmail = false;
|
2013-02-17 21:00:08 -03:00
|
|
|
userService.createUser(user, confirmRegistrationByEmail,true);
|
2012-06-16 19:27:22 -03:00
|
|
|
|
|
|
|
// Forward to the success view ...
|
|
|
|
result = new ModelAndView("userRegistrationSuccess");
|
2012-11-01 23:29:18 -03:00
|
|
|
result.addObject("confirmByEmail", confirmRegistrationByEmail);
|
2012-06-16 19:27:22 -03:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2012-06-20 13:28:45 -03:00
|
|
|
@RequestMapping(value = "account/settings", method = RequestMethod.GET)
|
|
|
|
public String showUserSettingsPage(@NotNull Model model) {
|
|
|
|
model.addAttribute("user", Utils.getUser());
|
|
|
|
return "accountSettings";
|
|
|
|
}
|
|
|
|
|
2012-06-16 19:27:22 -03:00
|
|
|
private BindingResult validateRegistrationForm(@NotNull UserBean userBean, @NotNull HttpServletRequest request, @NotNull BindingResult bindingResult) {
|
|
|
|
final UserValidator userValidator = new UserValidator();
|
|
|
|
userValidator.setUserService(userService);
|
|
|
|
userValidator.setCaptchaService(captchaService);
|
|
|
|
userValidator.validate(userBean, bindingResult);
|
|
|
|
|
|
|
|
// If captcha is enabled, generate it ...
|
|
|
|
if (captchaEnabled) {
|
|
|
|
final String challenge = request.getParameter("recaptcha_challenge_field");
|
|
|
|
final String uresponse = request.getParameter("recaptcha_response_field");
|
|
|
|
|
2012-09-06 23:52:53 -03:00
|
|
|
if (challenge != null && uresponse != null) {
|
|
|
|
final String remoteAddr = request.getRemoteAddr();
|
|
|
|
final ReCaptchaResponse reCaptchaResponse = captchaService.checkAnswer(remoteAddr, challenge, uresponse);
|
|
|
|
|
|
|
|
if (!reCaptchaResponse.isValid()) {
|
|
|
|
bindingResult.rejectValue("captcha", Messages.CAPTCHA_ERROR);
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
bindingResult.rejectValue("captcha", Messages.CAPTCHA_LOADING_ERROR);
|
2012-06-16 19:27:22 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return bindingResult;
|
2012-06-16 15:59:59 -03:00
|
|
|
}
|
|
|
|
}
|