diff options
author | Marvin Borner | 2019-04-03 21:54:47 +0200 |
---|---|---|
committer | Marvin Borner | 2019-04-03 21:54:47 +0200 |
commit | 560bdf297f353959c3ec7a667d6d33ab6f0db05a (patch) | |
tree | 9e4a0ed2e2257d6a47ae3b5a5e113640d08f0292 | |
parent | e605ac0ecb77e1b260729523bfff2517be8e2389 (diff) |
Added basic file listing view
-rw-r--r-- | src/main/kotlin/App.kt | 11 | ||||
-rw-r--r-- | src/main/resources/compiled-views/files.java | 121 | ||||
-rw-r--r-- | src/main/resources/views/files.rocker.html | 4 | ||||
-rw-r--r-- | src/main/resources/views/test.rocker.html | 2 |
4 files changed, 128 insertions, 10 deletions
diff --git a/src/main/kotlin/App.kt b/src/main/kotlin/App.kt index 7e846b6..02f1999 100644 --- a/src/main/kotlin/App.kt +++ b/src/main/kotlin/App.kt @@ -28,16 +28,11 @@ fun main() { FileRenderer { filepath, model -> Rocker.template(filepath).bind(model).render().toString() }, ".rocker.html" ) - // TODO: Fix rocker templating - app.get("/test") { ctx -> - ctx.render("test.rocker.html", model("message", "Testy testy!")) - } - /** * Sends a json object of filenames in [fileHome]s * TODO: Fix possible security issue with "../" */ - app.get("/api/files/*") { ctx -> + app.get("/files/*") { ctx -> val files = ArrayList<String>() try { Files.list(Paths.get("$fileHome/${ctx.splats()[0]}/")).forEach { @@ -46,7 +41,7 @@ fun main() { val filePath = "$fileHome${it.toString().drop(fileHome.length)}" files.add(if (File(filePath).isDirectory) "$fileName/" else fileName) } - ctx.json(files) + ctx.render("files.rocker.html", model("files", files)) } catch (_: java.nio.file.NoSuchFileException) { throw NotFoundResponse("Error: File or directory does not exist.") } @@ -61,7 +56,7 @@ fun main() { * Receives and saves multipart media data * TODO: Fix possible security issue with "../" */ - app.post("/api/upload") { ctx -> + app.post("/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/compiled-views/files.java b/src/main/resources/compiled-views/files.java new file mode 100644 index 0000000..2c3f640 --- /dev/null +++ b/src/main/resources/compiled-views/files.java @@ -0,0 +1,121 @@ +
+import com.fizzed.rocker.RenderingException;
+import com.fizzed.rocker.runtime.DefaultRockerTemplate;
+import com.fizzed.rocker.runtime.PlainTextUnloadedClassLoader;
+
+import java.io.IOException;
+import java.util.ArrayList;
+
+/*
+ * Auto generated code to render template /files.rocker.html
+ * Do not edit this file. Changes will eventually be overwritten by Rocker parser!
+ */
+@SuppressWarnings("unused")
+public class files extends com.fizzed.rocker.runtime.DefaultRockerModel {
+
+ // argument @ [1:2]
+ private ArrayList files;
+
+ static public com.fizzed.rocker.ContentType getContentType() {
+ return com.fizzed.rocker.ContentType.HTML;
+ }
+
+ static public String getTemplateName() {
+ return "files.rocker.html";
+ }
+
+ static public String getTemplatePackageName() {
+ return "";
+ }
+
+ static public String getHeaderHash() {
+ return "-1618097059";
+ }
+
+ static public String[] getArgumentNames() {
+ return new String[]{"files"};
+ }
+
+ static public files template(ArrayList files) {
+ return new files()
+ .files(files);
+ }
+
+ public files files(ArrayList files) {
+ this.files = files;
+ return this;
+ }
+
+ public ArrayList files() {
+ return this.files;
+ }
+
+ @Override
+ protected DefaultRockerTemplate buildTemplate() throws RenderingException {
+ // optimized for performance (via rocker.optimize flag; no auto reloading)
+ return new Template(this);
+ }
+
+ static public class Template extends com.fizzed.rocker.runtime.DefaultRockerTemplate {
+
+ // <li>
+ static private final byte[] PLAIN_TEXT_0_0;
+ // </li>\n
+ static private final byte[] PLAIN_TEXT_1_0;
+
+ static {
+ PlainTextUnloadedClassLoader loader = PlainTextUnloadedClassLoader.tryLoad(files.class.getClassLoader(), files.class.getName() + "$PlainText", "UTF-8");
+ PLAIN_TEXT_0_0 = loader.tryGet("PLAIN_TEXT_0_0");
+ PLAIN_TEXT_1_0 = loader.tryGet("PLAIN_TEXT_1_0");
+ }
+
+ // argument @ [1:2]
+ protected final ArrayList files;
+
+ public Template(files model) {
+ super(model);
+ __internal.setCharset("UTF-8");
+ __internal.setContentType(getContentType());
+ __internal.setTemplateName(getTemplateName());
+ __internal.setTemplatePackageName(getTemplatePackageName());
+ this.files = model.files();
+ }
+
+ @Override
+ protected void __doRender() throws IOException, RenderingException {
+ // ForBlockBegin @ [2:1]
+ __internal.aboutToExecutePosInTemplate(2, 1);
+ try {
+ final com.fizzed.rocker.runtime.IterableForIterator<String> __forIterator0 = new com.fizzed.rocker.runtime.IterableForIterator<String>(files);
+ while (__forIterator0.hasNext()) {
+ final String file = __forIterator0.next();
+ try {
+ // PlainText @ [2:29]
+ __internal.aboutToExecutePosInTemplate(2, 29);
+ __internal.writeValue(PLAIN_TEXT_0_0);
+ // ValueExpression @ [3:5]
+ __internal.aboutToExecutePosInTemplate(3, 5);
+ __internal.renderValue(file, false);
+ // PlainText @ [3:10]
+ __internal.aboutToExecutePosInTemplate(3, 10);
+ __internal.writeValue(PLAIN_TEXT_1_0);
+ // ForBlockEnd @ [2:1]
+ __internal.aboutToExecutePosInTemplate(2, 1);
+ } catch (com.fizzed.rocker.runtime.ContinueException e) {
+ // support for continuing for loops
+ }
+ } // for end @ [2:1]
+ } catch (com.fizzed.rocker.runtime.BreakException e) {
+ // support for breaking for loops
+ }
+ }
+ }
+
+ private static class PlainText {
+
+ static private final String PLAIN_TEXT_0_0 = "<li>";
+ static private final String PLAIN_TEXT_1_0 = "</li>\n";
+
+ }
+
+}
diff --git a/src/main/resources/views/files.rocker.html b/src/main/resources/views/files.rocker.html new file mode 100644 index 0000000..6562be3 --- /dev/null +++ b/src/main/resources/views/files.rocker.html @@ -0,0 +1,4 @@ +@args (ArrayList files) +@for (String file : files) { +<li>@file</li> +} diff --git a/src/main/resources/views/test.rocker.html b/src/main/resources/views/test.rocker.html deleted file mode 100644 index 8deedcd..0000000 --- a/src/main/resources/views/test.rocker.html +++ /dev/null @@ -1,2 +0,0 @@ -@args (String message) -<h1>@message</h1> |