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';
|
2019-03-08 17:09:04 -08:00
|
|
|
import processInbox from './processors/inbox';
|
2019-03-07 06:07:21 -08:00
|
|
|
import processDb from './processors/db';
|
2019-03-07 06:36:08 -08:00
|
|
|
import { queueLogger } from './logger';
|
2019-03-07 06:07:21 -08:00
|
|
|
|
|
|
|
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 20:03:38 -08:00
|
|
|
export const deliverQueue = initializeQueue('deliver');
|
|
|
|
export const inboxQueue = initializeQueue('inbox');
|
|
|
|
export const dbQueue = initializeQueue('db');
|
2019-03-07 06:07:21 -08:00
|
|
|
|
2019-03-08 15:57:55 -08:00
|
|
|
deliverQueue
|
|
|
|
.on('waiting', (jobId) => {
|
|
|
|
queueLogger.debug(`[deliver] waiting id=${jobId}`);
|
|
|
|
})
|
|
|
|
.on('active', (job) => {
|
|
|
|
queueLogger.debug(`[deliver] active id=${job.id} to=${job.data.to}`);
|
|
|
|
})
|
|
|
|
.on('completed', (job, result) => {
|
|
|
|
queueLogger.debug(`[deliver] completed(${result}) id=${job.id} to=${job.data.to}`);
|
|
|
|
})
|
|
|
|
.on('failed', (job, err) => {
|
|
|
|
queueLogger.debug(`[deliver] failed(${err}) id=${job.id} to=${job.data.to}`);
|
|
|
|
})
|
|
|
|
.on('error', (error) => {
|
|
|
|
queueLogger.error(`[deliver] error ${error}`);
|
|
|
|
})
|
|
|
|
.on('stalled', (job) => {
|
|
|
|
queueLogger.warn(`[deliver] stalled id=${job.id} to=${job.data.to}`);
|
|
|
|
});
|
|
|
|
|
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, {
|
2019-03-08 04:43:17 -08:00
|
|
|
attempts: 8,
|
2019-03-07 06:07:21 -08:00
|
|
|
backoff: {
|
|
|
|
type: 'exponential',
|
2019-03-08 15:57:55 -08:00
|
|
|
delay: 60 * 1000
|
2019-03-07 06:07:21 -08:00
|
|
|
},
|
|
|
|
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, {
|
2019-03-08 04:43:17 -08:00
|
|
|
attempts: 8,
|
2019-03-07 06:07:21 -08:00
|
|
|
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) {
|
2019-03-07 12:23:13 -08:00
|
|
|
deliverQueue.process(128, processDeliver);
|
|
|
|
inboxQueue.process(128, 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:36:08 -08:00
|
|
|
deliverQueue.once('cleaned', (jobs, status) => {
|
|
|
|
queueLogger.succ(`[deliver] Cleaned ${jobs.length} ${status} jobs`);
|
|
|
|
});
|
|
|
|
deliverQueue.clean(0, 'wait');
|
|
|
|
|
|
|
|
inboxQueue.once('cleaned', (jobs, status) => {
|
|
|
|
queueLogger.succ(`[inbox] Cleaned ${jobs.length} ${status} jobs`);
|
|
|
|
});
|
|
|
|
inboxQueue.clean(0, 'wait');
|
2019-02-05 22:24:59 -08:00
|
|
|
}
|