Package uk.ac.bbsrc.tgac.miso.webapp.controller

Source Code of uk.ac.bbsrc.tgac.miso.webapp.controller.UserRegistrationController

/*
* Copyright (c) 2012. The Genome Analysis Centre, Norwich, UK
* MISO project contacts: Robert Davey, Mario Caccamo @ TGAC
* *********************************************************************
*
* This file is part of MISO.
*
* MISO is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* MISO is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with MISO.  If not, see <http://www.gnu.org/licenses/>.
*
* *********************************************************************
*/

package uk.ac.bbsrc.tgac.miso.webapp.controller;

import com.eaglegenomics.simlims.core.User;
import com.eaglegenomics.simlims.core.manager.SecurityManager;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.bind.support.SessionStatus;
import org.springframework.web.servlet.ModelAndView;
import uk.ac.bbsrc.tgac.miso.core.data.impl.UserImpl;

import java.io.IOException;

/**
* Created by IntelliJ IDEA.
* User: davey
* Date: 05-Feb-2010
* Time: 12:20:07
*/
@Controller
@RequestMapping("/registerUser")
public class UserRegistrationController {
  protected static final Logger log = LoggerFactory.getLogger(UserRegistrationController.class);

  @Autowired
  private SecurityManager securityManager;

  public void setSecurityManager(SecurityManager securityManager) {
    this.securityManager = securityManager;
  }

  @RequestMapping(method = RequestMethod.GET)
  public ModelAndView setupForm(ModelMap model) throws IOException {
    model.put("user", new UserImpl());
    return new ModelAndView("/pages/registerUser.jsp", model);
  }

  @RequestMapping(method = RequestMethod.POST)
  public String processSubmit(@ModelAttribute("user") User user,
                              ModelMap model, SessionStatus session) throws IOException {
    try {
      securityManager.saveUser(user);
      session.setComplete();
      model.clear();
      return "redirect:/miso/mainMenu";
    }
    catch (IOException ex) {
      if (log.isDebugEnabled()) {
        log.debug("Failed to register user", ex);
      }
      throw ex;
    }
  }
}
TOP

Related Classes of uk.ac.bbsrc.tgac.miso.webapp.controller.UserRegistrationController

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.