0
0
switched/src/queue/index.ts

37 lines
672 B
TypeScript
Raw Normal View History

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