2019-02-04 04:35:58 +00:00
|
|
|
import * as Queue from 'bee-queue';
|
|
|
|
import config from '../config';
|
2018-04-04 14:12:35 +00:00
|
|
|
import http from './processors/http';
|
2018-05-07 09:20:15 +00:00
|
|
|
import { ILocalUser } from '../models/user';
|
2019-02-03 09:16:57 +00:00
|
|
|
import Logger from '../misc/logger';
|
2019-02-04 04:37:50 +00:00
|
|
|
import { program } from '../argv';
|
2018-04-04 14:12:35 +00:00
|
|
|
|
2019-02-04 04:37:50 +00:00
|
|
|
const enableQueue = config.redis != null && !program.disableQueue;
|
2019-02-04 04:35:58 +00:00
|
|
|
|
|
|
|
const queue = new Queue('misskey', {
|
|
|
|
redis: {
|
|
|
|
port: config.redis.port,
|
|
|
|
host: config.redis.host,
|
|
|
|
password: config.redis.pass
|
|
|
|
},
|
|
|
|
|
|
|
|
removeOnSuccess: true,
|
|
|
|
removeOnFailure: true,
|
|
|
|
getEvents: false,
|
|
|
|
sendEvents: false,
|
|
|
|
storeJobs: false
|
|
|
|
});
|
|
|
|
|
2018-07-25 23:11:47 +00:00
|
|
|
export function createHttpJob(data: any) {
|
2019-02-04 04:35:58 +00:00
|
|
|
if (enableQueue) {
|
|
|
|
return queue.createJob(data)
|
|
|
|
.retries(4)
|
|
|
|
.backoff('exponential', 16384) // 16s
|
|
|
|
.save();
|
|
|
|
} else {
|
|
|
|
return http({ data }, () => {});
|
|
|
|
}
|
2018-04-04 14:12:35 +00:00
|
|
|
}
|
|
|
|
|
2018-06-18 05:28:43 +00:00
|
|
|
export function deliver(user: ILocalUser, content: any, to: any) {
|
2018-11-15 20:47:29 +00:00
|
|
|
if (content == null) return;
|
|
|
|
|
2018-07-25 23:11:47 +00:00
|
|
|
createHttpJob({
|
2018-04-05 14:24:51 +00:00
|
|
|
type: 'deliver',
|
|
|
|
user,
|
|
|
|
content,
|
|
|
|
to
|
2018-07-25 23:11:47 +00:00
|
|
|
});
|
2018-04-05 14:24:51 +00:00
|
|
|
}
|
2019-02-03 09:16:57 +00:00
|
|
|
|
|
|
|
export const queueLogger = new Logger('queue');
|
2019-02-04 04:35:58 +00:00
|
|
|
|
|
|
|
export default function() {
|
|
|
|
if (enableQueue) {
|
|
|
|
queue.process(128, http);
|
|
|
|
}
|
|
|
|
}
|