2018-07-23 23:21:21 +02:00
|
|
|
import * as Minio from 'minio';
|
|
|
|
import config from '../../config';
|
2019-04-07 14:50:36 +02:00
|
|
|
import { DriveFile } from '../../models/entities/drive-file';
|
|
|
|
import { InternalStorage } from './internal-storage';
|
2019-04-16 19:11:22 +02:00
|
|
|
import { DriveFiles, Instances, Notes } from '../../models';
|
2019-04-07 14:50:36 +02:00
|
|
|
import { driveChart, perUserDriveChart, instanceChart } from '../chart';
|
2018-06-15 02:53:30 +02:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
export default async function(file: DriveFile, isExpired = false) {
|
|
|
|
if (file.storedInternal) {
|
2019-04-12 18:43:22 +02:00
|
|
|
InternalStorage.del(file.accessKey!);
|
2018-08-16 00:17:04 +02:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
if (file.thumbnailUrl) {
|
2019-04-12 18:43:22 +02:00
|
|
|
InternalStorage.del(file.thumbnailAccessKey!);
|
2018-08-16 00:17:04 +02:00
|
|
|
}
|
2018-11-25 20:25:48 +01:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
if (file.webpublicUrl) {
|
2019-04-12 18:43:22 +02:00
|
|
|
InternalStorage.del(file.webpublicAccessKey!);
|
2018-11-25 20:25:48 +01:00
|
|
|
}
|
2019-04-09 16:07:08 +02:00
|
|
|
} else if (!file.isLink) {
|
2019-04-12 18:43:22 +02:00
|
|
|
const minio = new Minio.Client(config.drive!.config);
|
2018-07-25 01:01:12 +02:00
|
|
|
|
2019-04-12 18:43:22 +02:00
|
|
|
await minio.removeObject(config.drive!.bucket!, file.accessKey!);
|
2018-07-25 01:01:12 +02:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
if (file.thumbnailUrl) {
|
2019-04-12 18:43:22 +02:00
|
|
|
await minio.removeObject(config.drive!.bucket!, file.thumbnailAccessKey!);
|
2018-06-15 02:53:30 +02:00
|
|
|
}
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
if (file.webpublicUrl) {
|
2019-04-12 18:43:22 +02:00
|
|
|
await minio.removeObject(config.drive!.bucket!, file.webpublicAccessKey!);
|
2019-04-07 14:50:36 +02:00
|
|
|
}
|
2018-06-15 02:53:30 +02:00
|
|
|
}
|
2018-08-18 16:56:44 +02:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
// リモートファイル期限切れ削除後は直リンクにする
|
2019-04-12 18:43:22 +02:00
|
|
|
if (isExpired && file.userHost !== null && file.uri != null) {
|
2019-04-07 14:50:36 +02:00
|
|
|
DriveFiles.update(file.id, {
|
2019-04-09 16:07:08 +02:00
|
|
|
isLink: true,
|
2019-04-07 14:50:36 +02:00
|
|
|
url: file.uri,
|
|
|
|
thumbnailUrl: null,
|
|
|
|
webpublicUrl: null
|
2018-11-25 20:25:48 +01:00
|
|
|
});
|
2019-04-07 14:50:36 +02:00
|
|
|
} else {
|
|
|
|
DriveFiles.delete(file.id);
|
2019-04-16 19:11:22 +02:00
|
|
|
|
|
|
|
// TODO: トランザクション
|
|
|
|
Notes.createQueryBuilder('note').delete()
|
2019-04-16 19:19:49 +02:00
|
|
|
.where(':id = ANY(note.fileIds)', { id: file.id })
|
2019-04-16 19:11:22 +02:00
|
|
|
.execute();
|
2018-11-25 20:25:48 +01:00
|
|
|
}
|
|
|
|
|
2018-08-18 16:56:44 +02:00
|
|
|
// 統計を更新
|
2018-10-22 22:36:35 +02:00
|
|
|
driveChart.update(file, false);
|
|
|
|
perUserDriveChart.update(file, false);
|
2019-04-07 14:50:36 +02:00
|
|
|
if (file.userHost !== null) {
|
2019-02-08 08:58:57 +01:00
|
|
|
instanceChart.updateDrive(file, false);
|
2019-04-07 14:50:36 +02:00
|
|
|
Instances.decrement({ host: file.userHost }, 'driveUsage', file.size);
|
|
|
|
Instances.decrement({ host: file.userHost }, 'driveFiles', 1);
|
2019-02-08 08:58:57 +01:00
|
|
|
}
|
2018-06-15 02:53:30 +02:00
|
|
|
}
|