aboutsummaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
authorMarvin Borner2020-07-18 22:27:48 +0200
committerMarvin Borner2020-07-18 22:27:48 +0200
commitf8cff89de2ef165748362cf0f104e2bf7bf88618 (patch)
tree7c64e49d890aa186f9810a512b03c2eef6d7c27d /src/util
parent317b466e1080166aa6bf40a3766014593cbc95f2 (diff)
Fileview..
Diffstat (limited to 'src/util')
-rw-r--r--src/util/files.ts43
1 files changed, 37 insertions, 6 deletions
diff --git a/src/util/files.ts b/src/util/files.ts
index ec1f584..e516258 100644
--- a/src/util/files.ts
+++ b/src/util/files.ts
@@ -1,7 +1,38 @@
-export const cleanPath = (path: string) => {
- return path
- .replace("/files/", "")
- .replace("../", "") // TODO: Fix relative ../
- .replace("./", "")
- .replace(/([^:]\/)\/+/g, "$1");
+import { ensureDirSync } from "https://deno.land/std/fs/mod.ts";
+import { walk } from "https://deno.land/std/fs/mod.ts";
+
+const TEMP_USER_ID = 42; // TODO: FIX
+
+export const cleanPath = (path: string): string => {
+ createUserDirectory(TEMP_USER_ID);
+
+ return (
+ "data/" +
+ TEMP_USER_ID +
+ "/" +
+ path
+ .replace("/files/", "")
+ .replace("../", "") // TODO: Fix relative ../
+ .replace("./", "")
+ .replace(/([^:]\/)\/+/g, "$1")
+ );
+};
+
+export const getFiles = async (path: string) => {
+ const newPath = path ? path : "";
+
+ createUserDirectory(TEMP_USER_ID);
+ const dataPath: string = cleanPath(newPath);
+ console.log(dataPath);
+
+ const files = [];
+ for await (const entry of walk(dataPath)) {
+ files.push(entry.path);
+ }
+ return files;
+};
+
+export const createUserDirectory = (uid: number) => {
+ ensureDirSync("data/" + uid);
+ // TODO: Give user access to dir
};