/* Copyright 2009 Ramnivas Laddad 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.springframework.samples.jpetstore.web.spring; import java.util.HashMap; import java.util.Map; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.springframework.beans.support.PagedListHolder; import org.springframework.dao.DataIntegrityViolationException; import org.springframework.samples.jpetstore.domain.Account; import org.springframework.samples.jpetstore.domain.logic.PetStoreFacade; import org.springframework.validation.BindException; import org.springframework.validation.ValidationUtils; import org.springframework.web.servlet.ModelAndView; import org.springframework.web.servlet.mvc.SimpleFormController; import org.springframework.web.util.WebUtils; /** * @author Juergen Hoeller * @since 01.12.2003 */ public class AccountFormController extends SimpleFormController { public static final String[] LANGUAGES = {"english", "japanese"}; private PetStoreFacade petStore; public AccountFormController() { setSessionForm(true); setValidateOnBinding(false); setCommandName("accountForm"); setFormView("EditAccountForm"); } public void setPetStore(PetStoreFacade petStore) { this.petStore = petStore; } protected Object formBackingObject(HttpServletRequest request) throws Exception { UserSession userSession = (UserSession) WebUtils.getSessionAttribute(request, "userSession"); if (userSession != null) { return new AccountForm(this.petStore.getAccount(userSession.getAccount().getUsername())); } else { return new AccountForm(); } } protected void onBindAndValidate(HttpServletRequest request, Object command, BindException errors) throws Exception { AccountForm accountForm = (AccountForm) command; Account account = accountForm.getAccount(); if (request.getParameter("account.listOption") == null) { account.setListOption(false); } if (request.getParameter("account.bannerOption") == null) { account.setBannerOption(false); } errors.setNestedPath("account"); getValidator().validate(account, errors); errors.setNestedPath(""); if (accountForm.isNewAccount()) { account.setStatus("OK"); ValidationUtils.rejectIfEmpty(errors, "account.username", "USER_ID_REQUIRED", "User ID is required."); if (account.getPassword() == null || account.getPassword().length() < 1 || !account.getPassword().equals(accountForm.getRepeatedPassword())) { errors.reject("PASSWORD_MISMATCH", "Passwords did not match or were not provided. Matching passwords are required."); } } else if (account.getPassword() != null && account.getPassword().length() > 0) { if (!account.getPassword().equals(accountForm.getRepeatedPassword())) { errors.reject("PASSWORD_MISMATCH", "Passwords did not match. Matching passwords are required."); } } } protected Map referenceData(HttpServletRequest request) throws Exception { Map model = new HashMap(); model.put("languages", LANGUAGES); model.put("categories", this.petStore.getCategoryList()); return model; } protected ModelAndView onSubmit( HttpServletRequest request, HttpServletResponse response, Object command, BindException errors) throws Exception { AccountForm accountForm = (AccountForm) command; try { if (accountForm.isNewAccount()) { this.petStore.insertAccount(accountForm.getAccount()); } else { this.petStore.updateAccount(accountForm.getAccount()); } } catch (DataIntegrityViolationException ex) { errors.rejectValue("account.username", "USER_ID_ALREADY_EXISTS", "User ID already exists: choose a different ID."); return showForm(request, response, errors); } UserSession userSession = new UserSession(this.petStore.getAccount(accountForm.getAccount().getUsername())); PagedListHolder myList = new PagedListHolder( this.petStore.getProductListByCategory(accountForm.getAccount().getFavouriteCategoryId())); myList.setPageSize(4); userSession.setMyList(myList); request.getSession().setAttribute("userSession", userSession); return super.onSubmit(request, response, command, errors); } }