package org.kalipo.web.rest; import com.codahale.metrics.annotation.Timed; import org.apache.commons.lang.StringUtils; import org.kalipo.domain.Authority; import org.kalipo.domain.PersistentToken; import org.kalipo.domain.User; import org.kalipo.repository.PersistentTokenRepository; import org.kalipo.repository.UserRepository; import org.kalipo.security.SecurityUtils; import org.kalipo.service.MailService; import org.kalipo.service.UserService; import org.kalipo.web.rest.dto.UserDTO; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.context.ApplicationContext; import org.springframework.http.HttpStatus; import org.springframework.http.MediaType; import org.springframework.http.ResponseEntity; import org.springframework.web.bind.annotation.*; import org.thymeleaf.context.IWebContext; import org.thymeleaf.spring4.SpringTemplateEngine; import org.thymeleaf.spring4.context.SpringWebContext; import javax.inject.Inject; import javax.servlet.ServletContext; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.ws.rs.PathParam; import java.io.UnsupportedEncodingException; import java.net.URLDecoder; import java.util.*; import java.util.stream.Collectors; /** * REST controller for managing the current user's account. */ @RestController @RequestMapping("/app") public class AccountResource { private final Logger log = LoggerFactory.getLogger(AccountResource.class); @Inject private ServletContext servletContext; @Inject private ApplicationContext applicationContext; @Inject private SpringTemplateEngine templateEngine; @Inject private UserRepository userRepository; @Inject private UserService userService; @Inject private PersistentTokenRepository persistentTokenRepository; @Inject private MailService mailService; /** * POST /rest/register -> register the user. */ @RequestMapping(value = "/rest/register", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE) @Timed public ResponseEntity<?> registerAccount(@RequestBody UserDTO userDTO, HttpServletRequest request, HttpServletResponse response) { return Optional.ofNullable(userRepository.findOne(userDTO.getLogin())) .map(user -> new ResponseEntity<>(HttpStatus.NOT_MODIFIED)) .orElseGet(() -> { User user = userService.createUserInformation(userDTO.getLogin(), userDTO.getPassword(), userDTO.getFirstName(), userDTO.getLastName(), userDTO.getEmail().toLowerCase(), userDTO.getLangKey()); final Locale locale = Locale.forLanguageTag(user.getLangKey()); String content = createHtmlContentFromTemplate(user, locale, request, response); mailService.sendActivationEmail(user.getEmail(), content, locale); return new ResponseEntity<>(HttpStatus.CREATED);}); } /** * GET /rest/activate -> activate the registered user. */ @RequestMapping(value = "/rest/activate", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) @Timed public ResponseEntity<String> activateAccount(@RequestParam(value = "key") String key) { return Optional.ofNullable(userService.activateRegistration(key)) .map(user -> new ResponseEntity<String>( user.getLogin(), HttpStatus.OK)) .orElse(new ResponseEntity<>(HttpStatus.INTERNAL_SERVER_ERROR)); } /** * GET /rest/authenticate -> check if the user is authenticated, and return its login. */ @RequestMapping(value = "/rest/authenticate", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) @Timed public String isAuthenticated(HttpServletRequest request) { log.debug("REST request to check if the current user is authenticated"); return request.getRemoteUser(); } /** * GET /rest/account -> get the current user. */ @RequestMapping(value = "/rest/account", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) @Timed public ResponseEntity<UserDTO> getAccount() { return Optional.ofNullable(userService.getUserWithAuthorities()) .map(user -> new ResponseEntity<>( new UserDTO( user.getLogin(), null, user.getFirstName(), user.getLastName(), user.getEmail(), user.getLangKey(), user.getAuthorities().stream().map(Authority::getName).collect(Collectors.toList()), user.getReputation(), user.getDisplayName() ), HttpStatus.OK)) .orElse(new ResponseEntity<>(HttpStatus.INTERNAL_SERVER_ERROR)); } /** * POST /rest/account/ignore-author-of/:commentId -> ignore a user. */ @RequestMapping(value = "/rest/account/ignore-author/:commentId", method = RequestMethod.PUT, produces = MediaType.APPLICATION_JSON_VALUE) @Timed public ResponseEntity<Boolean> ignoreAuthor(@PathParam("commentId") String commentId) throws KalipoException { return Optional.ofNullable(userService.ignoreAuthorOfComment(commentId)) .map(response -> new ResponseEntity<Boolean>(response, HttpStatus.OK)) .orElse(new ResponseEntity<>(HttpStatus.INTERNAL_SERVER_ERROR)); } /** * POST /rest/account -> update the current user information. */ @RequestMapping(value = "/rest/account", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE) @Timed public void saveAccount(@RequestBody UserDTO userDTO) { userService.updateUserInformation(userDTO.getFirstName(), userDTO.getLastName(), userDTO.getEmail()); } /** * POST /rest/change_password -> changes the current user's password */ @RequestMapping(value = "/rest/account/change_password", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE) @Timed public ResponseEntity<?> changePassword(@RequestBody String password) { if (StringUtils.isEmpty(password)) { return new ResponseEntity<>(HttpStatus.FORBIDDEN); } userService.changePassword(password); return new ResponseEntity<>(HttpStatus.OK); } /** * GET /rest/account/sessions -> get the current open sessions. */ @RequestMapping(value = "/rest/account/sessions", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) @Timed public ResponseEntity<List<PersistentToken>> getCurrentSessions() { return Optional.ofNullable(userRepository.findOne(SecurityUtils.getCurrentLogin())) .map(user -> new ResponseEntity<>( persistentTokenRepository.findByUser(user), HttpStatus.OK)) .orElse(new ResponseEntity<>(HttpStatus.INTERNAL_SERVER_ERROR)); } /** * DELETE /rest/account/sessions?series={series} -> invalidate an existing session. * * - You can only delete your own sessions, not any other user's session * - If you delete one of your existing sessions, and that you are currently logged in on that session, you will * still be able to use that session, until you quit your browser: it does not work in real time (there is * no API for that), it only removes the "remember me" cookie * - This is also true if you invalidate your current session: you will still be able to use it until you close * your browser or that the session times out. But automatic login (the "remember me" cookie) will not work * anymore. * There is an API to invalidate the current session, but there is no API to check which session uses which * cookie. */ @RequestMapping(value = "/rest/account/sessions/{series}", method = RequestMethod.DELETE) @Timed public void invalidateSession(@PathVariable String series) throws UnsupportedEncodingException { String decodedSeries = URLDecoder.decode(series, "UTF-8"); User user = userRepository.findOne(SecurityUtils.getCurrentLogin()); if (persistentTokenRepository.findByUser(user).stream() .filter(persistentToken -> StringUtils.equals(persistentToken.getSeries(), decodedSeries)) .count() > 0) { persistentTokenRepository.delete(decodedSeries); } } private String createHtmlContentFromTemplate(final User user, final Locale locale, final HttpServletRequest request, final HttpServletResponse response) { Map<String, Object> variables = new HashMap<>(); variables.put("user", user); variables.put("baseUrl", request.getScheme() + "://" + // "http" + ":// request.getServerName() + // "myhost" ":" + request.getServerPort()); IWebContext context = new SpringWebContext(request, response, servletContext, locale, variables, applicationContext); return templateEngine.process("activationEmail", context); } }