]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/lib/jobs/http-request-job-scheduler/http-request-unicast-handler.ts
Begin activitypub
[github/Chocobozzz/PeerTube.git] / server / lib / jobs / http-request-job-scheduler / http-request-unicast-handler.ts
1 import * as Bluebird from 'bluebird'
2
3 import { database as db } from '../../../initializers/database'
4 import { logger } from '../../../helpers'
5
6 async function process (data: { videoUUID: string }, jobId: number) {
7
8 }
9
10 function onError (err: Error, jobId: number) {
11 logger.error('Error when optimized video file in job %d.', jobId, err)
12 return Promise.resolve()
13 }
14
15 async function onSuccess (jobId: number) {
16
17 }
18
19 // ---------------------------------------------------------------------------
20
21 export {
22 process,
23 onError,
24 onSuccess
25 }