aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/App.kt
diff options
context:
space:
mode:
authorMarvin Borner2019-04-07 13:01:13 +0200
committerMarvin Borner2019-04-07 13:01:13 +0200
commitea6d0b7176fb2133f170421666f410dfce20ca31 (patch)
tree34ef84d06ef6f1687c6f09b3cd7bb187120c3579 /src/main/kotlin/App.kt
parent05f73150bc060dc9dc52e34da6323a38c433e118 (diff)
Updated documentation
Diffstat (limited to 'src/main/kotlin/App.kt')
-rw-r--r--src/main/kotlin/App.kt11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/main/kotlin/App.kt b/src/main/kotlin/App.kt
index f080357..34bdc4b 100644
--- a/src/main/kotlin/App.kt
+++ b/src/main/kotlin/App.kt
@@ -16,7 +16,7 @@ import java.util.logging.*
const val fileHome = "files"
val databaseController = DatabaseController()
-val LOG = Logger.getLogger("App.kt")
+private val log = Logger.getLogger("App.kt")
fun main() {
val app = Javalin.create()
@@ -30,8 +30,7 @@ fun main() {
FileRenderer { filepath, model -> Rocker.template(filepath).bind(model).render().toString() }, ".rocker.html"
)
-
- // db test
+ // Only for testing purposes
databaseController.createUser("melvin", "supersecure", "ADMIN")
app.routes {
@@ -54,6 +53,9 @@ fun main() {
}
}
+/**
+ * Sets up the roles with the database and declares the handling of roles
+ */
fun setupRoles(handler: Handler, ctx: Context, permittedRoles: Set<Role>) {
val userRole = databaseController.getUser("melvin")[0].second
when {
@@ -106,6 +108,9 @@ fun upload(ctx: Context) {
}
}
+/**
+ * Declares the roles in which a user can be in
+ */
enum class Roles : Role {
ADMIN, USER, GUEST
}