src/main/kotlin/de/uapcore/lightpit/servlet/UsersServlet.kt

Thu, 29 Dec 2022 14:50:35 +0100

author
Mike Becker <universe@uap-core.de>
date
Thu, 29 Dec 2022 14:50:35 +0100
changeset 257
c1be672af7ff
parent 254
55ca6cafc3dd
permissions
-rw-r--r--

#164 add issue summary for developers

universe@184 1 /*
universe@184 2 * Copyright 2021 Mike Becker. All rights reserved.
universe@184 3 *
universe@184 4 * Redistribution and use in source and binary forms, with or without
universe@184 5 * modification, are permitted provided that the following conditions are met:
universe@184 6 *
universe@184 7 * 1. Redistributions of source code must retain the above copyright
universe@184 8 * notice, this list of conditions and the following disclaimer.
universe@184 9 *
universe@184 10 * 2. Redistributions in binary form must reproduce the above copyright
universe@184 11 * notice, this list of conditions and the following disclaimer in the
universe@184 12 * documentation and/or other materials provided with the distribution.
universe@184 13 *
universe@184 14 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
universe@184 15 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
universe@184 16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
universe@184 17 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
universe@184 18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
universe@184 19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
universe@184 20 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
universe@184 21 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
universe@184 22 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
universe@184 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
universe@184 24 */
universe@184 25
universe@184 26 package de.uapcore.lightpit.servlet
universe@184 27
universe@247 28 import de.uapcore.lightpit.AbstractServlet
universe@247 29 import de.uapcore.lightpit.HttpRequest
universe@247 30 import de.uapcore.lightpit.ValidatedValue
universe@247 31 import de.uapcore.lightpit.ValidationError
universe@184 32 import de.uapcore.lightpit.dao.DataAccessObject
universe@184 33 import de.uapcore.lightpit.entities.User
universe@184 34 import de.uapcore.lightpit.viewmodel.UserEditView
universe@257 35 import de.uapcore.lightpit.viewmodel.UserViewData
universe@184 36 import de.uapcore.lightpit.viewmodel.UsersView
universe@254 37 import jakarta.servlet.annotation.WebServlet
universe@184 38
universe@184 39 @WebServlet(urlPatterns = ["/users/*"])
universe@247 40 class UsersServlet : AbstractServlet() {
universe@184 41
universe@184 42 init {
universe@184 43 get("/", this::index)
universe@184 44 get("/-/create", this::create)
universe@184 45 get("/%userid/edit", this::edit)
universe@184 46 post("/-/commit", this::commit)
universe@184 47 }
universe@184 48
universe@184 49 private val list = "users"
universe@184 50 private val form = "user-form"
universe@184 51
universe@209 52 private fun index(http: HttpRequest, dao: DataAccessObject) {
universe@184 53 with(http) {
universe@257 54 view = UsersView(dao.listUsers().map {
universe@257 55 UserViewData(it, dao.collectIssueSummary(it))
universe@257 56 })
universe@184 57 render(list)
universe@184 58 }
universe@184 59 }
universe@184 60
universe@209 61 private fun create(http: HttpRequest, dao: DataAccessObject) {
universe@184 62 with(http) {
universe@184 63 view = UserEditView(User(-1))
universe@184 64 render(form)
universe@184 65 }
universe@184 66 }
universe@184 67
universe@209 68 private fun edit(http: HttpRequest, dao: DataAccessObject) {
universe@184 69 val id = http.pathParams["userid"]?.toIntOrNull()
universe@184 70 if (id == null) {
universe@184 71 http.response.sendError(404)
universe@184 72 } else {
universe@184 73 val user = dao.findUser(id)
universe@184 74 if (user == null) {
universe@184 75 http.response.sendError(404)
universe@184 76 } else {
universe@184 77 with(http) {
universe@184 78 view = UserEditView(user)
universe@184 79 render(form)
universe@184 80 }
universe@184 81 }
universe@184 82 }
universe@184 83 }
universe@184 84
universe@209 85 private fun commit(http: HttpRequest, dao: DataAccessObject) {
universe@184 86 val id = http.param("userid")?.toIntOrNull()
universe@184 87 if (id == null) {
universe@184 88 http.response.sendError(400)
universe@184 89 return
universe@184 90 }
universe@184 91
universe@184 92 val user = User(id)
universe@184 93 with(user) {
universe@184 94 givenname = http.param("givenname")
universe@184 95 lastname = http.param("lastname")
universe@184 96 mail = http.param("mail")
universe@184 97 }
universe@184 98
universe@209 99 if (user.id > 0) {
universe@209 100 dao.updateUser(user)
universe@209 101 http.renderCommit("users/")
universe@209 102 } else {
universe@209 103 val errorMessages = mutableListOf<String>()
universe@210 104 user.username = http.param("username", {
universe@209 105 if (it == null) ValidationError("validation.username.null")
universe@209 106 else if (dao.findUserByName(it) != null) ValidationError("validation.username.unique")
universe@209 107 else ValidatedValue(it)
universe@210 108 }, "", errorMessages)
universe@209 109
universe@210 110 if (errorMessages.isEmpty()) {
universe@209 111 dao.insertUser(user)
universe@209 112 http.renderCommit("users/")
universe@209 113 } else {
universe@209 114 http.view = UserEditView(user).apply { this.errorMessages = errorMessages }
universe@209 115 http.render(form)
universe@184 116 }
universe@184 117 }
universe@184 118 }
universe@184 119 }

mercurial