diff options
author | Marvin Borner | 2019-04-09 22:27:07 +0200 |
---|---|---|
committer | Marvin Borner | 2019-04-09 22:27:07 +0200 |
commit | c88b980118b6bc99d631e35c332596848da4ff37 (patch) | |
tree | 44dd489842a842034452ea175a2defa167003693 /src/main/kotlin/App.kt | |
parent | 0ad8902e240b89e02eded01cd151a986d39868a9 (diff) |
Rewritten database layout and permission/role management
Diffstat (limited to 'src/main/kotlin/App.kt')
-rw-r--r-- | src/main/kotlin/App.kt | 23 |
1 files changed, 20 insertions, 3 deletions
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<Role>) { } } +/*private val Context.userRoles: List<Roles> + 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 */ |