2019-03-07 06:07:21 -08:00
|
|
|
import * as Queue from 'bull';
|
2019-02-05 22:01:43 -08:00
|
|
|
import * as httpSignature from 'http-signature';
|
2019-02-05 02:50:14 -08:00
|
|
|
|
2019-02-05 22:01:43 -08:00
|
|
|
import config from '../config';
|
2018-05-07 02:20:15 -07:00
|
|
|
import { ILocalUser } from '../models/user';
|
2019-02-03 20:37:50 -08:00
|
|
|
import { program } from '../argv';
|
2019-03-07 06:07:21 -08:00
|
|
|
|
|
|
|
import processDeliver from './processors/deliver';
|
|
|
|
import processInbox from './processors/process-inbox';
|
|
|
|
import processDb from './processors/db';
|
|
|
|
|
|
|
|
function initializeQueue(name: string) {
|
|
|
|
return new Queue(name, config.redis != null ? {
|
|
|
|
redis: {
|
|
|
|
port: config.redis.port,
|
|
|
|
host: config.redis.host,
|
|
|
|
password: config.redis.pass,
|
|
|
|
db: 1
|
|
|
|
}
|
|
|
|
} : null);
|
2019-02-03 23:41:53 -08:00
|
|
|
}
|
2019-02-03 20:35:58 -08:00
|
|
|
|
2019-03-07 06:07:21 -08:00
|
|
|
const deliverQueue = initializeQueue('deliver');
|
|
|
|
const inboxQueue = initializeQueue('inbox');
|
|
|
|
const dbQueue = initializeQueue('db');
|
|
|
|
|
2019-02-05 22:01:43 -08:00
|
|
|
export function deliver(user: ILocalUser, content: any, to: any) {
|
2019-03-07 06:07:21 -08:00
|
|
|
if (content == null) return null;
|
2019-02-05 22:01:43 -08:00
|
|
|
|
|
|
|
const data = {
|
|
|
|
user,
|
|
|
|
content,
|
|
|
|
to
|
|
|
|
};
|
|
|
|
|
2019-03-07 06:07:21 -08:00
|
|
|
return deliverQueue.add(data, {
|
|
|
|
attempts: 4,
|
|
|
|
backoff: {
|
|
|
|
type: 'exponential',
|
|
|
|
delay: 1000
|
|
|
|
},
|
|
|
|
removeOnComplete: true,
|
|
|
|
removeOnFail: true
|
|
|
|
});
|
2018-04-04 07:12:35 -07:00
|
|
|
}
|
|
|
|
|
2019-03-07 06:07:21 -08:00
|
|
|
export function inbox(activity: any, signature: httpSignature.IParsedSignature) {
|
2019-02-05 22:01:43 -08:00
|
|
|
const data = {
|
|
|
|
activity: activity,
|
|
|
|
signature
|
|
|
|
};
|
2018-11-15 12:47:29 -08:00
|
|
|
|
2019-03-07 06:07:21 -08:00
|
|
|
return inboxQueue.add(data, {
|
|
|
|
attempts: 4,
|
|
|
|
backoff: {
|
|
|
|
type: 'exponential',
|
|
|
|
delay: 1000
|
|
|
|
},
|
|
|
|
removeOnComplete: true,
|
|
|
|
removeOnFail: true
|
|
|
|
});
|
2018-04-05 07:24:51 -07:00
|
|
|
}
|
2019-02-03 01:16:57 -08:00
|
|
|
|
2019-02-20 08:30:21 -08:00
|
|
|
export function createDeleteNotesJob(user: ILocalUser) {
|
2019-03-07 06:27:38 -08:00
|
|
|
return dbQueue.add('deleteNotes', {
|
2019-02-20 08:30:21 -08:00
|
|
|
user: user
|
2019-03-07 06:27:38 -08:00
|
|
|
}, {
|
2019-03-07 06:07:21 -08:00
|
|
|
removeOnComplete: true,
|
|
|
|
removeOnFail: true
|
|
|
|
});
|
2019-02-20 08:30:21 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
export function createDeleteDriveFilesJob(user: ILocalUser) {
|
2019-03-07 06:27:38 -08:00
|
|
|
return dbQueue.add('deleteDriveFiles', {
|
2019-02-20 08:30:21 -08:00
|
|
|
user: user
|
2019-03-07 06:27:38 -08:00
|
|
|
}, {
|
2019-03-07 06:07:21 -08:00
|
|
|
removeOnComplete: true,
|
|
|
|
removeOnFail: true
|
|
|
|
});
|
2019-02-20 08:30:21 -08:00
|
|
|
}
|
|
|
|
|
2019-02-05 02:50:14 -08:00
|
|
|
export function createExportNotesJob(user: ILocalUser) {
|
2019-03-07 06:27:38 -08:00
|
|
|
return dbQueue.add('exportNotes', {
|
2019-02-05 02:50:14 -08:00
|
|
|
user: user
|
2019-03-07 06:27:38 -08:00
|
|
|
}, {
|
2019-03-07 06:07:21 -08:00
|
|
|
removeOnComplete: true,
|
|
|
|
removeOnFail: true
|
|
|
|
});
|
2019-02-05 02:50:14 -08:00
|
|
|
}
|
2019-02-03 20:35:58 -08:00
|
|
|
|
2019-02-06 04:21:49 -08:00
|
|
|
export function createExportFollowingJob(user: ILocalUser) {
|
2019-03-07 06:27:38 -08:00
|
|
|
return dbQueue.add('exportFollowing', {
|
2019-02-06 04:21:49 -08:00
|
|
|
user: user
|
2019-03-07 06:27:38 -08:00
|
|
|
}, {
|
2019-03-07 06:07:21 -08:00
|
|
|
removeOnComplete: true,
|
|
|
|
removeOnFail: true
|
|
|
|
});
|
2019-02-06 04:21:49 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
export function createExportMuteJob(user: ILocalUser) {
|
2019-03-07 06:27:38 -08:00
|
|
|
return dbQueue.add('exportMute', {
|
2019-02-06 04:21:49 -08:00
|
|
|
user: user
|
2019-03-07 06:27:38 -08:00
|
|
|
}, {
|
2019-03-07 06:07:21 -08:00
|
|
|
removeOnComplete: true,
|
|
|
|
removeOnFail: true
|
|
|
|
});
|
2019-02-06 04:21:49 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
export function createExportBlockingJob(user: ILocalUser) {
|
2019-03-07 06:27:38 -08:00
|
|
|
return dbQueue.add('exportBlocking', {
|
2019-02-06 04:21:49 -08:00
|
|
|
user: user
|
2019-03-07 06:27:38 -08:00
|
|
|
}, {
|
2019-03-07 06:07:21 -08:00
|
|
|
removeOnComplete: true,
|
|
|
|
removeOnFail: true
|
|
|
|
});
|
2019-02-06 04:21:49 -08:00
|
|
|
}
|
|
|
|
|
2019-02-03 20:35:58 -08:00
|
|
|
export default function() {
|
2019-03-07 06:07:21 -08:00
|
|
|
if (!program.onlyServer) {
|
|
|
|
deliverQueue.process(processDeliver);
|
|
|
|
inboxQueue.process(processInbox);
|
2019-03-07 06:27:38 -08:00
|
|
|
processDb(dbQueue);
|
2019-02-03 20:35:58 -08:00
|
|
|
}
|
|
|
|
}
|
2019-02-05 22:24:59 -08:00
|
|
|
|
|
|
|
export function destroy() {
|
2019-03-07 06:07:21 -08:00
|
|
|
/*
|
2019-02-05 22:24:59 -08:00
|
|
|
queue.destroy().then(n => {
|
|
|
|
queueLogger.succ(`All job removed (${n} jobs)`);
|
2019-03-07 06:07:21 -08:00
|
|
|
});*/
|
2019-02-05 22:24:59 -08:00
|
|
|
}
|