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

Wed, 28 Dec 2022 13:21:30 +0100

author
Mike Becker <universe@uap-core.de>
date
Wed, 28 Dec 2022 13:21:30 +0100
changeset 254
55ca6cafc3dd
parent 247
e71ae69c68c0
child 257
c1be672af7ff
permissions
-rw-r--r--

#233 migrate to Jakarta EE and update dependencies

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@184 35 import de.uapcore.lightpit.viewmodel.UsersView
universe@254 36 import jakarta.servlet.annotation.WebServlet
universe@184 37
universe@184 38 @WebServlet(urlPatterns = ["/users/*"])
universe@247 39 class UsersServlet : AbstractServlet() {
universe@184 40
universe@184 41 init {
universe@184 42 get("/", this::index)
universe@184 43 get("/-/create", this::create)
universe@184 44 get("/%userid/edit", this::edit)
universe@184 45 post("/-/commit", this::commit)
universe@184 46 }
universe@184 47
universe@184 48 private val list = "users"
universe@184 49 private val form = "user-form"
universe@184 50
universe@209 51 private fun index(http: HttpRequest, dao: DataAccessObject) {
universe@184 52 with(http) {
universe@184 53 view = UsersView(dao.listUsers())
universe@184 54 render(list)
universe@184 55 }
universe@184 56 }
universe@184 57
universe@209 58 private fun create(http: HttpRequest, dao: DataAccessObject) {
universe@184 59 with(http) {
universe@184 60 view = UserEditView(User(-1))
universe@184 61 render(form)
universe@184 62 }
universe@184 63 }
universe@184 64
universe@209 65 private fun edit(http: HttpRequest, dao: DataAccessObject) {
universe@184 66 val id = http.pathParams["userid"]?.toIntOrNull()
universe@184 67 if (id == null) {
universe@184 68 http.response.sendError(404)
universe@184 69 } else {
universe@184 70 val user = dao.findUser(id)
universe@184 71 if (user == null) {
universe@184 72 http.response.sendError(404)
universe@184 73 } else {
universe@184 74 with(http) {
universe@184 75 view = UserEditView(user)
universe@184 76 render(form)
universe@184 77 }
universe@184 78 }
universe@184 79 }
universe@184 80 }
universe@184 81
universe@209 82 private fun commit(http: HttpRequest, dao: DataAccessObject) {
universe@184 83 val id = http.param("userid")?.toIntOrNull()
universe@184 84 if (id == null) {
universe@184 85 http.response.sendError(400)
universe@184 86 return
universe@184 87 }
universe@184 88
universe@184 89 val user = User(id)
universe@184 90 with(user) {
universe@184 91 givenname = http.param("givenname")
universe@184 92 lastname = http.param("lastname")
universe@184 93 mail = http.param("mail")
universe@184 94 }
universe@184 95
universe@209 96 if (user.id > 0) {
universe@209 97 dao.updateUser(user)
universe@209 98 http.renderCommit("users/")
universe@209 99 } else {
universe@209 100 val errorMessages = mutableListOf<String>()
universe@210 101 user.username = http.param("username", {
universe@209 102 if (it == null) ValidationError("validation.username.null")
universe@209 103 else if (dao.findUserByName(it) != null) ValidationError("validation.username.unique")
universe@209 104 else ValidatedValue(it)
universe@210 105 }, "", errorMessages)
universe@209 106
universe@210 107 if (errorMessages.isEmpty()) {
universe@209 108 dao.insertUser(user)
universe@209 109 http.renderCommit("users/")
universe@209 110 } else {
universe@209 111 http.view = UserEditView(user).apply { this.errorMessages = errorMessages }
universe@209 112 http.render(form)
universe@184 113 }
universe@184 114 }
universe@184 115 }
universe@184 116 }

mercurial