Regler le problème d'activation du nouveau compte

This commit is contained in:
Arimihanta 2021-06-16 13:33:54 +03:00
parent 73bee4fbe3
commit b3c294aa59

View file

@ -199,6 +199,7 @@ public class UserRESTFacade extends AbstractRESTFacade<User> {
if (user.getInstitution() == null || !getUser().is(User.Authority.SUPERADMIN)) { if (user.getInstitution() == null || !getUser().is(User.Authority.SUPERADMIN)) {
user.setInstitution(institutionService.getReference(0L)); user.setInstitution(institutionService.getReference(0L));
} }
if (getUser().getAuthority() == User.Authority.GUEST) { if (getUser().getAuthority() == User.Authority.GUEST) {
user.setActive(false); user.setActive(false);
super.create(user); super.create(user);
@ -226,6 +227,8 @@ public class UserRESTFacade extends AbstractRESTFacade<User> {
private void sendLink(User user, String subject, String body) throws MessagingException { private void sendLink(User user, String subject, String body) throws MessagingException {
Locale currentLocale = request.getLocale(); Locale currentLocale = request.getLocale();
ResourceBundle messages = ResourceBundle.getBundle("messages", currentLocale); ResourceBundle messages = ResourceBundle.getBundle("messages", currentLocale);
ResourceBundle application_config = ResourceBundle.getBundle("application", currentLocale);
String token = authenticationTokenService.issueToken(user, 24L * 60 * 60); String token = authenticationTokenService.issueToken(user, 24L * 60 * 60);
System.out.println(authenticationTokenService.parseToken(token).getIssuedDate()); System.out.println(authenticationTokenService.parseToken(token).getIssuedDate());
@ -246,8 +249,7 @@ public class UserRESTFacade extends AbstractRESTFacade<User> {
localSubject = "AREN API token"; localSubject = "AREN API token";
localBody = token; localBody = token;
} }
mailingService.sendMail(application_config.getString("smtp.username"), user.getEmail(), localSubject, localBody);
mailingService.sendMail("noreply@aren.fr", user.getEmail(), localSubject, localBody);
} }
/** /**
@ -358,10 +360,8 @@ public class UserRESTFacade extends AbstractRESTFacade<User> {
@Path("me") @Path("me")
@RolesAllowed({"GUEST"}) @RolesAllowed({"GUEST"})
public User getAuthenticatedUser() { public User getAuthenticatedUser() {
return getUser(); return getUser();
} }
/** /**
* Check the existance of an User by its username or mail * Check the existance of an User by its username or mail
* *