src/main/java/de/uapcore/lightpit/modules/UsersModule.java

Mon, 01 Jun 2020 14:46:58 +0200

author
Mike Becker <universe@uap-core.de>
date
Mon, 01 Jun 2020 14:46:58 +0200
changeset 86
0a658e53177c
parent 79
f64255a88d66
child 157
1e6f16fad3a5
permissions
-rw-r--r--

improves issue overview and adds progress information

universe@51 1 /*
universe@51 2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
universe@51 3 *
universe@51 4 * Copyright 2018 Mike Becker. All rights reserved.
universe@51 5 *
universe@51 6 * Redistribution and use in source and binary forms, with or without
universe@51 7 * modification, are permitted provided that the following conditions are met:
universe@51 8 *
universe@51 9 * 1. Redistributions of source code must retain the above copyright
universe@51 10 * notice, this list of conditions and the following disclaimer.
universe@51 11 *
universe@51 12 * 2. Redistributions in binary form must reproduce the above copyright
universe@51 13 * notice, this list of conditions and the following disclaimer in the
universe@51 14 * documentation and/or other materials provided with the distribution.
universe@51 15 *
universe@51 16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
universe@51 17 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
universe@51 18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
universe@51 19 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
universe@51 20 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
universe@51 21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
universe@51 22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
universe@51 23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
universe@51 24 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
universe@51 25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
universe@51 26 * POSSIBILITY OF SUCH DAMAGE.
universe@51 27 *
universe@51 28 */
universe@51 29 package de.uapcore.lightpit.modules;
universe@51 30
universe@51 31
universe@51 32 import de.uapcore.lightpit.*;
universe@51 33 import de.uapcore.lightpit.dao.DataAccessObjects;
universe@51 34 import de.uapcore.lightpit.entities.User;
universe@86 35 import de.uapcore.lightpit.viewmodel.UsersEditView;
universe@86 36 import de.uapcore.lightpit.viewmodel.UsersView;
universe@59 37 import org.slf4j.Logger;
universe@59 38 import org.slf4j.LoggerFactory;
universe@51 39
universe@51 40 import javax.servlet.annotation.WebServlet;
universe@51 41 import javax.servlet.http.HttpServletRequest;
universe@51 42 import java.sql.SQLException;
universe@59 43 import java.util.NoSuchElementException;
universe@51 44
universe@51 45 @WebServlet(
universe@51 46 name = "UsersModule",
universe@51 47 urlPatterns = "/teams/*"
universe@51 48 )
universe@51 49 public final class UsersModule extends AbstractLightPITServlet {
universe@51 50
universe@59 51 private static final Logger LOG = LoggerFactory.getLogger(UsersModule.class);
universe@59 52
universe@78 53 @Override
universe@78 54 protected String getResourceBundleName() {
universe@78 55 return "localization.users";
universe@78 56 }
universe@78 57
universe@51 58 @RequestMapping(method = HttpMethod.GET)
universe@51 59 public ResponseType index(HttpServletRequest req, DataAccessObjects dao) throws SQLException {
universe@51 60 final var userDao = dao.getUserDao();
universe@51 61
universe@86 62 final var viewModel = new UsersView();
universe@86 63 viewModel.setUsers(userDao.list());
universe@86 64 setViewModel(req, viewModel);
universe@74 65 setContentPage(req, "users");
universe@51 66
universe@51 67 return ResponseType.HTML;
universe@51 68 }
universe@51 69
universe@51 70 @RequestMapping(requestPath = "edit", method = HttpMethod.GET)
universe@51 71 public ResponseType edit(HttpServletRequest req, DataAccessObjects dao) throws SQLException {
universe@51 72
universe@86 73 final var viewModel = new UsersEditView();
universe@86 74 viewModel.setUser(findByParameter(req, Integer.class, "id",
universe@66 75 dao.getUserDao()::find).orElse(new User(-1)));
universe@51 76
universe@86 77 setViewModel(req, viewModel);
universe@74 78 setContentPage(req, "user-form");
universe@51 79
universe@51 80 return ResponseType.HTML;
universe@51 81 }
universe@51 82
universe@51 83 @RequestMapping(requestPath = "commit", method = HttpMethod.POST)
universe@51 84 public ResponseType commit(HttpServletRequest req, DataAccessObjects dao) {
universe@51 85
universe@51 86 User user = new User(-1);
universe@51 87 try {
universe@51 88 user = new User(getParameter(req, Integer.class, "userid").orElseThrow());
universe@51 89 user.setUsername(getParameter(req, String.class, "username").orElseThrow());
universe@51 90 getParameter(req, String.class, "givenname").ifPresent(user::setGivenname);
universe@51 91 getParameter(req, String.class, "lastname").ifPresent(user::setLastname);
universe@51 92 getParameter(req, String.class, "mail").ifPresent(user::setMail);
universe@51 93
universe@51 94 dao.getUserDao().saveOrUpdate(user);
universe@51 95
universe@51 96 setRedirectLocation(req, "./teams/");
universe@74 97 setContentPage(req, Constants.JSP_COMMIT_SUCCESSFUL);
universe@59 98
universe@59 99 LOG.debug("Successfully updated user {}", user.getUsername());
universe@75 100 } catch (NoSuchElementException | IllegalArgumentException | SQLException ex) {
universe@86 101 final var viewModel = new UsersEditView();
universe@86 102 viewModel.setUser(user);
universe@86 103 // TODO: viewModel.setErrorText()
universe@86 104 setViewModel(req, viewModel);
universe@74 105 setContentPage(req, "user-form");
universe@59 106 LOG.warn("Form validation failure: {}", ex.getMessage());
universe@59 107 LOG.debug("Details:", ex);
universe@51 108 }
universe@51 109
universe@51 110 return ResponseType.HTML;
universe@51 111 }
universe@51 112 }

mercurial