NewUserController.java
1.38 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
package fr.plil.sio.web.mvc;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.stereotype.Controller;
import org.springframework.validation.BindingResult;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.servlet.ModelAndView;
import javax.annotation.Resource;
import javax.validation.Valid;
@Controller
@RequestMapping(value = {"/newUser"})
public class NewUserController {
@Resource
private UserService userService;
@RequestMapping(method = RequestMethod.GET)
public ModelAndView getNewUserForm() {
return new ModelAndView("newUser", "userForm", new UserForm());
}
@PreAuthorize("hasRole('ROLE_ADMIN')")
@RequestMapping(method = RequestMethod.POST)
public String postNewUser(@Valid UserForm userForm, BindingResult result) {
boolean present = (userService.findByUsername(userForm.getUsername()) != null);
if (present) {
result.rejectValue("username", "new.user.form.present");
}
if(result.hasErrors()) {
return "newUser";
}
userService.createUser(userForm.getUsername(), userForm.getPassword());
return "redirect:/";
}
public void setUserService(UserService userService) {
this.userService = userService;
}
}