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

Mon, 02 Aug 2021 17:04:17 +0200

author
Mike Becker <universe@uap-core.de>
date
Mon, 02 Aug 2021 17:04:17 +0200
changeset 207
479dd7993ef9
parent 184
e8eecee6aadf
child 209
c9c6abf167c7
permissions
-rw-r--r--

#22 adds possibility to edit own comments

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@184 28 import de.uapcore.lightpit.AbstractServlet
universe@184 29 import de.uapcore.lightpit.HttpRequest
universe@184 30 import de.uapcore.lightpit.LoggingTrait
universe@184 31 import de.uapcore.lightpit.dao.DataAccessObject
universe@184 32 import de.uapcore.lightpit.entities.User
universe@184 33 import de.uapcore.lightpit.logger
universe@184 34 import de.uapcore.lightpit.viewmodel.UserEditView
universe@184 35 import de.uapcore.lightpit.viewmodel.UsersView
universe@184 36 import javax.servlet.annotation.WebServlet
universe@184 37
universe@184 38 @WebServlet(urlPatterns = ["/users/*"])
universe@184 39 class UsersServlet : AbstractServlet(), LoggingTrait {
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@184 51 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@184 58 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@184 65 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@184 82 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 username = http.param("username") ?: ""
universe@184 92 givenname = http.param("givenname")
universe@184 93 lastname = http.param("lastname")
universe@184 94 mail = http.param("mail")
universe@184 95 }
universe@184 96
universe@184 97 if (dao.findUserByName(user.username) != null) {
universe@184 98 with(http) {
universe@184 99 view = UserEditView(user).apply { errorText = "validation.username.unique" }
universe@184 100 }
universe@184 101 }
universe@184 102
universe@184 103 if (user.id > 0) {
universe@184 104 logger().info("Update user ${user.username} with id ${user.id}.")
universe@184 105 dao.updateUser(user)
universe@184 106 } else {
universe@184 107 logger().info("Insert user ${user.username}.")
universe@184 108 dao.insertUser(user)
universe@184 109 }
universe@184 110 http.renderCommit("users/")
universe@184 111 }
universe@184 112 }

mercurial