2018-01-25 15:05:18 +01:00
|
|
|
import * as kue from 'kue'
|
2018-02-27 17:42:32 +01:00
|
|
|
import { JobState, JobType } from '../../../shared/models'
|
2018-01-25 15:05:18 +01:00
|
|
|
import { logger } from '../../helpers/logger'
|
|
|
|
import { CONFIG, JOB_ATTEMPTS, JOB_COMPLETED_LIFETIME, JOB_CONCURRENCY } from '../../initializers'
|
2018-02-27 16:57:53 +01:00
|
|
|
import { Redis } from '../redis'
|
2018-01-25 15:05:18 +01:00
|
|
|
import { ActivitypubHttpBroadcastPayload, processActivityPubHttpBroadcast } from './handlers/activitypub-http-broadcast'
|
|
|
|
import { ActivitypubHttpFetcherPayload, processActivityPubHttpFetcher } from './handlers/activitypub-http-fetcher'
|
|
|
|
import { ActivitypubHttpUnicastPayload, processActivityPubHttpUnicast } from './handlers/activitypub-http-unicast'
|
2018-01-30 13:27:07 +01:00
|
|
|
import { EmailPayload, processEmail } from './handlers/email'
|
2018-01-25 15:05:18 +01:00
|
|
|
import { processVideoFile, VideoFilePayload } from './handlers/video-file'
|
2018-04-18 15:32:40 +02:00
|
|
|
import { ActivitypubFollowPayload, processActivityPubFollow } from './handlers/activitypub-follow'
|
2018-01-25 15:05:18 +01:00
|
|
|
|
|
|
|
type CreateJobArgument =
|
|
|
|
{ type: 'activitypub-http-broadcast', payload: ActivitypubHttpBroadcastPayload } |
|
|
|
|
{ type: 'activitypub-http-unicast', payload: ActivitypubHttpUnicastPayload } |
|
|
|
|
{ type: 'activitypub-http-fetcher', payload: ActivitypubHttpFetcherPayload } |
|
2018-04-18 15:32:40 +02:00
|
|
|
{ type: 'activitypub-follow', payload: ActivitypubFollowPayload } |
|
2018-01-30 13:27:07 +01:00
|
|
|
{ type: 'video-file', payload: VideoFilePayload } |
|
|
|
|
{ type: 'email', payload: EmailPayload }
|
2018-01-25 15:05:18 +01:00
|
|
|
|
|
|
|
const handlers: { [ id in JobType ]: (job: kue.Job) => Promise<any>} = {
|
|
|
|
'activitypub-http-broadcast': processActivityPubHttpBroadcast,
|
|
|
|
'activitypub-http-unicast': processActivityPubHttpUnicast,
|
|
|
|
'activitypub-http-fetcher': processActivityPubHttpFetcher,
|
2018-04-18 15:32:40 +02:00
|
|
|
'activitypub-follow': processActivityPubFollow,
|
2018-01-30 13:27:07 +01:00
|
|
|
'video-file': processVideoFile,
|
|
|
|
'email': processEmail
|
2018-01-25 15:05:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
class JobQueue {
|
|
|
|
|
|
|
|
private static instance: JobQueue
|
|
|
|
|
|
|
|
private jobQueue: kue.Queue
|
|
|
|
private initialized = false
|
2018-02-27 16:57:53 +01:00
|
|
|
private jobRedisPrefix: string
|
2018-01-25 15:05:18 +01:00
|
|
|
|
|
|
|
private constructor () {}
|
|
|
|
|
2018-02-12 11:25:09 +01:00
|
|
|
async init () {
|
2018-01-25 15:05:18 +01:00
|
|
|
// Already initialized
|
|
|
|
if (this.initialized === true) return
|
|
|
|
this.initialized = true
|
|
|
|
|
2018-02-27 16:57:53 +01:00
|
|
|
this.jobRedisPrefix = 'q-' + CONFIG.WEBSERVER.HOST
|
|
|
|
|
2018-01-25 15:05:18 +01:00
|
|
|
this.jobQueue = kue.createQueue({
|
2018-02-27 16:57:53 +01:00
|
|
|
prefix: this.jobRedisPrefix,
|
2018-01-25 15:05:18 +01:00
|
|
|
redis: {
|
|
|
|
host: CONFIG.REDIS.HOSTNAME,
|
|
|
|
port: CONFIG.REDIS.PORT,
|
|
|
|
auth: CONFIG.REDIS.AUTH
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2018-04-18 15:32:40 +02:00
|
|
|
this.jobQueue.setMaxListeners(20)
|
2018-01-30 13:27:07 +01:00
|
|
|
|
2018-01-25 15:05:18 +01:00
|
|
|
this.jobQueue.on('error', err => {
|
2018-03-26 15:54:13 +02:00
|
|
|
logger.error('Error in job queue.', { err })
|
2018-01-25 15:05:18 +01:00
|
|
|
process.exit(-1)
|
|
|
|
})
|
|
|
|
this.jobQueue.watchStuckJobs(5000)
|
|
|
|
|
2018-02-12 11:25:09 +01:00
|
|
|
await this.reactiveStuckJobs()
|
|
|
|
|
2018-01-25 15:05:18 +01:00
|
|
|
for (const handlerName of Object.keys(handlers)) {
|
|
|
|
this.jobQueue.process(handlerName, JOB_CONCURRENCY[handlerName], async (job, done) => {
|
|
|
|
try {
|
|
|
|
const res = await handlers[ handlerName ](job)
|
|
|
|
return done(null, res)
|
|
|
|
} catch (err) {
|
|
|
|
return done(err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
createJob (obj: CreateJobArgument, priority = 'normal') {
|
|
|
|
return new Promise((res, rej) => {
|
|
|
|
this.jobQueue
|
|
|
|
.create(obj.type, obj.payload)
|
|
|
|
.priority(priority)
|
|
|
|
.attempts(JOB_ATTEMPTS[obj.type])
|
2018-01-30 15:51:55 +01:00
|
|
|
.backoff({ delay: 60 * 1000, type: 'exponential' })
|
2018-01-25 15:05:18 +01:00
|
|
|
.save(err => {
|
|
|
|
if (err) return rej(err)
|
|
|
|
|
|
|
|
return res()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-02-27 17:42:32 +01:00
|
|
|
async listForApi (state: JobState, start: number, count: number, sort: 'ASC' | 'DESC'): Promise<kue.Job[]> {
|
2018-02-27 16:57:53 +01:00
|
|
|
const jobStrings = await Redis.Instance.listJobs(this.jobRedisPrefix, state, 'alpha', sort, start, count)
|
2018-01-25 15:05:18 +01:00
|
|
|
|
2018-02-27 16:57:53 +01:00
|
|
|
const jobPromises = jobStrings
|
|
|
|
.map(s => s.split('|'))
|
|
|
|
.map(([ , jobId ]) => this.getJob(parseInt(jobId, 10)))
|
|
|
|
|
|
|
|
return Promise.all(jobPromises)
|
2018-01-25 15:05:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
count (state: JobState) {
|
|
|
|
return new Promise<number>((res, rej) => {
|
|
|
|
this.jobQueue[state + 'Count']((err, total) => {
|
|
|
|
if (err) return rej(err)
|
|
|
|
|
|
|
|
return res(total)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
removeOldJobs () {
|
|
|
|
const now = new Date().getTime()
|
|
|
|
kue.Job.rangeByState('complete', 0, -1, 'asc', (err, jobs) => {
|
|
|
|
if (err) {
|
2018-03-26 15:54:13 +02:00
|
|
|
logger.error('Cannot get jobs when removing old jobs.', { err })
|
2018-01-25 15:05:18 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const job of jobs) {
|
|
|
|
if (now - job.created_at > JOB_COMPLETED_LIFETIME) {
|
|
|
|
job.remove()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-02-12 11:25:09 +01:00
|
|
|
private reactiveStuckJobs () {
|
|
|
|
const promises: Promise<any>[] = []
|
|
|
|
|
|
|
|
this.jobQueue.active((err, ids) => {
|
|
|
|
if (err) throw err
|
|
|
|
|
|
|
|
for (const id of ids) {
|
|
|
|
kue.Job.get(id, (err, job) => {
|
|
|
|
if (err) throw err
|
|
|
|
|
|
|
|
const p = new Promise((res, rej) => {
|
|
|
|
job.inactive(err => {
|
|
|
|
if (err) return rej(err)
|
|
|
|
return res()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
promises.push(p)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
return Promise.all(promises)
|
|
|
|
}
|
|
|
|
|
2018-02-27 16:57:53 +01:00
|
|
|
private getJob (id: number) {
|
2018-02-27 17:42:32 +01:00
|
|
|
return new Promise<kue.Job>((res, rej) => {
|
2018-02-27 16:57:53 +01:00
|
|
|
kue.Job.get(id, (err, job) => {
|
|
|
|
if (err) return rej(err)
|
|
|
|
|
|
|
|
return res(job)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-01-25 15:05:18 +01:00
|
|
|
static get Instance () {
|
|
|
|
return this.instance || (this.instance = new this())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
JobQueue
|
|
|
|
}
|