// ---------------------------------------------------------------------------
async function listJobs (req: express.Request, res: express.Response, next: express.NextFunction) {
- const sort = req.query.sort === 'createdAt' ? 'asc' : 'desc'
+ const sort = req.query.sort === 'createdAt' ? 'ASC' : 'DESC'
const jobs = await JobQueue.Instance.listForApi(req.params.state, req.query.start, req.query.count, sort)
const total = await JobQueue.Instance.count(req.params.state)
import { JobType, JobState } from '../../../shared/models'
import { logger } from '../../helpers/logger'
import { CONFIG, JOB_ATTEMPTS, JOB_COMPLETED_LIFETIME, JOB_CONCURRENCY } from '../../initializers'
+import { Redis } from '../redis'
import { ActivitypubHttpBroadcastPayload, processActivityPubHttpBroadcast } from './handlers/activitypub-http-broadcast'
import { ActivitypubHttpFetcherPayload, processActivityPubHttpFetcher } from './handlers/activitypub-http-fetcher'
import { ActivitypubHttpUnicastPayload, processActivityPubHttpUnicast } from './handlers/activitypub-http-unicast'
private jobQueue: kue.Queue
private initialized = false
+ private jobRedisPrefix: string
private constructor () {}
if (this.initialized === true) return
this.initialized = true
+ this.jobRedisPrefix = 'q-' + CONFIG.WEBSERVER.HOST
+
this.jobQueue = kue.createQueue({
- prefix: 'q-' + CONFIG.WEBSERVER.HOST,
+ prefix: this.jobRedisPrefix,
redis: {
host: CONFIG.REDIS.HOSTNAME,
port: CONFIG.REDIS.PORT,
})
}
- listForApi (state: JobState, start: number, count: number, sort: string) {
- return new Promise<kue.Job[]>((res, rej) => {
- kue.Job.rangeByState(state, start, start + count - 1, sort, (err, jobs) => {
- if (err) return rej(err)
+ async listForApi (state: JobState, start: number, count: number, sort: 'ASC' | 'DESC') {
+ const jobStrings = await Redis.Instance.listJobs(this.jobRedisPrefix, state, 'alpha', sort, start, count)
- return res(jobs)
- })
- })
+ const jobPromises = jobStrings
+ .map(s => s.split('|'))
+ .map(([ , jobId ]) => this.getJob(parseInt(jobId, 10)))
+
+ return Promise.all(jobPromises)
}
count (state: JobState) {
return Promise.all(promises)
}
+ private getJob (id: number) {
+ return new Promise((res, rej) => {
+ kue.Job.get(id, (err, job) => {
+ if (err) return rej(err)
+
+ return res(job)
+ })
+ })
+ }
+
static get Instance () {
return this.instance || (this.instance = new this())
}
return this.exists(this.buildViewKey(ip, videoUUID))
}
+ listJobs (jobsPrefix: string, state: string, mode: 'alpha', order: 'ASC' | 'DESC', offset: number, count: number) {
+ return new Promise<string[]>((res, rej) => {
+ this.client.sort(jobsPrefix + ':jobs:' + state, 'by', mode, order, 'LIMIT', offset.toString(), count.toString(), (err, values) => {
+ if (err) return rej(err)
+
+
+
+ return res(values)
+ })
+ })
+ }
+
private getValue (key: string) {
return new Promise<string>((res, rej) => {
this.client.get(this.prefix + key, (err, value) => {