2021-08-19 12:55:45 +00:00
|
|
|
import { DriveFile } from '@/models/entities/drive-file';
|
|
|
|
import { InternalStorage } from './internal-storage';
|
2021-11-06 09:57:49 +00:00
|
|
|
import { DriveFiles, Instances } from '@/models/index';
|
2021-08-19 12:55:45 +00:00
|
|
|
import { driveChart, perUserDriveChart, instanceChart } from '@/services/chart/index';
|
|
|
|
import { createDeleteObjectStorageFileJob } from '@/queue/index';
|
|
|
|
import { fetchMeta } from '@/misc/fetch-meta';
|
|
|
|
import { getS3 } from './s3';
|
2019-12-31 08:23:47 +00:00
|
|
|
import { v4 as uuid } from 'uuid';
|
2018-06-15 00:53:30 +00:00
|
|
|
|
2019-05-27 07:54:47 +00:00
|
|
|
export async function deleteFile(file: DriveFile, isExpired = false) {
|
2019-04-07 12:50:36 +00:00
|
|
|
if (file.storedInternal) {
|
2019-04-12 16:43:22 +00:00
|
|
|
InternalStorage.del(file.accessKey!);
|
2018-08-15 22:17:04 +00:00
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
if (file.thumbnailUrl) {
|
2019-04-12 16:43:22 +00:00
|
|
|
InternalStorage.del(file.thumbnailAccessKey!);
|
2018-08-15 22:17:04 +00:00
|
|
|
}
|
2018-11-25 19:25:48 +00:00
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
if (file.webpublicUrl) {
|
2019-04-12 16:43:22 +00:00
|
|
|
InternalStorage.del(file.webpublicAccessKey!);
|
2018-11-25 19:25:48 +00:00
|
|
|
}
|
2019-04-09 14:07:08 +00:00
|
|
|
} else if (!file.isLink) {
|
2019-05-27 07:54:47 +00:00
|
|
|
createDeleteObjectStorageFileJob(file.accessKey!);
|
2018-07-24 23:01:12 +00:00
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
if (file.thumbnailUrl) {
|
2019-05-27 07:54:47 +00:00
|
|
|
createDeleteObjectStorageFileJob(file.thumbnailAccessKey!);
|
2018-06-15 00:53:30 +00:00
|
|
|
}
|
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
if (file.webpublicUrl) {
|
2019-05-27 07:54:47 +00:00
|
|
|
createDeleteObjectStorageFileJob(file.webpublicAccessKey!);
|
2019-04-07 12:50:36 +00:00
|
|
|
}
|
2018-06-15 00:53:30 +00:00
|
|
|
}
|
2018-08-18 14:56:44 +00:00
|
|
|
|
2019-07-01 12:12:14 +00:00
|
|
|
postProcess(file, isExpired);
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function deleteFileSync(file: DriveFile, isExpired = false) {
|
|
|
|
if (file.storedInternal) {
|
|
|
|
InternalStorage.del(file.accessKey!);
|
|
|
|
|
|
|
|
if (file.thumbnailUrl) {
|
|
|
|
InternalStorage.del(file.thumbnailAccessKey!);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (file.webpublicUrl) {
|
|
|
|
InternalStorage.del(file.webpublicAccessKey!);
|
|
|
|
}
|
|
|
|
} else if (!file.isLink) {
|
|
|
|
const promises = [];
|
|
|
|
|
|
|
|
promises.push(deleteObjectStorageFile(file.accessKey!));
|
|
|
|
|
|
|
|
if (file.thumbnailUrl) {
|
|
|
|
promises.push(deleteObjectStorageFile(file.thumbnailAccessKey!));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (file.webpublicUrl) {
|
|
|
|
promises.push(deleteObjectStorageFile(file.webpublicAccessKey!));
|
|
|
|
}
|
|
|
|
|
|
|
|
await Promise.all(promises);
|
|
|
|
}
|
|
|
|
|
|
|
|
postProcess(file, isExpired);
|
|
|
|
}
|
|
|
|
|
2020-02-13 14:08:33 +00:00
|
|
|
async function postProcess(file: DriveFile, isExpired = false) {
|
2019-04-07 12:50:36 +00:00
|
|
|
// リモートファイル期限切れ削除後は直リンクにする
|
2019-04-12 16:43:22 +00:00
|
|
|
if (isExpired && file.userHost !== null && file.uri != null) {
|
2019-04-07 12:50:36 +00:00
|
|
|
DriveFiles.update(file.id, {
|
2019-04-09 14:07:08 +00:00
|
|
|
isLink: true,
|
2019-04-07 12:50:36 +00:00
|
|
|
url: file.uri,
|
2020-01-01 17:45:05 +00:00
|
|
|
thumbnailUrl: null,
|
|
|
|
webpublicUrl: null,
|
2021-05-30 04:48:23 +00:00
|
|
|
storedInternal: false,
|
2019-12-31 08:23:47 +00:00
|
|
|
// ローカルプロキシ用
|
|
|
|
accessKey: uuid(),
|
|
|
|
thumbnailAccessKey: 'thumbnail-' + uuid(),
|
|
|
|
webpublicAccessKey: 'webpublic-' + uuid(),
|
2018-11-25 19:25:48 +00:00
|
|
|
});
|
2019-04-07 12:50:36 +00:00
|
|
|
} else {
|
|
|
|
DriveFiles.delete(file.id);
|
2018-11-25 19:25:48 +00:00
|
|
|
}
|
|
|
|
|
2018-08-18 14:56:44 +00:00
|
|
|
// 統計を更新
|
2018-10-22 20:36:35 +00:00
|
|
|
driveChart.update(file, false);
|
|
|
|
perUserDriveChart.update(file, false);
|
2019-04-07 12:50:36 +00:00
|
|
|
if (file.userHost !== null) {
|
2019-02-08 07:58:57 +00:00
|
|
|
instanceChart.updateDrive(file, false);
|
2019-04-07 12:50:36 +00:00
|
|
|
Instances.decrement({ host: file.userHost }, 'driveUsage', file.size);
|
|
|
|
Instances.decrement({ host: file.userHost }, 'driveFiles', 1);
|
2019-02-08 07:58:57 +00:00
|
|
|
}
|
2018-06-15 00:53:30 +00:00
|
|
|
}
|
2019-07-01 12:12:14 +00:00
|
|
|
|
|
|
|
export async function deleteObjectStorageFile(key: string) {
|
|
|
|
const meta = await fetchMeta();
|
|
|
|
|
2019-07-28 00:49:02 +00:00
|
|
|
const s3 = getS3(meta);
|
2019-07-01 12:12:14 +00:00
|
|
|
|
2019-07-28 00:49:02 +00:00
|
|
|
await s3.deleteObject({
|
|
|
|
Bucket: meta.objectStorageBucket!,
|
2021-12-09 14:58:30 +00:00
|
|
|
Key: key,
|
2019-07-28 00:49:02 +00:00
|
|
|
}).promise();
|
2019-07-01 12:12:14 +00:00
|
|
|
}
|