diff options
author | Joaquim Peixoto <jhcpeixoto@outlook.pt> | 2021-06-25 20:26:34 +0100 |
---|---|---|
committer | Joaquim Peixoto <jhcpeixoto@outlook.pt> | 2021-06-25 20:26:34 +0100 |
commit | 1a62f1dd8e77220bf86526349ae0ac54e0336464 (patch) | |
tree | 30c9f3ac5fa90eaf19adac4de5dbee0432102cbd | |
parent | FIX MKDIR (diff) | |
download | server-1a62f1dd8e77220bf86526349ae0ac54e0336464.tar.xz |
FIXS
-rw-r--r-- | .env.example | 3 | ||||
-rw-r--r-- | src/util/FileStorage.ts | 42 |
2 files changed, 24 insertions, 21 deletions
diff --git a/.env.example b/.env.example new file mode 100644 index 00000000..b5e011f1 --- /dev/null +++ b/.env.example @@ -0,0 +1,3 @@ +STORAGE_LOCATION=files/ +STORAGE_PROVIDER=file +PORT=3003 \ No newline at end of file diff --git a/src/util/FileStorage.ts b/src/util/FileStorage.ts index c6497306..42b32528 100644 --- a/src/util/FileStorage.ts +++ b/src/util/FileStorage.ts @@ -4,27 +4,27 @@ import { join } from "path"; import "missing-native-js-functions"; export class FileStorage implements Storage { - async get(path: string): Promise<Buffer | null> { - path = join(process.env.STORAGE_LOCATION || "", path); - try { - const file = await fs.readFile(path); - // @ts-ignore - return file; - } catch (error) { - return null; - } - } + async get(path: string): Promise<Buffer | null> { + path = join(process.env.STORAGE_LOCATION || "", path); + try { + const file = await fs.readFile(path); + // @ts-ignore + return file; + } catch (error) { + return null; + } + } - async set(path: string, value: any) { - path = join(process.env.STORAGE_LOCATION || "", path).replace(/[\\]/g, "/"); - const dir = path.split("/").slice(0, -1).join("/"); - await fs.mkdir(dir, { recursive: true }).caught(); + async set(path: string, value: any) { + path = join(process.env.STORAGE_LOCATION || "", path).replace(/[\\]/g, "/"); + const dir = path.split("/").slice(0, -1).join("/"); + await fs.mkdir(dir, { recursive: true }).caught(); - return fs.writeFile(path, value, { encoding: "binary" }); - } + return fs.writeFile(path, value, { encoding: "binary" }); + } - async delete(path: string) { - path = join(process.env.STORAGE_LOCATION || "", path); - await fs.unlink(path); - } -} + async delete(path: string) { + path = join(process.env.STORAGE_LOCATION || "", path); + await fs.unlink(path); + } +} \ No newline at end of file |