blob: 49c5ebb2cf073154bb0f7923d8225a4c9c3692e3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
import { walk, ensureDirSync, existsSync } 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);
if (!existsSync(dataPath)) return [];
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
};
|