2012-02-21 14:22:43 -03:00
|
|
|
package com.wisemapping.rest;
|
|
|
|
|
|
|
|
|
|
|
|
import com.wisemapping.exceptions.WiseMappingException;
|
|
|
|
import com.wisemapping.model.User;
|
|
|
|
import com.wisemapping.rest.model.RestUser;
|
|
|
|
import com.wisemapping.service.UserService;
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
2012-02-21 20:04:17 -03:00
|
|
|
import org.springframework.http.HttpStatus;
|
2012-02-21 14:22:43 -03:00
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
import org.springframework.web.servlet.ModelAndView;
|
|
|
|
|
2012-03-12 10:48:54 -03:00
|
|
|
import javax.servlet.http.HttpServletResponse;
|
2012-02-21 14:22:43 -03:00
|
|
|
import java.io.IOException;
|
|
|
|
|
|
|
|
@Controller
|
2012-02-21 20:04:17 -03:00
|
|
|
public class AdminController extends BaseController {
|
2012-02-21 14:22:43 -03:00
|
|
|
@Autowired
|
|
|
|
private UserService userService;
|
|
|
|
|
2012-02-21 17:41:51 -03:00
|
|
|
@RequestMapping(method = RequestMethod.GET, value = "admin/users/{id}", produces = {"application/json", "text/html", "application/xml"})
|
2012-02-21 14:22:43 -03:00
|
|
|
@ResponseBody
|
2012-02-21 17:41:51 -03:00
|
|
|
public ModelAndView getUserById(@PathVariable long id) throws IOException {
|
2012-02-21 14:22:43 -03:00
|
|
|
final User userBy = userService.getUserBy(id);
|
|
|
|
if (userBy == null) {
|
|
|
|
throw new IllegalArgumentException("User could not be found");
|
|
|
|
}
|
2012-03-12 10:48:54 -03:00
|
|
|
return new ModelAndView("userView", "user", new RestUser(userBy));
|
2012-02-21 14:22:43 -03:00
|
|
|
}
|
|
|
|
|
2012-02-21 17:41:51 -03:00
|
|
|
@RequestMapping(method = RequestMethod.GET, value = "admin/users/email/{email}", produces = {"application/json", "text/html", "application/xml"})
|
2012-02-21 14:22:43 -03:00
|
|
|
@ResponseBody
|
|
|
|
public ModelAndView getUserByEmail(@PathVariable String email) throws IOException {
|
2012-02-21 17:41:51 -03:00
|
|
|
final User user = userService.getUserBy(email);
|
|
|
|
if (user == null) {
|
|
|
|
throw new IllegalArgumentException("User '" + email + "' could not be found");
|
2012-02-21 14:22:43 -03:00
|
|
|
}
|
2012-02-21 17:41:51 -03:00
|
|
|
return new ModelAndView("userView", "user", new RestUser(user));
|
2012-02-21 14:22:43 -03:00
|
|
|
}
|
|
|
|
|
2012-02-21 17:41:51 -03:00
|
|
|
@RequestMapping(method = RequestMethod.POST, value = "admin/users", consumes = {"application/xml", "application/json"}, produces = {"application/json", "text/html", "application/xml"})
|
2012-03-12 10:48:54 -03:00
|
|
|
@ResponseStatus(value = HttpStatus.CREATED)
|
|
|
|
public void getUserByEmail(@RequestBody RestUser user, HttpServletResponse response) throws IOException, WiseMappingException {
|
2012-02-21 14:22:43 -03:00
|
|
|
if (user == null) {
|
|
|
|
throw new IllegalArgumentException("User could not be found");
|
|
|
|
}
|
2012-02-21 17:41:51 -03:00
|
|
|
|
|
|
|
// User already exists ?
|
|
|
|
final String email = user.getEmail();
|
2012-02-21 20:04:17 -03:00
|
|
|
if (userService.getUserBy(email) != null) {
|
2012-02-21 17:41:51 -03:00
|
|
|
throw new IllegalArgumentException("User already exists with this email.");
|
|
|
|
}
|
|
|
|
|
2012-03-12 10:48:54 -03:00
|
|
|
final User delegated = user.getDelegated();
|
|
|
|
final String lastname = delegated.getLastname();
|
|
|
|
if (lastname == null || lastname.isEmpty()) {
|
|
|
|
throw new IllegalArgumentException("lastname can not be null");
|
|
|
|
}
|
|
|
|
|
|
|
|
final String firstName = delegated.getFirstname();
|
|
|
|
if (firstName == null || firstName.isEmpty()) {
|
|
|
|
throw new IllegalArgumentException("firstname can not be null");
|
|
|
|
}
|
|
|
|
|
|
|
|
final String username = delegated.getUsername();
|
|
|
|
if (username == null || username.isEmpty()) {
|
|
|
|
throw new IllegalArgumentException("username can not be null");
|
|
|
|
}
|
|
|
|
|
|
|
|
userService.createUser(delegated, false);
|
|
|
|
response.setHeader("Location","/service/admin/users/" + user.getId());
|
2012-02-21 17:41:51 -03:00
|
|
|
}
|
2012-02-21 16:36:19 -03:00
|
|
|
|
2012-03-12 13:50:43 -03:00
|
|
|
@RequestMapping(method = RequestMethod.PUT, value = "admin/users/{id}/password", consumes = {"text/plain"})
|
2012-02-21 20:04:17 -03:00
|
|
|
@ResponseStatus(value = HttpStatus.NO_CONTENT)
|
|
|
|
public void changePassword(@RequestBody String password, @PathVariable long id) throws IOException, WiseMappingException {
|
2012-02-21 17:41:51 -03:00
|
|
|
if (password == null) {
|
|
|
|
throw new IllegalArgumentException("Password can not be null");
|
|
|
|
}
|
|
|
|
|
|
|
|
final User user = userService.getUserBy(id);
|
2012-02-21 20:04:17 -03:00
|
|
|
if (user == null) {
|
|
|
|
throw new IllegalArgumentException("User '" + id + "' could not be found");
|
|
|
|
}
|
2012-02-21 17:41:51 -03:00
|
|
|
user.setPassword(password);
|
|
|
|
userService.changePassword(user);
|
|
|
|
}
|
|
|
|
|
|
|
|
@RequestMapping(method = RequestMethod.DELETE, value = "admin/users/{id}", produces = {"application/json", "text/html", "application/xml"})
|
2012-02-21 20:04:17 -03:00
|
|
|
@ResponseStatus(value = HttpStatus.NO_CONTENT)
|
|
|
|
public void getUserByEmail(@PathVariable long id) throws IOException, WiseMappingException {
|
2012-02-21 17:41:51 -03:00
|
|
|
final User user = userService.getUserBy(id);
|
|
|
|
if (user == null) {
|
|
|
|
throw new IllegalArgumentException("User '" + id + "' could not be found");
|
|
|
|
}
|
|
|
|
userService.deleteUser(user);
|
2012-02-21 14:22:43 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|