diff options
author | Marvin Borner | 2020-07-18 22:27:48 +0200 |
---|---|---|
committer | Marvin Borner | 2020-07-18 22:27:48 +0200 |
commit | f8cff89de2ef165748362cf0f104e2bf7bf88618 (patch) | |
tree | 7c64e49d890aa186f9810a512b03c2eef6d7c27d /src/util | |
parent | 317b466e1080166aa6bf40a3766014593cbc95f2 (diff) |
Fileview..
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/files.ts | 43 |
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 }; |