package ca.intelliware.ihtsdo.mlds.service; import java.util.HashSet; import java.util.List; import java.util.Set; import javax.annotation.Resource; import javax.inject.Inject; import org.joda.time.LocalDate; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.scheduling.annotation.Scheduled; import org.springframework.security.crypto.password.PasswordEncoder; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; import ca.intelliware.ihtsdo.mlds.domain.Authority; import ca.intelliware.ihtsdo.mlds.domain.PersistentToken; import ca.intelliware.ihtsdo.mlds.domain.User; import ca.intelliware.ihtsdo.mlds.repository.AuthorityRepository; import ca.intelliware.ihtsdo.mlds.repository.PersistentTokenRepository; import ca.intelliware.ihtsdo.mlds.repository.UserRepository; import ca.intelliware.ihtsdo.mlds.security.SecurityUtils; import ca.intelliware.ihtsdo.mlds.service.util.RandomUtil; /** * Service class for managing users. */ @Service @Transactional public class UserService { private final Logger log = LoggerFactory.getLogger(UserService.class); @Inject private PasswordEncoder passwordEncoder; @Inject private UserRepository userRepository; @Inject private PersistentTokenRepository persistentTokenRepository; @Inject private AuthorityRepository authorityRepository; @Resource AutologinService autologinService; public User activateRegistration(String key) { log.debug("Activating user for activation key {}", key); User user = userRepository.getUserByActivationKey(key); // activate given user for the registration key. if (user != null) { user.setActivated(true); // MLDS-234 Rory requested that activation keys not expire // user.setActivationKey(null); autologinService.loginUser(user); log.debug("Activated user: {}", user); } return user; } public User createUserInformation(String login, String password, String firstName, String lastName, String email, String langKey, Boolean activated) { User newUser = new User(); Authority authority = authorityRepository.findOne("ROLE_USER"); Set<Authority> authorities = new HashSet<Authority>(); String encryptedPassword = passwordEncoder.encode(password); newUser.setLogin(login); // new user gets initially a generated password newUser.setPassword(encryptedPassword); newUser.setFirstName(firstName); newUser.setLastName(lastName); newUser.setEmail(email); newUser.setLangKey(langKey); // new user is not active newUser.setActivated(activated); // new user gets registration key newUser.setActivationKey(RandomUtil.generateActivationKey()); authorities.add(authority); newUser.setAuthorities(authorities); userRepository.save(newUser); log.debug("Created Information for User: {}", newUser); return newUser; } public void updateUserInformation(String firstName, String lastName, String email) { User currentUser = userRepository.findByLoginIgnoreCase(SecurityUtils.getCurrentLogin()); currentUser.setFirstName(firstName); currentUser.setLastName(lastName); currentUser.setEmail(email); log.debug("Changed Information for User: {}", currentUser); } public void changePassword(String password) { User currentUser = userRepository.findByLoginIgnoreCase(SecurityUtils.getCurrentLogin()); changePassword(currentUser, password); } protected void changePassword(User user, String password) { String encryptedPassword = passwordEncoder.encode(password); user.setPassword(encryptedPassword); log.debug("Changed password for User: {}", user); } @Transactional(readOnly = true) public User getUserWithAuthorities() { User currentUser = userRepository.findByLoginIgnoreCase(SecurityUtils.getCurrentLogin()); if (currentUser != null) { currentUser.getAuthorities().size(); // eagerly load the association } return currentUser; } /** * Persistent Token are used for providing automatic authentication, they should be automatically deleted after * 30 days. * <p/> * <p> * This is scheduled to get fired everyday, at midnight. * </p> */ @Scheduled(cron = "0 0 0 * * ?") public void removeOldPersistentTokens() { LocalDate now = new LocalDate(); List<PersistentToken> tokens = persistentTokenRepository.findByTokenDateBefore(now.minusMonths(1)); for (PersistentToken token : tokens) { log.debug("Deleting token {}", token.getSeries()); User user = token.getUser(); user.getPersistentTokens().remove(token); persistentTokenRepository.delete(token); } } /** * Not activated users should be automatically deleted after 3 days. * <p/> * <p> * This is scheduled to get fired everyday, at 01:00 (am). * </p> */ @Scheduled(cron = "0 0 1 * * ?") public void removeNotActivatedUsers() { LocalDate now = new LocalDate(); List<User> users = userRepository.findNotActivatedUsersByCreationDateBefore(now.minusDays(3)); for (User user : users) { log.debug("Deleting not activated user {}", user.getLogin()); userRepository.delete(user); } } }