1
0
Fork 0
peertube/server/controllers/api/jobs.ts

104 lines
2.6 KiB
TypeScript
Raw Normal View History

2022-08-08 08:42:08 +00:00
import { Job as BullJob } from 'bullmq'
2021-08-27 12:32:44 +00:00
import express from 'express'
import { HttpStatusCode, Job, JobState, JobType, ResultList, UserRight } from '@shared/models'
2020-12-14 11:00:35 +00:00
import { isArray } from '../../helpers/custom-validators/misc'
import { JobQueue } from '../../lib/job-queue'
import {
asyncMiddleware,
authenticate,
ensureUserHasRight,
jobsSortValidator,
openapiOperationDoc,
2021-03-09 08:22:05 +00:00
paginationValidatorBuilder,
setDefaultPagination,
setDefaultSort
} from '../../middlewares'
2020-12-14 11:00:35 +00:00
import { listJobsValidator } from '../../middlewares/validators/jobs'
2017-11-30 09:51:13 +00:00
const jobsRouter = express.Router()
jobsRouter.post('/pause',
authenticate,
ensureUserHasRight(UserRight.MANAGE_JOBS),
asyncMiddleware(pauseJobQueue)
)
jobsRouter.post('/resume',
authenticate,
ensureUserHasRight(UserRight.MANAGE_JOBS),
2023-02-16 10:56:58 +00:00
resumeJobQueue
)
2020-12-14 11:00:35 +00:00
jobsRouter.get('/:state?',
openapiOperationDoc({ operationId: 'getJobs' }),
2020-12-13 18:27:25 +00:00
authenticate,
ensureUserHasRight(UserRight.MANAGE_JOBS),
2021-03-09 08:22:05 +00:00
paginationValidatorBuilder([ 'jobs' ]),
2020-12-13 18:27:25 +00:00
jobsSortValidator,
setDefaultSort,
setDefaultPagination,
listJobsValidator,
asyncMiddleware(listJobs)
)
2017-11-30 09:51:13 +00:00
// ---------------------------------------------------------------------------
export {
jobsRouter
}
// ---------------------------------------------------------------------------
async function pauseJobQueue (req: express.Request, res: express.Response) {
await JobQueue.Instance.pause()
return res.sendStatus(HttpStatusCode.NO_CONTENT_204)
}
2023-02-16 10:56:58 +00:00
function resumeJobQueue (req: express.Request, res: express.Response) {
JobQueue.Instance.resume()
return res.sendStatus(HttpStatusCode.NO_CONTENT_204)
}
2019-10-21 12:50:55 +00:00
async function listJobs (req: express.Request, res: express.Response) {
2020-12-14 11:00:35 +00:00
const state = req.params.state as JobState
2018-07-10 15:02:20 +00:00
const asc = req.query.sort === 'createdAt'
2019-12-04 13:49:59 +00:00
const jobType = req.query.jobType
2019-12-04 13:49:59 +00:00
const jobs = await JobQueue.Instance.listForApi({
state,
start: req.query.start,
count: req.query.count,
asc,
jobType
})
2020-11-09 15:13:03 +00:00
const total = await JobQueue.Instance.count(state, jobType)
2020-01-31 15:56:52 +00:00
const result: ResultList<Job> = {
total,
2021-01-21 13:42:43 +00:00
data: await Promise.all(jobs.map(j => formatJob(j, state)))
}
2020-12-14 11:00:35 +00:00
return res.json(result)
}
2017-11-30 09:51:13 +00:00
2022-08-08 08:42:08 +00:00
async function formatJob (job: BullJob, state?: JobState): Promise<Job> {
2020-12-14 11:00:35 +00:00
const error = isArray(job.stacktrace) && job.stacktrace.length !== 0
? job.stacktrace[0]
: null
2018-07-10 15:02:20 +00:00
return {
id: job.id,
2021-01-21 13:42:43 +00:00
state: state || await job.getState(),
2022-08-08 08:42:08 +00:00
type: job.queueName as JobType,
data: job.data,
2022-08-08 08:42:08 +00:00
progress: job.progress as number,
priority: job.opts.priority,
2018-07-10 15:02:20 +00:00
error,
createdAt: new Date(job.timestamp),
finishedOn: new Date(job.finishedOn),
processedOn: new Date(job.processedOn)
}
2017-11-30 09:51:13 +00:00
}