NewUserController.java
2.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
package fr.plil.sio.web.mvc;
import org.springframework.stereotype.Controller;
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.servlet.ModelAndView;
import javax.annotation.Resource;
@Controller
public class NewUserController {
@Resource
private UserRepository userRepository;
@Resource
private UserService userService;
@Resource
private UserSession userSession;
@Resource
private UserFormValidator userFormValidator;
@RequestMapping(value = {"/newUser"}, method = RequestMethod.GET)
public ModelAndView getNewUserForm() {
return new ModelAndView("newUser", "user", new User());
}
@RequestMapping(value = {"/newUser"}, method = RequestMethod.POST)
public String postNewUser(@ModelAttribute("userForm") UserForm user,
BindingResult result) {
if (!userSession.getUsername().equals("admin")) {
result.rejectValue("username", "new.user.only.admin");
}
userFormValidator.validate(user, result);
boolean present = (userRepository.findByUsername(user.getUsername()) != null);
if (present) {
result.rejectValue("username", "new.user.form.present");
}
if(result.hasErrors()) {
return "newUser";
}
userService.createUser(user.getUsername(), user.getPassword());
return "redirect:/";
}
public void setUserRepository(UserRepository userRepository) {
this.userRepository = userRepository;
}
public void setUserSession(UserSession userSession) {
this.userSession = userSession;
}
public void setUserFormValidator(UserFormValidator userFormValidator) {
this.userFormValidator = userFormValidator;
}
public void setUserService(UserService userService) {
this.userService = userService;
}
}