diff options
author | Marvin Borner | 2019-04-10 17:48:14 +0200 |
---|---|---|
committer | Marvin Borner | 2019-04-10 17:48:14 +0200 |
commit | cf0c64c6445f618cd8cf523d37e455ba669c5d69 (patch) | |
tree | e4259d622f8265123d2556edfb6f7266917b4a53 /src/main/kotlin/App.kt | |
parent | a177d54b4bde907ca5b155a5fb1541402e494218 (diff) |
Added basic setup page
Diffstat (limited to 'src/main/kotlin/App.kt')
-rw-r--r-- | src/main/kotlin/App.kt | 48 |
1 files changed, 39 insertions, 9 deletions
diff --git a/src/main/kotlin/App.kt b/src/main/kotlin/App.kt index cf44bd2..31fdae7 100644 --- a/src/main/kotlin/App.kt +++ b/src/main/kotlin/App.kt @@ -13,6 +13,7 @@ import io.javalin.security.SecurityUtil.roles import java.io.* import java.nio.charset.* import java.nio.file.* +import java.util.* import java.util.logging.* const val fileHome = "files" @@ -38,15 +39,7 @@ fun main() { * Main page * TODO: Create landing page */ - get("/", { ctx -> - //if (/* check if logged in*/) { - ctx.render("index.rocker.html") - // } else if (databaseController.isInitialUse()){ - // TODO: Render setup template - // } else { - // TODO: Render login template - //} - }, roles(Roles.GUEST)) + get("/", { ctx -> ctx.render("index.rocker.html") }, roles(Roles.GUEST)) /** * Renders the login page @@ -63,6 +56,22 @@ fun main() { post("/login", { ctx -> login(ctx) }, roles(Roles.GUEST)) // TODO: brute-force protection /** + * Renders the setup page (only on initial use) + */ + get("/setup", { ctx -> + if (databaseController.isSetup()) ctx.redirect("/") + else ctx.render( + "setup.rocker.html", + model("message", "") + ) + }, roles(Roles.GUEST)) + + /** + * Endpoint for setup (only on initial use) + */ + post("/setup", { ctx -> setup(ctx) }, roles(Roles.GUEST)) + + /** * Sends a json object of filenames in [fileHome]s * TODO: Fix possible security issue with "../" */ @@ -175,6 +184,9 @@ private fun isHumanReadable(filePath: String): Boolean { return d > 0.95 } +/** + * Checks and verifies users credentials and logs the user in + */ fun login(ctx: Context) { val username = ctx.formParam("username").toString() val password = ctx.formParam("password").toString() @@ -187,6 +199,24 @@ fun login(ctx: Context) { ctx.render("login.rocker.html", model("message", "Login failed!")) } +/** + * Sets up the general settings and admin credentials + */ +fun setup(ctx: Context) { + try { + val username = ctx.formParam("username").toString() + val password = ctx.formParam("password").toString() + val verifyPassword = ctx.formParam("verifyPassword").toString() + if (password == verifyPassword) { + if (databaseController.createUser(username, password, "ADMIN")) { + databaseController.toggleSetup() + ctx.render("setup.rocker.html", model("message", "Setup succeeded!")) + } else ctx.status(400).render("setup.rocker.html", model("message", "User already exists!")) + } else ctx.status(400).render("setup.rocker.html", model("message", "Passwords do not match!")) + } catch (_: Exception) { + ctx.status(400).render("setup.rocker.html", model("message", "An error occurred!")) + } +} /** * Declares the roles in which a user can be in |