2019-03-07 16:07:21 +02:00
|
|
|
import * as Bull from 'bull';
|
2021-08-19 15:55:45 +03:00
|
|
|
import { DbJobData } from '@/queue/types';
|
|
|
|
import { deleteDriveFiles } from './delete-drive-files';
|
|
|
|
import { exportNotes } from './export-notes';
|
|
|
|
import { exportFollowing } from './export-following';
|
|
|
|
import { exportMute } from './export-mute';
|
|
|
|
import { exportBlocking } from './export-blocking';
|
|
|
|
import { exportUserLists } from './export-user-lists';
|
|
|
|
import { importFollowing } from './import-following';
|
|
|
|
import { importUserLists } from './import-user-lists';
|
2018-03-31 13:55:00 +03:00
|
|
|
|
2019-03-07 16:07:21 +02:00
|
|
|
const jobs = {
|
2019-02-20 18:30:21 +02:00
|
|
|
deleteDriveFiles,
|
2019-02-05 12:50:14 +02:00
|
|
|
exportNotes,
|
2019-02-06 13:56:48 +02:00
|
|
|
exportFollowing,
|
|
|
|
exportMute,
|
|
|
|
exportBlocking,
|
2019-03-11 12:43:58 +02:00
|
|
|
exportUserLists,
|
2019-03-11 17:34:19 +02:00
|
|
|
importFollowing,
|
2019-03-11 12:43:58 +02:00
|
|
|
importUserLists
|
2021-05-08 12:56:21 +03:00
|
|
|
} as Record<string, Bull.ProcessCallbackFunction<DbJobData> | Bull.ProcessPromiseFunction<DbJobData>>;
|
2018-03-31 13:55:00 +03:00
|
|
|
|
2021-05-08 12:56:21 +03:00
|
|
|
export default function(dbQueue: Bull.Queue<DbJobData>) {
|
2019-03-07 16:27:38 +02:00
|
|
|
for (const [k, v] of Object.entries(jobs)) {
|
2021-05-08 12:56:21 +03:00
|
|
|
dbQueue.process(k, v);
|
2019-03-07 16:27:38 +02:00
|
|
|
}
|
2019-03-07 16:07:21 +02:00
|
|
|
}
|