summaryrefslogtreecommitdiff
path: root/src/services/drive/internal-storage.ts
blob: ff890d7d471a28c9805dd442c7078a303c6a04dd (plain)
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
import * as fs from 'fs';
import * as Path from 'path';
import config from '../../config';

export class InternalStorage {
	private static readonly path = Path.resolve(`${__dirname}/../../../files`);

	public static read(key: string) {
		return fs.createReadStream(`${InternalStorage.path}/${key}`);
	}

	public static saveFromPath(key: string, srcPath: string) {
		fs.mkdirSync(InternalStorage.path, { recursive: true });
		fs.copyFileSync(srcPath, `${InternalStorage.path}/${key}`);
		return `${config.url}/files/${key}`;
	}

	public static saveFromBuffer(key: string, data: Buffer) {
		fs.mkdirSync(InternalStorage.path, { recursive: true });
		fs.writeFileSync(`${InternalStorage.path}/${key}`, data);
		return `${config.url}/files/${key}`;
	}

	public static del(key: string) {
		fs.unlink(`${InternalStorage.path}/${key}`, () => {});
	}
}