From 390db9229b2aaa0a6ca7a920e4901b581ba917e2 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 3 Apr 2019 22:39:03 +0200 Subject: Added fileview --- src/main/kotlin/App.kt | 25 ++++-- src/main/resources/compiled-views/files.java | 41 ++++++---- src/main/resources/compiled-views/fileview.java | 103 ++++++++++++++++++++++++ src/main/resources/views/files.rocker.html | 2 +- src/main/resources/views/fileview.rocker.html | 17 ++++ 5 files changed, 164 insertions(+), 24 deletions(-) create mode 100644 src/main/resources/compiled-views/fileview.java create mode 100644 src/main/resources/views/fileview.rocker.html diff --git a/src/main/kotlin/App.kt b/src/main/kotlin/App.kt index 02f1999..87055a1 100644 --- a/src/main/kotlin/App.kt +++ b/src/main/kotlin/App.kt @@ -35,13 +35,24 @@ fun main() { app.get("/files/*") { ctx -> val files = ArrayList() try { - Files.list(Paths.get("$fileHome/${ctx.splats()[0]}/")).forEach { - val fileName = it.toString() - .drop(fileHome.length + (if (ctx.splats()[0].isNotEmpty()) ctx.splats()[0].length + 2 else 1)) - val filePath = "$fileHome${it.toString().drop(fileHome.length)}" - files.add(if (File(filePath).isDirectory) "$fileName/" else fileName) - } - ctx.render("files.rocker.html", model("files", files)) + if (File("$fileHome/${ctx.splats()[0]}").isDirectory) { + Files.list(Paths.get("$fileHome/${ctx.splats()[0]}/")).forEach { + val fileName = it.toString() + .drop(fileHome.length + (if (ctx.splats()[0].isNotEmpty()) ctx.splats()[0].length + 2 else 1)) + val filePath = "$fileHome${it.toString().drop(fileHome.length)}" + files.add(if (File(filePath).isDirectory) "$fileName/" else fileName) + ctx.render("files.rocker.html", model("files", files)) + } + } else + // TODO: Fix square brackets at fileview content + ctx.render( + "fileview.rocker.html", model( + "content", Files.readAllLines( + Paths.get("$fileHome/${ctx.splats()[0]}"), + Charsets.UTF_8 + ).toString() + ) + ) } catch (_: java.nio.file.NoSuchFileException) { throw NotFoundResponse("Error: File or directory does not exist.") } diff --git a/src/main/resources/compiled-views/files.java b/src/main/resources/compiled-views/files.java index 2c3f640..2643e92 100644 --- a/src/main/resources/compiled-views/files.java +++ b/src/main/resources/compiled-views/files.java @@ -1,4 +1,3 @@ - import com.fizzed.rocker.RenderingException; import com.fizzed.rocker.runtime.DefaultRockerTemplate; import com.fizzed.rocker.runtime.PlainTextUnloadedClassLoader; @@ -13,9 +12,6 @@ import java.util.ArrayList; @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; } @@ -36,10 +32,8 @@ public class files extends com.fizzed.rocker.runtime.DefaultRockerModel { return new String[]{"files"}; } - static public files template(ArrayList files) { - return new files() - .files(files); - } + // argument @ [1:2] + private ArrayList files; public files files(ArrayList files) { this.files = files; @@ -50,6 +44,11 @@ public class files extends com.fizzed.rocker.runtime.DefaultRockerModel { return this.files; } + static public files template(ArrayList files) { + return new files() + .files(files); + } + @Override protected DefaultRockerTemplate buildTemplate() throws RenderingException { // optimized for performance (via rocker.optimize flag; no auto reloading) @@ -58,15 +57,18 @@ public class files extends com.fizzed.rocker.runtime.DefaultRockerModel { static public class Template extends com.fizzed.rocker.runtime.DefaultRockerTemplate { - //
  • + // \n + // \"> static private final byte[] PLAIN_TEXT_1_0; + //
    \n + static private final byte[] PLAIN_TEXT_2_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"); + PLAIN_TEXT_2_0 = loader.tryGet("PLAIN_TEXT_2_0"); } // argument @ [1:2] @@ -93,12 +95,18 @@ public class files extends com.fizzed.rocker.runtime.DefaultRockerModel { // PlainText @ [2:29] __internal.aboutToExecutePosInTemplate(2, 29); __internal.writeValue(PLAIN_TEXT_0_0); - // ValueExpression @ [3:5] - __internal.aboutToExecutePosInTemplate(3, 5); + // ValueExpression @ [3:14] + __internal.aboutToExecutePosInTemplate(3, 14); __internal.renderValue(file, false); - // PlainText @ [3:10] - __internal.aboutToExecutePosInTemplate(3, 10); + // PlainText @ [3:19] + __internal.aboutToExecutePosInTemplate(3, 19); __internal.writeValue(PLAIN_TEXT_1_0); + // ValueExpression @ [3:21] + __internal.aboutToExecutePosInTemplate(3, 21); + __internal.renderValue(file, false); + // PlainText @ [3:26] + __internal.aboutToExecutePosInTemplate(3, 26); + __internal.writeValue(PLAIN_TEXT_2_0); // ForBlockEnd @ [2:1] __internal.aboutToExecutePosInTemplate(2, 1); } catch (com.fizzed.rocker.runtime.ContinueException e) { @@ -113,8 +121,9 @@ public class files extends com.fizzed.rocker.runtime.DefaultRockerModel { private static class PlainText { - static private final String PLAIN_TEXT_0_0 = "
  • "; - static private final String PLAIN_TEXT_1_0 = "
  • \n"; + static private final String PLAIN_TEXT_0_0 = " "; + static private final String PLAIN_TEXT_2_0 = "
    \n"; } diff --git a/src/main/resources/compiled-views/fileview.java b/src/main/resources/compiled-views/fileview.java new file mode 100644 index 0000000..d17eae2 --- /dev/null +++ b/src/main/resources/compiled-views/fileview.java @@ -0,0 +1,103 @@ +import com.fizzed.rocker.RenderingException; +import com.fizzed.rocker.runtime.DefaultRockerTemplate; +import com.fizzed.rocker.runtime.PlainTextUnloadedClassLoader; + +import java.io.IOException; + +/* + * Auto generated code to render template /fileview.rocker.html + * Do not edit this file. Changes will eventually be overwritten by Rocker parser! + */ +@SuppressWarnings("unused") +public class fileview extends com.fizzed.rocker.runtime.DefaultRockerModel { + + // argument @ [1:2] + private String content; + + static public com.fizzed.rocker.ContentType getContentType() { + return com.fizzed.rocker.ContentType.HTML; + } + + static public String getTemplateName() { + return "fileview.rocker.html"; + } + + static public String getTemplatePackageName() { + return ""; + } + + static public String getHeaderHash() { + return "868254209"; + } + + static public String[] getArgumentNames() { + return new String[]{"content"}; + } + + static public fileview template(String content) { + return new fileview() + .content(content); + } + + public fileview content(String content) { + this.content = content; + return this; + } + + public String content() { + return this.content; + } + + @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 { + + // \n\n\n \n \n \n Fileview\n\n\n\n\n\n + static private final byte[] PLAIN_TEXT_1_0; + + static { + PlainTextUnloadedClassLoader loader = PlainTextUnloadedClassLoader.tryLoad(fileview.class.getClassLoader(), fileview.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 String content; + + public Template(fileview model) { + super(model); + __internal.setCharset("UTF-8"); + __internal.setContentType(getContentType()); + __internal.setTemplateName(getTemplateName()); + __internal.setTemplatePackageName(getTemplatePackageName()); + this.content = model.content(); + } + + @Override + protected void __doRender() throws IOException, RenderingException { + // PlainText @ [1:23] + __internal.aboutToExecutePosInTemplate(1, 23); + __internal.writeValue(PLAIN_TEXT_0_0); + // ValueExpression @ [14:5] + __internal.aboutToExecutePosInTemplate(14, 5); + __internal.renderValue(content, false); + // PlainText @ [14:13] + __internal.aboutToExecutePosInTemplate(14, 13); + __internal.writeValue(PLAIN_TEXT_1_0); + } + } + + private static class PlainText { + + static private final String PLAIN_TEXT_0_0 = "\n\n\n \n \n \n Fileview\n\n\n\n\n\n"; + + } + +} diff --git a/src/main/resources/views/files.rocker.html b/src/main/resources/views/files.rocker.html index 6562be3..16eab38 100644 --- a/src/main/resources/views/files.rocker.html +++ b/src/main/resources/views/files.rocker.html @@ -1,4 +1,4 @@ @args (ArrayList files) @for (String file : files) { -
  • @file
  • +@file
    } diff --git a/src/main/resources/views/fileview.rocker.html b/src/main/resources/views/fileview.rocker.html new file mode 100644 index 0000000..910bdf2 --- /dev/null +++ b/src/main/resources/views/fileview.rocker.html @@ -0,0 +1,17 @@ +@args (String content) + + + + + + + + Fileview + + + + + -- cgit v1.2.3