* chore: 著作権とライセンスについての情報を各ファイルに追加する * chore: Add the SPDX information to each file Add copyright and licensing information as defined in version 3.0 of the REUSE Specification. * tweak format --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp> * chore: Add SPDX-License-Identifier [skip ci] * add missing SPDX-License-Identifier * remove unused file --------- Co-authored-by: Shun Sakai <sorairolake@protonmail.ch> Co-authored-by: syuilo <Syuilotan@yahoo.co.jp> Co-authored-by: Chocolate Pie <106949016+chocolate-pie@users.noreply.github.com>
56 lines
1.4 KiB
TypeScript
56 lines
1.4 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import * as fs from 'node:fs';
|
|
import * as Path from 'node:path';
|
|
import { fileURLToPath } from 'node:url';
|
|
import { dirname } from 'node:path';
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
import { DI } from '@/di-symbols.js';
|
|
import type { Config } from '@/config.js';
|
|
import { bindThis } from '@/decorators.js';
|
|
|
|
const _filename = fileURLToPath(import.meta.url);
|
|
const _dirname = dirname(_filename);
|
|
|
|
const path = Path.resolve(_dirname, '../../../../files');
|
|
|
|
@Injectable()
|
|
export class InternalStorageService {
|
|
constructor(
|
|
@Inject(DI.config)
|
|
private config: Config,
|
|
) {
|
|
}
|
|
|
|
@bindThis
|
|
public resolvePath(key: string) {
|
|
return Path.resolve(path, key);
|
|
}
|
|
|
|
@bindThis
|
|
public read(key: string) {
|
|
return fs.createReadStream(this.resolvePath(key));
|
|
}
|
|
|
|
@bindThis
|
|
public saveFromPath(key: string, srcPath: string) {
|
|
fs.mkdirSync(path, { recursive: true });
|
|
fs.copyFileSync(srcPath, this.resolvePath(key));
|
|
return `${this.config.url}/files/${key}`;
|
|
}
|
|
|
|
@bindThis
|
|
public saveFromBuffer(key: string, data: Buffer) {
|
|
fs.mkdirSync(path, { recursive: true });
|
|
fs.writeFileSync(this.resolvePath(key), data);
|
|
return `${this.config.url}/files/${key}`;
|
|
}
|
|
|
|
@bindThis
|
|
public del(key: string) {
|
|
fs.unlink(this.resolvePath(key), () => {});
|
|
}
|
|
}
|