diff options
author | Marvin Borner | 2019-04-03 21:43:42 +0200 |
---|---|---|
committer | Marvin Borner | 2019-04-03 21:43:42 +0200 |
commit | e605ac0ecb77e1b260729523bfff2517be8e2389 (patch) | |
tree | f234944b15448ca97609cef48579df8ce1834caf | |
parent | f8f09b016bdd6c93195e87a65afb2d154e399d0f (diff) |
Fixed rocker templating
-rw-r--r-- | build.gradle | 38 | ||||
-rw-r--r-- | src/main/kotlin/App.kt | 63 |
2 files changed, 39 insertions, 62 deletions
diff --git a/build.gradle b/build.gradle index 70d4365..2a504de 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,5 @@ plugins { id 'org.jetbrains.kotlin.jvm' version '1.3.11' - // id "com.fizzed.rocker" version "1.2.1" id 'nu.studer.rocker' version '0.4' id 'java' } @@ -10,55 +9,24 @@ version "1.0-SNAPSHOT" repositories { jcenter() - // mavenCentral() } -/* -sourceSets { - main { - rocker { - srcDir("src/main/resources") - } - } -} -*/ - -rockerVersion = '0.20.0' - rocker { main { optimize = true - templateDir = file('src/resources/views') - outputDir = file('src/resources/compiled-views') - } -} - - -/* -buildscript { - repositories { - mavenLocal() - jcenter() - maven { - url "https://plugins.gradle.org/m2/" - } - } - - dependencies { - classpath "gradle.plugin.com.fizzed:rocker-gradle-plugin:1.2.1" + templateDir = file('src/main/resources/views') + outputDir = file('src/main/resources/compiled-views') } } -*/ dependencies { compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8" compile "io.javalin:javalin:2.8.0" compile "org.slf4j:slf4j-simple:1.7.26" compile "com.fasterxml.jackson.core:jackson-databind:2.9.8" - // compile "com.fizzed:rocker-compiler:0.14.0" compile 'org.jetbrains.exposed:exposed:0.13.2' compile "org.xerial:sqlite-jdbc:3.21.0.1" - // compile group: 'com.fizzed', name: 'rocker-runtime', version: '1.2.1' + compile "org.thymeleaf:thymeleaf:3.0.9.RELEASE" } compileKotlin { diff --git a/src/main/kotlin/App.kt b/src/main/kotlin/App.kt index fe1abef..7e846b6 100644 --- a/src/main/kotlin/App.kt +++ b/src/main/kotlin/App.kt @@ -1,47 +1,42 @@ package space.anity -import com.fizzed.rocker.Rocker +import com.fizzed.rocker.* import io.javalin.* import io.javalin.core.util.* import io.javalin.rendering.* import io.javalin.rendering.template.TemplateUtil.model -import org.jetbrains.exposed.sql.Database -import org.jetbrains.exposed.sql.SchemaUtils -import org.jetbrains.exposed.sql.Table -import org.jetbrains.exposed.sql.transactions.TransactionManager -import org.jetbrains.exposed.sql.transactions.transaction +import org.jetbrains.exposed.sql.* +import org.jetbrains.exposed.sql.transactions.* import java.io.* import java.nio.file.* -import java.sql.Connection +import java.sql.* -fun main(args: Array<String>) { +fun main() { + val app = Javalin.create().enableStaticFiles("../resources/").start(7000) + val fileHome = "files" - // TODO outsource to class - val db : Database = Database.connect("jdbc:sqlite:main.db", "org.sqlite.JDBC") + // TODO: Move to own database class + val db: Database = Database.connect("jdbc:sqlite:main.db", "org.sqlite.JDBC") TransactionManager.manager.defaultIsolationLevel = Connection.TRANSACTION_SERIALIZABLE transaction { SchemaUtils.createMissingTablesAndColumns(FileLocation, UserData, General) } - - val fileHome = "files" - /*JavalinRenderer.register( + JavalinRenderer.register( FileRenderer { filepath, model -> Rocker.template(filepath).bind(model).render().toString() }, ".rocker.html" - )*/ - - val app = Javalin.create().enableStaticFiles("../resources/").start(7000) - + ) // TODO: Fix rocker templating app.get("/test") { ctx -> - val templateTest = Rocker.template("test.rocker.html").bind("message", "Testy testy!").render().toString() - println(templateTest) - // ctx.render("views/test.rocker.html", model("message", "Testy testy!")) + ctx.render("test.rocker.html", model("message", "Testy testy!")) } - // TODO: Fix possible security issue with "../" + /** + * Sends a json object of filenames in [fileHome]s + * TODO: Fix possible security issue with "../" + */ app.get("/api/files/*") { ctx -> val files = ArrayList<String>() try { @@ -57,9 +52,15 @@ fun main(args: Array<String>) { } } + /** + * Redirects to corresponding html file + */ app.get("/upload") { ctx -> ctx.redirect("/views/upload.html") } - // TODO: Fix possible security issue with "../" + /** + * Receives and saves multipart media data + * TODO: Fix possible security issue with "../" + */ app.post("/api/upload") { ctx -> ctx.uploadedFiles("files").forEach { (contentType, content, name, extension) -> if (ctx.queryParam("dir") !== null) { @@ -71,22 +72,30 @@ fun main(args: Array<String>) { } } -// DB tables +/** + * Database table for the file location indexing + */ object FileLocation : Table() { val id = integer("id").autoIncrement().primaryKey() val location = text("location") } +/** + * Database table to index the users with their regarding passwords + */ object UserData : Table() { // only for multiple users: val id = integer("id").autoIncrement().primaryKey() - val uname = varchar("uname", 24).primaryKey() // remove if ID - val pwd = varchar("pwd", 64) + val username = varchar("username", 24).primaryKey() // remove if ID + val password = varchar("password", 64) } +/** + * Database table storing general data/states + */ object General : Table() { // redundant: val id = integer("id").autoIncrement().primaryKey() - val isSetup = integer("isSetup").primaryKey() // remove pKey if ID // boolean -> 0:1 - // TODO if not isSetup show other front page + val initialUse = integer("initialUse").primaryKey() // remove pKey if ID // boolean -> 0:1 + // TODO: If not isSetup show other front page } |