2020-04-23 03:32:53 -04:00
|
|
|
import { SendEmailOptions } from './emailer.model'
|
|
|
|
import { VideoResolution } from '@shared/models'
|
2020-04-24 05:33:01 -04:00
|
|
|
import { ContextType } from '../activitypub/context'
|
2020-04-23 03:32:53 -04:00
|
|
|
|
2018-07-10 11:02:20 -04:00
|
|
|
export type JobState = 'active' | 'completed' | 'failed' | 'waiting' | 'delayed'
|
2018-01-25 09:05:18 -05:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
export type JobType =
|
|
|
|
| 'activitypub-http-unicast'
|
|
|
|
| 'activitypub-http-broadcast'
|
|
|
|
| 'activitypub-http-fetcher'
|
|
|
|
| 'activitypub-follow'
|
|
|
|
| 'video-file-import'
|
|
|
|
| 'video-transcoding'
|
|
|
|
| 'email'
|
|
|
|
| 'video-import'
|
|
|
|
| 'videos-views'
|
|
|
|
| 'activitypub-refresher'
|
|
|
|
| 'video-redundancy'
|
2017-11-30 04:51:13 -05:00
|
|
|
|
|
|
|
export interface Job {
|
|
|
|
id: number
|
|
|
|
state: JobState
|
2018-01-25 09:05:18 -05:00
|
|
|
type: JobType
|
2020-01-31 10:56:52 -05:00
|
|
|
data: any
|
|
|
|
error: any
|
2019-12-04 08:49:59 -05:00
|
|
|
createdAt: Date | string
|
|
|
|
finishedOn: Date | string
|
|
|
|
processedOn: Date | string
|
2017-11-30 04:51:13 -05:00
|
|
|
}
|
2020-04-23 03:32:53 -04:00
|
|
|
|
|
|
|
export type ActivitypubHttpBroadcastPayload = {
|
|
|
|
uris: string[]
|
|
|
|
signatureActorId?: number
|
|
|
|
body: any
|
|
|
|
contextType?: ContextType
|
|
|
|
}
|
|
|
|
|
|
|
|
export type ActivitypubFollowPayload = {
|
|
|
|
followerActorId: number
|
|
|
|
name: string
|
|
|
|
host: string
|
|
|
|
isAutoFollow?: boolean
|
|
|
|
assertIsChannel?: boolean
|
|
|
|
}
|
|
|
|
|
|
|
|
export type FetchType = 'activity' | 'video-likes' | 'video-dislikes' | 'video-shares' | 'video-comments' | 'account-playlists'
|
|
|
|
export type ActivitypubHttpFetcherPayload = {
|
|
|
|
uri: string
|
|
|
|
type: FetchType
|
|
|
|
videoId?: number
|
|
|
|
accountId?: number
|
|
|
|
}
|
|
|
|
|
|
|
|
export type ActivitypubHttpUnicastPayload = {
|
|
|
|
uri: string
|
|
|
|
signatureActorId?: number
|
|
|
|
body: any
|
|
|
|
contextType?: ContextType
|
|
|
|
}
|
|
|
|
|
|
|
|
export type RefreshPayload = {
|
|
|
|
type: 'video' | 'video-playlist' | 'actor'
|
|
|
|
url: string
|
|
|
|
}
|
|
|
|
|
|
|
|
export type EmailPayload = SendEmailOptions
|
|
|
|
|
|
|
|
export type VideoFileImportPayload = {
|
|
|
|
videoUUID: string
|
|
|
|
filePath: string
|
|
|
|
}
|
|
|
|
|
2020-05-14 05:10:26 -04:00
|
|
|
export type VideoImportTorrentPayloadType = 'magnet-uri' | 'torrent-file'
|
|
|
|
export type VideoImportYoutubeDLPayloadType = 'youtube-dl'
|
|
|
|
|
2020-04-23 03:32:53 -04:00
|
|
|
export type VideoImportYoutubeDLPayload = {
|
2020-05-14 05:10:26 -04:00
|
|
|
type: VideoImportYoutubeDLPayloadType
|
2020-04-23 03:32:53 -04:00
|
|
|
videoImportId: number
|
|
|
|
|
|
|
|
generateThumbnail: boolean
|
|
|
|
generatePreview: boolean
|
|
|
|
|
|
|
|
fileExt?: string
|
|
|
|
}
|
|
|
|
export type VideoImportTorrentPayload = {
|
2020-05-14 05:10:26 -04:00
|
|
|
type: VideoImportTorrentPayloadType
|
2020-04-23 03:32:53 -04:00
|
|
|
videoImportId: number
|
|
|
|
}
|
|
|
|
export type VideoImportPayload = VideoImportYoutubeDLPayload | VideoImportTorrentPayload
|
|
|
|
|
|
|
|
export type VideoRedundancyPayload = {
|
|
|
|
videoId: number
|
|
|
|
}
|
|
|
|
|
|
|
|
// Video transcoding payloads
|
|
|
|
|
|
|
|
interface BaseTranscodingPayload {
|
|
|
|
videoUUID: string
|
|
|
|
isNewVideo?: boolean
|
|
|
|
}
|
|
|
|
|
|
|
|
interface HLSTranscodingPayload extends BaseTranscodingPayload {
|
|
|
|
type: 'hls'
|
|
|
|
isPortraitMode?: boolean
|
|
|
|
resolution: VideoResolution
|
|
|
|
copyCodecs: boolean
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface NewResolutionTranscodingPayload extends BaseTranscodingPayload {
|
|
|
|
type: 'new-resolution'
|
|
|
|
isPortraitMode?: boolean
|
|
|
|
resolution: VideoResolution
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface MergeAudioTranscodingPayload extends BaseTranscodingPayload {
|
|
|
|
type: 'merge-audio'
|
|
|
|
resolution: VideoResolution
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface OptimizeTranscodingPayload extends BaseTranscodingPayload {
|
|
|
|
type: 'optimize'
|
|
|
|
}
|
|
|
|
|
|
|
|
export type VideoTranscodingPayload =
|
|
|
|
HLSTranscodingPayload
|
|
|
|
| NewResolutionTranscodingPayload
|
|
|
|
| OptimizeTranscodingPayload
|
|
|
|
| MergeAudioTranscodingPayload
|