diff options
author | Marvin Borner | 2019-04-02 22:25:14 +0200 |
---|---|---|
committer | Marvin Borner | 2019-04-02 22:25:14 +0200 |
commit | 644fcfd8f97c90180485e686d0b593efb986541e (patch) | |
tree | d3c998686e7a595487ab2619652033c71e2711e7 | |
parent | 4aeb6a0ec4c2e51f9d618639f2b0edf6e63da73f (diff) |
Tried implementing rocker templating engine
-rw-r--r-- | build.gradle | 50 | ||||
-rw-r--r-- | build.gradle.kts | 24 | ||||
-rw-r--r-- | src/main/kotlin/App.kt | 15 | ||||
-rw-r--r-- | src/main/resources/test.rocker.html | 2 | ||||
-rw-r--r-- | src/main/resources/upload.html | 2 |
5 files changed, 66 insertions, 27 deletions
diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..7269324 --- /dev/null +++ b/build.gradle @@ -0,0 +1,50 @@ +plugins { + id 'org.jetbrains.kotlin.jvm' version '1.3.11' + id "com.fizzed.rocker" version "1.2.1" + id 'java' +} + +group "space.anity" +version "1.0-SNAPSHOT" + +repositories { + jcenter() + mavenCentral() +} + +sourceSets { + main { + rocker { + srcDir('src/main/kotlin') + } + } +} + +buildscript { + repositories { + mavenLocal() + jcenter() + maven { + url "https://plugins.gradle.org/m2/" + } + } + + dependencies { + classpath "gradle.plugin.com.fizzed:rocker-gradle-plugin:1.2.1" + } +} + +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" +} + +compileKotlin { + kotlinOptions.jvmTarget = "1.8" +} +compileTestKotlin { + kotlinOptions.jvmTarget = "1.8" +} diff --git a/build.gradle.kts b/build.gradle.kts deleted file mode 100644 index c7c5219..0000000 --- a/build.gradle.kts +++ /dev/null @@ -1,24 +0,0 @@ -import org.jetbrains.kotlin.gradle.tasks.KotlinCompile - -plugins { - kotlin("jvm") version "1.3.11" -} - -group = "space.anity" -version = "1.0-SNAPSHOT" - -repositories { - mavenCentral() -} - -dependencies { - compile(kotlin("stdlib-jdk8")) - compile("io.javalin:javalin:2.8.0") - compile("org.slf4j:slf4j-simple:1.7.26") - compile(kotlin("script-runtime")) - compile("com.fasterxml.jackson.core:jackson-databind:2.9.8") -} - -tasks.withType<KotlinCompile> { - kotlinOptions.jvmTarget = "1.8" -} diff --git a/src/main/kotlin/App.kt b/src/main/kotlin/App.kt index d7467a4..b5d6042 100644 --- a/src/main/kotlin/App.kt +++ b/src/main/kotlin/App.kt @@ -1,16 +1,27 @@ package space.anity +import com.fizzed.rocker.* import io.javalin.* import io.javalin.core.util.* +import io.javalin.rendering.* +import io.javalin.rendering.template.TemplateUtil.model import java.io.* import java.nio.file.* fun main(args: Array<String>) { val fileHome = "files" + 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 -> + ctx.render("test.rocker.html", model("message", "Testy testy!")) + } + // TODO: Fix possible security issue with "../" - app.get("/files/*") { ctx -> + app.get("/api/files/*") { ctx -> val files = ArrayList<String>() try { Files.list(Paths.get("$fileHome/${ctx.splats()[0]}/")).forEach { @@ -28,7 +39,7 @@ fun main(args: Array<String>) { app.get("/upload") { ctx -> ctx.redirect("/upload.html") } // TODO: Fix possible security issue with "../" - app.post("/upload") { ctx -> + app.post("/api/upload") { ctx -> ctx.uploadedFiles("files").forEach { (contentType, content, name, extension) -> if (ctx.queryParam("dir") !== null) { FileUtil.streamToFile(content, "files/${ctx.queryParam("dir")}/$name") diff --git a/src/main/resources/test.rocker.html b/src/main/resources/test.rocker.html new file mode 100644 index 0000000..8deedcd --- /dev/null +++ b/src/main/resources/test.rocker.html @@ -0,0 +1,2 @@ +@args (String message) +<h1>@message</h1> diff --git a/src/main/resources/upload.html b/src/main/resources/upload.html index 550f841..16c8a94 100644 --- a/src/main/resources/upload.html +++ b/src/main/resources/upload.html @@ -8,7 +8,7 @@ <title>Upload Testing</title> </head> <body> -<form action="/upload?dir=test" enctype="multipart/form-data" method="post"> +<form action="/api/upload?dir=test" enctype="multipart/form-data" method="post"> <input multiple name="files" type="file"> <button>Submit</button> </form> |