mirror of
https://github.com/paricafe/misskey.git
synced 2024-12-02 10:36:44 -06:00
51 lines
1.1 KiB
TypeScript
51 lines
1.1 KiB
TypeScript
|
import * as Bull from 'bull';
|
||
|
|
||
|
import { queueLogger } from '../../logger';
|
||
|
import { deleteFileSync } from '../../../services/drive/delete-file';
|
||
|
import { DriveFiles } from '../../../models';
|
||
|
import { MoreThan, Not, IsNull } from 'typeorm';
|
||
|
|
||
|
const logger = queueLogger.createSubLogger('clean-remote-files');
|
||
|
|
||
|
export default async function cleanRemoteFiles(job: Bull.Job, done: any): Promise<void> {
|
||
|
logger.info(`Deleting cached remote files...`);
|
||
|
|
||
|
let deletedCount = 0;
|
||
|
let cursor: any = null;
|
||
|
|
||
|
while (true) {
|
||
|
const files = await DriveFiles.find({
|
||
|
where: {
|
||
|
userHost: Not(IsNull()),
|
||
|
isLink: false,
|
||
|
...(cursor ? { id: MoreThan(cursor) } : {})
|
||
|
},
|
||
|
take: 8,
|
||
|
order: {
|
||
|
id: 1
|
||
|
}
|
||
|
});
|
||
|
|
||
|
if (files.length === 0) {
|
||
|
job.progress(100);
|
||
|
break;
|
||
|
}
|
||
|
|
||
|
cursor = files[files.length - 1].id;
|
||
|
|
||
|
await Promise.all(files.map(file => deleteFileSync(file, true)));
|
||
|
|
||
|
deletedCount += 8;
|
||
|
|
||
|
const total = await DriveFiles.count({
|
||
|
userHost: Not(IsNull()),
|
||
|
isLink: false,
|
||
|
});
|
||
|
|
||
|
job.progress(deletedCount / total);
|
||
|
}
|
||
|
|
||
|
logger.succ(`All cahced remote files has been deleted.`);
|
||
|
done();
|
||
|
}
|