rudeshark.net/src/queue/index.ts

40 lines
736 B
TypeScript
Raw Normal View History

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