From c88b980118b6bc99d631e35c332596848da4ff37 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Tue, 9 Apr 2019 22:27:07 +0200 Subject: Rewritten database layout and permission/role management --- src/main/kotlin/App.kt | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) (limited to 'src/main/kotlin/App.kt') diff --git a/src/main/kotlin/App.kt b/src/main/kotlin/App.kt index c8d2bf8..9cba0db 100644 --- a/src/main/kotlin/App.kt +++ b/src/main/kotlin/App.kt @@ -31,15 +31,25 @@ fun main() { FileRenderer { filepath, model -> Rocker.template(filepath).bind(model).render().toString() }, ".rocker.html" ) - // Only for testing purposes - databaseController.createUser("melvin", "supersecure", "ADMIN") + databaseController.initDatabase() app.routes { /** * Main page * TODO: Create landing page */ - get("/", { ctx -> ctx.render("index.rocker.html") }, roles(Roles.GUEST)) + 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("/login", { ctx -> ctx.render("login.rocker.html") }, roles(Roles.GUEST)) + //post("/login", { ctx -> login(ctx) }) /** * Sends a json object of filenames in [fileHome]s @@ -72,6 +82,11 @@ fun setupRoles(handler: Handler, ctx: Context, permittedRoles: Set) { } } +/*private val Context.userRoles: List + get() = this.basicAuthCredentials()?.let { (username, password) -> + userRoleMap[Pair(username, password)] ?: listOf() + } ?: listOf()*/ + /** * Crawls the requested file and either renders the directory view or the file view */ @@ -118,6 +133,7 @@ fun crawlFiles(ctx: Context) { fun upload(ctx: Context) { ctx.uploadedFiles("file").forEach { (contentType, content, name, extension) -> FileUtil.streamToFile(content, "$fileHome/${ctx.splats()[0]}/$name") + // databaseController.addFile("$fileHome/${ctx.splats()[0]}/$name", USER???: get by Session) ctx.redirect("/upload") } } @@ -142,6 +158,7 @@ private fun isHumanReadable(filePath: String): Boolean { return d > 0.95 } + /** * Declares the roles in which a user can be in */ -- cgit v1.2.3