Sharkey/src/queue/processors/db/index.ts

29 lines
798 B
TypeScript
Raw Normal View History

2019-03-07 16:07:21 +02:00
import * as Bull from 'bull';
2019-02-20 18:30:21 +02:00
import { deleteNotes } from './delete-notes';
import { deleteDriveFiles } from './delete-drive-files';
import { exportNotes } from './export-notes';
2019-02-06 13:56:48 +02:00
import { exportFollowing } from './export-following';
import { exportMute } from './export-mute';
import { exportBlocking } from './export-blocking';
import { exportUserLists } from './export-user-lists';
2019-03-11 17:34:19 +02:00
import { importFollowing } from './import-following';
2019-03-11 12:43:58 +02:00
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
deleteNotes,
deleteDriveFiles,
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
2019-03-07 16:07:21 +02:00
} as any;
2018-03-31 13:55:00 +03:00
2019-03-07 16:27:38 +02:00
export default function(dbQueue: Bull.Queue) {
for (const [k, v] of Object.entries(jobs)) {
dbQueue.process(k, v as any);
}
2019-03-07 16:07:21 +02:00
}