]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/server/job.model.ts
44f92abf158b24865b71ededfcd12df60f01248c
[github/Chocobozzz/PeerTube.git] / shared / models / server / job.model.ts
1 import { ContextType } from '../activitypub/context'
2 import { VideoResolution } from '../videos/video-resolution.enum'
3 import { SendEmailOptions } from './emailer.model'
4
5 export type JobState = 'active' | 'completed' | 'failed' | 'waiting' | 'delayed' | 'paused'
6
7 export type JobType =
8 | 'activitypub-http-unicast'
9 | 'activitypub-http-broadcast'
10 | 'activitypub-http-fetcher'
11 | 'activitypub-follow'
12 | 'video-file-import'
13 | 'video-transcoding'
14 | 'email'
15 | 'video-import'
16 | 'videos-views'
17 | 'activitypub-refresher'
18 | 'video-redundancy'
19 | 'video-live-ending'
20
21 export interface Job {
22 id: number
23 state: JobState
24 type: JobType
25 data: any
26 priority: number
27 progress: number
28 error: any
29 createdAt: Date | string
30 finishedOn: Date | string
31 processedOn: Date | string
32 }
33
34 export type ActivitypubHttpBroadcastPayload = {
35 uris: string[]
36 signatureActorId?: number
37 body: any
38 contextType?: ContextType
39 }
40
41 export type ActivitypubFollowPayload = {
42 followerActorId: number
43 name: string
44 host: string
45 isAutoFollow?: boolean
46 assertIsChannel?: boolean
47 }
48
49 export type FetchType = 'activity' | 'video-likes' | 'video-dislikes' | 'video-shares' | 'video-comments' | 'account-playlists'
50 export type ActivitypubHttpFetcherPayload = {
51 uri: string
52 type: FetchType
53 videoId?: number
54 accountId?: number
55 }
56
57 export type ActivitypubHttpUnicastPayload = {
58 uri: string
59 signatureActorId?: number
60 body: any
61 contextType?: ContextType
62 }
63
64 export type RefreshPayload = {
65 type: 'video' | 'video-playlist' | 'actor'
66 url: string
67 }
68
69 export type EmailPayload = SendEmailOptions
70
71 export type VideoFileImportPayload = {
72 videoUUID: string
73 filePath: string
74 }
75
76 export type VideoImportTorrentPayloadType = 'magnet-uri' | 'torrent-file'
77 export type VideoImportYoutubeDLPayloadType = 'youtube-dl'
78
79 export type VideoImportYoutubeDLPayload = {
80 type: VideoImportYoutubeDLPayloadType
81 videoImportId: number
82
83 generateThumbnail: boolean
84 generatePreview: boolean
85 fileExt?: string
86 }
87 export type VideoImportTorrentPayload = {
88 type: VideoImportTorrentPayloadType
89 videoImportId: number
90 }
91 export type VideoImportPayload = VideoImportYoutubeDLPayload | VideoImportTorrentPayload
92
93 export type VideoRedundancyPayload = {
94 videoId: number
95 }
96
97 // Video transcoding payloads
98
99 interface BaseTranscodingPayload {
100 videoUUID: string
101 isNewVideo?: boolean
102 }
103
104 export interface HLSTranscodingPayload extends BaseTranscodingPayload {
105 type: 'new-resolution-to-hls'
106 isPortraitMode?: boolean
107 resolution: VideoResolution
108 copyCodecs: boolean
109 isMaxQuality: boolean
110 }
111
112 export interface NewResolutionTranscodingPayload extends BaseTranscodingPayload {
113 type: 'new-resolution-to-webtorrent'
114 isPortraitMode?: boolean
115 resolution: VideoResolution
116 }
117
118 export interface MergeAudioTranscodingPayload extends BaseTranscodingPayload {
119 type: 'merge-audio-to-webtorrent'
120 resolution: VideoResolution
121 }
122
123 export interface OptimizeTranscodingPayload extends BaseTranscodingPayload {
124 type: 'optimize-to-webtorrent'
125 }
126
127 export type VideoTranscodingPayload =
128 HLSTranscodingPayload
129 | NewResolutionTranscodingPayload
130 | OptimizeTranscodingPayload
131 | MergeAudioTranscodingPayload
132
133 export interface VideoLiveEndingPayload {
134 videoId: number
135 }