]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/lib/job-queue/job-queue.ts
Resume video on peertube link click in embed
[github/Chocobozzz/PeerTube.git] / server / lib / job-queue / job-queue.ts
CommitLineData
94a5ff8a 1import * as kue from 'kue'
628d28e8 2import { JobState, JobType } from '../../../shared/models'
94a5ff8a 3import { logger } from '../../helpers/logger'
71e3dfda 4import { CONFIG, JOB_ATTEMPTS, JOB_COMPLETED_LIFETIME, JOB_CONCURRENCY, JOB_REQUEST_TTL } from '../../initializers'
2c29ad4f 5import { Redis } from '../redis'
94a5ff8a
C
6import { ActivitypubHttpBroadcastPayload, processActivityPubHttpBroadcast } from './handlers/activitypub-http-broadcast'
7import { ActivitypubHttpFetcherPayload, processActivityPubHttpFetcher } from './handlers/activitypub-http-fetcher'
8import { ActivitypubHttpUnicastPayload, processActivityPubHttpUnicast } from './handlers/activitypub-http-unicast'
ecb4e35f 9import { EmailPayload, processEmail } from './handlers/email'
94a5ff8a 10import { processVideoFile, VideoFilePayload } from './handlers/video-file'
5350fd8e 11import { ActivitypubFollowPayload, processActivityPubFollow } from './handlers/activitypub-follow'
94a5ff8a
C
12
13type CreateJobArgument =
14 { type: 'activitypub-http-broadcast', payload: ActivitypubHttpBroadcastPayload } |
15 { type: 'activitypub-http-unicast', payload: ActivitypubHttpUnicastPayload } |
16 { type: 'activitypub-http-fetcher', payload: ActivitypubHttpFetcherPayload } |
5350fd8e 17 { type: 'activitypub-follow', payload: ActivitypubFollowPayload } |
ecb4e35f
C
18 { type: 'video-file', payload: VideoFilePayload } |
19 { type: 'email', payload: EmailPayload }
94a5ff8a
C
20
21const handlers: { [ id in JobType ]: (job: kue.Job) => Promise<any>} = {
22 'activitypub-http-broadcast': processActivityPubHttpBroadcast,
23 'activitypub-http-unicast': processActivityPubHttpUnicast,
24 'activitypub-http-fetcher': processActivityPubHttpFetcher,
5350fd8e 25 'activitypub-follow': processActivityPubFollow,
ecb4e35f
C
26 'video-file': processVideoFile,
27 'email': processEmail
94a5ff8a
C
28}
29
71e3dfda
C
30const jobsWithTLL: JobType[] = [
31 'activitypub-http-broadcast',
32 'activitypub-http-unicast',
33 'activitypub-http-fetcher',
34 'activitypub-follow'
35]
36
94a5ff8a
C
37class JobQueue {
38
39 private static instance: JobQueue
40
41 private jobQueue: kue.Queue
42 private initialized = false
2c29ad4f 43 private jobRedisPrefix: string
94a5ff8a
C
44
45 private constructor () {}
46
3df45638 47 async init () {
94a5ff8a
C
48 // Already initialized
49 if (this.initialized === true) return
50 this.initialized = true
51
2c29ad4f
C
52 this.jobRedisPrefix = 'q-' + CONFIG.WEBSERVER.HOST
53
94a5ff8a 54 this.jobQueue = kue.createQueue({
2c29ad4f 55 prefix: this.jobRedisPrefix,
94a5ff8a
C
56 redis: {
57 host: CONFIG.REDIS.HOSTNAME,
58 port: CONFIG.REDIS.PORT,
30c82f0d
RK
59 auth: CONFIG.REDIS.AUTH,
60 db: CONFIG.REDIS.DB
94a5ff8a
C
61 }
62 })
63
5350fd8e 64 this.jobQueue.setMaxListeners(20)
ecb4e35f 65
94a5ff8a 66 this.jobQueue.on('error', err => {
d5b7d911 67 logger.error('Error in job queue.', { err })
94a5ff8a
C
68 process.exit(-1)
69 })
70 this.jobQueue.watchStuckJobs(5000)
71
3df45638
C
72 await this.reactiveStuckJobs()
73
94a5ff8a
C
74 for (const handlerName of Object.keys(handlers)) {
75 this.jobQueue.process(handlerName, JOB_CONCURRENCY[handlerName], async (job, done) => {
76 try {
77 const res = await handlers[ handlerName ](job)
78 return done(null, res)
79 } catch (err) {
80 return done(err)
81 }
82 })
83 }
84 }
85
86 createJob (obj: CreateJobArgument, priority = 'normal') {
87 return new Promise((res, rej) => {
71e3dfda 88 let job = this.jobQueue
94a5ff8a
C
89 .create(obj.type, obj.payload)
90 .priority(priority)
91 .attempts(JOB_ATTEMPTS[obj.type])
802dbc32 92 .backoff({ delay: 60 * 1000, type: 'exponential' })
94a5ff8a 93
71e3dfda
C
94 if (jobsWithTLL.indexOf(obj.type) !== -1) {
95 job = job.ttl(JOB_REQUEST_TTL)
96 }
97
98 return job.save(err => {
99 if (err) return rej(err)
100
101 return res()
102 })
94a5ff8a
C
103 })
104 }
105
628d28e8 106 async listForApi (state: JobState, start: number, count: number, sort: 'ASC' | 'DESC'): Promise<kue.Job[]> {
2c29ad4f 107 const jobStrings = await Redis.Instance.listJobs(this.jobRedisPrefix, state, 'alpha', sort, start, count)
94a5ff8a 108
2c29ad4f
C
109 const jobPromises = jobStrings
110 .map(s => s.split('|'))
111 .map(([ , jobId ]) => this.getJob(parseInt(jobId, 10)))
112
113 return Promise.all(jobPromises)
94a5ff8a
C
114 }
115
116 count (state: JobState) {
117 return new Promise<number>((res, rej) => {
118 this.jobQueue[state + 'Count']((err, total) => {
119 if (err) return rej(err)
120
121 return res(total)
122 })
123 })
124 }
125
126 removeOldJobs () {
127 const now = new Date().getTime()
128 kue.Job.rangeByState('complete', 0, -1, 'asc', (err, jobs) => {
129 if (err) {
d5b7d911 130 logger.error('Cannot get jobs when removing old jobs.', { err })
94a5ff8a
C
131 return
132 }
133
134 for (const job of jobs) {
135 if (now - job.created_at > JOB_COMPLETED_LIFETIME) {
136 job.remove()
137 }
138 }
139 })
140 }
141
3df45638
C
142 private reactiveStuckJobs () {
143 const promises: Promise<any>[] = []
144
145 this.jobQueue.active((err, ids) => {
146 if (err) throw err
147
148 for (const id of ids) {
149 kue.Job.get(id, (err, job) => {
150 if (err) throw err
151
152 const p = new Promise((res, rej) => {
153 job.inactive(err => {
154 if (err) return rej(err)
155 return res()
156 })
157 })
158
159 promises.push(p)
160 })
161 }
162 })
163
164 return Promise.all(promises)
165 }
166
2c29ad4f 167 private getJob (id: number) {
628d28e8 168 return new Promise<kue.Job>((res, rej) => {
2c29ad4f
C
169 kue.Job.get(id, (err, job) => {
170 if (err) return rej(err)
171
172 return res(job)
173 })
174 })
175 }
176
94a5ff8a
C
177 static get Instance () {
178 return this.instance || (this.instance = new this())
179 }
180}
181
182// ---------------------------------------------------------------------------
183
184export {
185 JobQueue
186}