Search in sources :

Example 1 with SignUpConfirmationMessage

use of org.activityinfo.server.mail.SignUpConfirmationMessage in project activityinfo by bedatadriven.

the class SignUpController method signUp.

@POST
@Produces(MediaType.TEXT_HTML)
@Transactional
public Response signUp(@FormParam("name") String name, @FormParam("organization") String organization, @FormParam("jobtitle") String jobtitle, @FormParam("email") String email, @FormParam("locale") String locale) {
    LOGGER.info("New user signing up! [name: " + name + ", email: " + email + ", locale: " + locale + ", organization: " + organization + ", job title: " + jobtitle + "]");
    if (!domainProvider.get().isSignUpAllowed()) {
        LOGGER.severe("Blocked attempt to signup via " + domainProvider.get().getHost());
        return Response.status(Status.FORBIDDEN).build();
    }
    // checking parameter values
    try {
        checkParam(name, true);
        checkParam(organization, false);
        checkParam(jobtitle, false);
        checkParam(email, true);
        checkParam(locale, true);
    } catch (IllegalArgumentException e) {
        LOGGER.log(Level.INFO, "User " + name + " (" + email + ") failed to sign up", e);
        return Response.ok(SignUpPageModel.formErrorModel().set(email, name, organization, jobtitle, locale).asViewable()).build();
    }
    try {
        // check duplicate email
        if (userDAO.get().doesUserExist(email)) {
            return Response.ok(new SignUpAddressExistsPageModel(email).asViewable()).type(MediaType.TEXT_HTML).build();
        }
        // persist new user
        User user = UserDAOImpl.createNewUser(email, name, organization, jobtitle, locale);
        userDAO.get().persist(user);
        // send confirmation email
        mailer.send(new SignUpConfirmationMessage(user));
        // return to page with positive result
        return Response.seeOther(new URI("/signUp/sent")).build();
    } catch (Exception e) {
        LOGGER.log(Level.SEVERE, "User " + name + " (" + email + ") failed to sign up", e);
        entityManager.getTransaction().rollback();
        return Response.ok(SignUpPageModel.genericErrorModel().set(email, name, organization, jobtitle, locale).asViewable()).build();
    }
}
Also used : SignUpAddressExistsPageModel(org.activityinfo.server.login.model.SignUpAddressExistsPageModel) User(org.activityinfo.server.database.hibernate.entity.User) SignUpConfirmationMessage(org.activityinfo.server.mail.SignUpConfirmationMessage) URI(java.net.URI) ServletException(javax.servlet.ServletException) IOException(java.io.IOException) Transactional(org.activityinfo.server.database.hibernate.dao.Transactional)

Aggregations

IOException (java.io.IOException)1 URI (java.net.URI)1 ServletException (javax.servlet.ServletException)1 Transactional (org.activityinfo.server.database.hibernate.dao.Transactional)1 User (org.activityinfo.server.database.hibernate.entity.User)1 SignUpAddressExistsPageModel (org.activityinfo.server.login.model.SignUpAddressExistsPageModel)1 SignUpConfirmationMessage (org.activityinfo.server.mail.SignUpConfirmationMessage)1