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

Fri, 22 May 2020 21:23:57 +0200

author
Mike Becker <universe@uap-core.de>
date
Fri, 22 May 2020 21:23:57 +0200
changeset 75
33b6843fdf8a
parent 74
91d1fc2a3a14
child 78
bb4c52bf3439
permissions
-rw-r--r--

adds the ability to create and edit issues

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@59 35 import org.slf4j.Logger;
universe@59 36 import org.slf4j.LoggerFactory;
universe@51 37
universe@51 38 import javax.servlet.annotation.WebServlet;
universe@51 39 import javax.servlet.http.HttpServletRequest;
universe@51 40 import java.sql.SQLException;
universe@59 41 import java.util.NoSuchElementException;
universe@51 42
universe@51 43 @LightPITModule(
universe@51 44 bundleBaseName = "localization.users",
universe@51 45 modulePath = "teams",
universe@51 46 defaultPriority = 100
universe@51 47 )
universe@51 48 @WebServlet(
universe@51 49 name = "UsersModule",
universe@51 50 urlPatterns = "/teams/*"
universe@51 51 )
universe@51 52 public final class UsersModule extends AbstractLightPITServlet {
universe@51 53
universe@59 54 private static final Logger LOG = LoggerFactory.getLogger(UsersModule.class);
universe@59 55
universe@51 56 @RequestMapping(method = HttpMethod.GET)
universe@51 57 public ResponseType index(HttpServletRequest req, DataAccessObjects dao) throws SQLException {
universe@51 58 final var userDao = dao.getUserDao();
universe@51 59
universe@51 60 req.setAttribute("users", userDao.list());
universe@74 61 setContentPage(req, "users");
universe@51 62
universe@51 63 return ResponseType.HTML;
universe@51 64 }
universe@51 65
universe@51 66 @RequestMapping(requestPath = "edit", method = HttpMethod.GET)
universe@51 67 public ResponseType edit(HttpServletRequest req, DataAccessObjects dao) throws SQLException {
universe@51 68
universe@66 69 req.setAttribute("user", findByParameter(req, Integer.class, "id",
universe@66 70 dao.getUserDao()::find).orElse(new User(-1)));
universe@51 71
universe@74 72 setContentPage(req, "user-form");
universe@51 73
universe@51 74 return ResponseType.HTML;
universe@51 75 }
universe@51 76
universe@51 77 @RequestMapping(requestPath = "commit", method = HttpMethod.POST)
universe@51 78 public ResponseType commit(HttpServletRequest req, DataAccessObjects dao) {
universe@51 79
universe@51 80 User user = new User(-1);
universe@51 81 try {
universe@51 82 user = new User(getParameter(req, Integer.class, "userid").orElseThrow());
universe@51 83 user.setUsername(getParameter(req, String.class, "username").orElseThrow());
universe@51 84 getParameter(req, String.class, "givenname").ifPresent(user::setGivenname);
universe@51 85 getParameter(req, String.class, "lastname").ifPresent(user::setLastname);
universe@51 86 getParameter(req, String.class, "mail").ifPresent(user::setMail);
universe@51 87
universe@51 88 dao.getUserDao().saveOrUpdate(user);
universe@51 89
universe@51 90 setRedirectLocation(req, "./teams/");
universe@74 91 setContentPage(req, Constants.JSP_COMMIT_SUCCESSFUL);
universe@59 92
universe@59 93 LOG.debug("Successfully updated user {}", user.getUsername());
universe@75 94 } catch (NoSuchElementException | IllegalArgumentException | SQLException ex) {
universe@51 95 // TODO: set request attribute with error text
universe@51 96 req.setAttribute("user", user);
universe@74 97 setContentPage(req, "user-form");
universe@59 98 LOG.warn("Form validation failure: {}", ex.getMessage());
universe@59 99 LOG.debug("Details:", ex);
universe@51 100 }
universe@51 101
universe@51 102 return ResponseType.HTML;
universe@51 103 }
universe@51 104 }

mercurial