aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarvin Borner2019-04-03 22:39:03 +0200
committerMarvin Borner2019-04-03 22:39:03 +0200
commit390db9229b2aaa0a6ca7a920e4901b581ba917e2 (patch)
tree745d925f39e685257f333cce0f5e83c08a3d5eef
parent560bdf297f353959c3ec7a667d6d33ab6f0db05a (diff)
Added fileview
-rw-r--r--src/main/kotlin/App.kt25
-rw-r--r--src/main/resources/compiled-views/files.java41
-rw-r--r--src/main/resources/compiled-views/fileview.java103
-rw-r--r--src/main/resources/views/files.rocker.html2
-rw-r--r--src/main/resources/views/fileview.rocker.html17
5 files changed, 164 insertions, 24 deletions
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<String>()
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 {
- // <li>
+ // <a href=\"
static private final byte[] PLAIN_TEXT_0_0;
- // </li>\n
+ // \">
static private final byte[] PLAIN_TEXT_1_0;
+ // </a><br>\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 = "<li>";
- static private final String PLAIN_TEXT_1_0 = "</li>\n";
+ static private final String PLAIN_TEXT_0_0 = " <a href=\"";
+ static private final String PLAIN_TEXT_1_0 = "\">";
+ static private final String PLAIN_TEXT_2_0 = "</a><br>\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 {
+
+ // <!doctype html>\n<html lang=\"en\">\n<head>\n <meta charset=\"UTF-8\">\n <meta name=\"viewport\"\n content=\"width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n <title>Fileview</title>\n</head>\n<body>\n<textarea disabled style=\"border: none; background-color: white; width: 100vw; height: 100vh\">\n
+ static private final byte[] PLAIN_TEXT_0_0;
+ // \n</textarea>\n</body>\n</html>\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 = "<!doctype html>\n<html lang=\"en\">\n<head>\n <meta charset=\"UTF-8\">\n <meta name=\"viewport\"\n content=\"width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n <title>Fileview</title>\n</head>\n<body>\n<textarea disabled style=\"border: none; background-color: white; width: 100vw; height: 100vh\">\n ";
+ static private final String PLAIN_TEXT_1_0 = "\n</textarea>\n</body>\n</html>\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) {
-<li>@file</li>
+<a href="@file">@file</a><br>
}
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)
+
+<!doctype html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <meta content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
+ name="viewport">
+ <meta content="ie=edge" http-equiv="X-UA-Compatible">
+ <title>Fileview</title>
+</head>
+<body>
+<textarea disabled style="border: none; background-color: white; width: 100vw; height: 100vh">
+ @content
+</textarea>
+</body>
+</html>