2018-07-25 18:11:47 -05:00
|
|
|
import * as Queue from 'bee-queue';
|
2018-04-05 04:43:06 -05:00
|
|
|
|
2018-04-04 09:12:35 -05:00
|
|
|
import config from '../config';
|
|
|
|
import http from './processors/http';
|
2018-05-07 04:20:15 -05:00
|
|
|
import { ILocalUser } from '../models/user';
|
2018-04-04 09:12:35 -05:00
|
|
|
|
2018-07-25 18:11:47 -05:00
|
|
|
const queue = new Queue('misskey', {
|
2018-04-04 09:12:35 -05:00
|
|
|
redis: {
|
|
|
|
port: config.redis.port,
|
|
|
|
host: config.redis.host,
|
2018-07-25 18:11:47 -05:00
|
|
|
password: config.redis.pass
|
|
|
|
},
|
2018-04-04 09:12:35 -05:00
|
|
|
|
2018-07-25 18:11:47 -05:00
|
|
|
removeOnSuccess: true,
|
2018-07-26 03:02:34 -05:00
|
|
|
removeOnFailure: true,
|
|
|
|
getEvents: false,
|
|
|
|
sendEvents: false,
|
|
|
|
storeJobs: false
|
2018-07-25 15:27:27 -05:00
|
|
|
});
|
|
|
|
|
2018-07-25 18:11:47 -05:00
|
|
|
export function createHttpJob(data: any) {
|
|
|
|
return queue.createJob(data)
|
2018-07-26 03:15:00 -05:00
|
|
|
//.retries(4)
|
|
|
|
//.backoff('exponential', 16384) // 16s
|
2018-07-25 18:11:47 -05:00
|
|
|
.save();
|
2018-04-04 09:12:35 -05:00
|
|
|
}
|
|
|
|
|
2018-06-18 00:28:43 -05:00
|
|
|
export function deliver(user: ILocalUser, content: any, to: any) {
|
2018-07-25 18:11:47 -05:00
|
|
|
createHttpJob({
|
2018-04-05 09:24:51 -05:00
|
|
|
type: 'deliver',
|
|
|
|
user,
|
|
|
|
content,
|
|
|
|
to
|
2018-07-25 18:11:47 -05:00
|
|
|
});
|
2018-04-05 09:24:51 -05:00
|
|
|
}
|
|
|
|
|
2018-04-05 04:43:06 -05:00
|
|
|
export default function() {
|
2018-07-26 03:02:34 -05:00
|
|
|
queue.process(128, http);
|
2018-04-04 09:12:35 -05:00
|
|
|
}
|