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