org.wallride.web.controller.guest.user.ProfileUpdateController.java Source code

Java tutorial

Introduction

Here is the source code for org.wallride.web.controller.guest.user.ProfileUpdateController.java

Source

/*
 * Copyright 2014 Tagbangers, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.wallride.web.controller.guest.user;

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.validation.BindingResult;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.servlet.mvc.support.RedirectAttributes;
import org.wallride.domain.User;
import org.wallride.exception.DuplicateEmailException;
import org.wallride.exception.DuplicateLoginIdException;
import org.wallride.model.ProfileUpdateRequest;
import org.wallride.service.UserService;
import org.wallride.support.AuthorizedUser;

import javax.inject.Inject;

@Controller
@RequestMapping("/settings/profile")
public class ProfileUpdateController {

    public static final String FORM_MODEL_KEY = "form";
    public static final String ERRORS_MODEL_KEY = BindingResult.MODEL_KEY_PREFIX + FORM_MODEL_KEY;

    @Inject
    private UserService userService;

    @ModelAttribute(FORM_MODEL_KEY)
    public ProfileUpdateForm setupProfileUpdateForm() {
        return new ProfileUpdateForm();
    }

    @RequestMapping(method = RequestMethod.GET)
    public String init(AuthorizedUser authorizedUser, Model model) {
        User user = userService.getUserById(authorizedUser.getId());

        ProfileUpdateForm form = new ProfileUpdateForm();
        form.setEmail(user.getEmail());
        form.setLoginId(user.getLoginId());
        ProfileUpdateForm.Name name = new ProfileUpdateForm.Name();
        name.setFirstName(user.getName().getFirstName());
        name.setLastName(user.getName().getLastName());
        form.setName(name);
        model.addAttribute(FORM_MODEL_KEY, form);
        return edit(model);
    }

    @RequestMapping(method = RequestMethod.GET, params = "step.edit")
    public String edit(Model model) {
        return "user/profile-update";
    }

    @RequestMapping(method = RequestMethod.PUT)
    public String update(@Validated @ModelAttribute(FORM_MODEL_KEY) ProfileUpdateForm form, BindingResult errors,
            AuthorizedUser authorizedUser, RedirectAttributes redirectAttributes) {
        redirectAttributes.addFlashAttribute(FORM_MODEL_KEY, form);
        redirectAttributes.addFlashAttribute(ERRORS_MODEL_KEY, errors);

        if (errors.hasErrors()) {
            return "redirect:/settings/profile?step.edit";
        }

        ProfileUpdateRequest request = new ProfileUpdateRequest().withUserId(authorizedUser.getId())
                .withEmail(form.getEmail()).withLoginId(form.getLoginId())
                .withName(form.getName().getFirstName(), form.getName().getLastName());

        User updatedUser;
        try {
            updatedUser = userService.updateProfile(request, authorizedUser);
        } catch (DuplicateLoginIdException e) {
            errors.rejectValue("loginId", "NotDuplicate");
            return "redirect:/settings/profile?step.edit";
        } catch (DuplicateEmailException e) {
            errors.rejectValue("email", "NotDuplicate");
            return "redirect:/settings/profile?step.edit";
        }

        redirectAttributes.getFlashAttributes().clear();
        redirectAttributes.addFlashAttribute("updatedUser", updatedUser);
        return "redirect:/settings/profile";
    }
}