X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=shared%2Fmodels%2Fvideos%2Fvideo.model.ts;h=f88f381cb8d52af06f6e7d23c07867ca2af30845;hb=9c2e0dbfa9098675390e00ccb0fa49c51b3c6732;hp=dc12a05d916e3fd8655e8ff82d5d8c9db4dcc800;hpb=fada8d75550dc7365f7e18ee1569b9406251d660;p=github%2FChocobozzz%2FPeerTube.git diff --git a/shared/models/videos/video.model.ts b/shared/models/videos/video.model.ts index dc12a05d9..f88f381cb 100644 --- a/shared/models/videos/video.model.ts +++ b/shared/models/videos/video.model.ts @@ -1,34 +1,39 @@ -import { Account } from '../accounts' +import { VideoResolution, VideoState } from '../../index' +import { Account } from '../actors' +import { Avatar } from '../avatars/avatar.model' import { VideoChannel } from './video-channel.model' import { VideoPrivacy } from './video-privacy.enum' +import { VideoScheduleUpdate } from './video-schedule-update.model' + +export interface VideoConstant { + id: T + label: string +} export interface VideoFile { magnetUri: string - resolution: number - resolutionLabel: string + resolution: VideoConstant size: number // Bytes torrentUrl: string + torrentDownloadUrl: string fileUrl: string + fileDownloadUrl: string } export interface Video { id: number uuid: string - accountName: string createdAt: Date | string updatedAt: Date | string - categoryLabel: string - category: number - licenceLabel: string - licence: number - languageLabel: string - language: number + publishedAt: Date | string + category: VideoConstant + licence: VideoConstant + language: VideoConstant + privacy: VideoConstant description: string duration: number isLocal: boolean name: string - serverHost: string - tags: string[] thumbnailPath: string previewPath: string embedPath: string @@ -36,13 +41,42 @@ export interface Video { likes: number dislikes: number nsfw: boolean + + waitTranscoding?: boolean + state?: VideoConstant + scheduledUpdate?: VideoScheduleUpdate + + account: { + id: number + uuid: string + name: string + displayName: string + url: string + host: string + avatar: Avatar + } + + channel: { + id: number + uuid: string + name: string + displayName: string + url: string + host: string + avatar: Avatar + } } export interface VideoDetails extends Video { - privacy: VideoPrivacy - privacyLabel: string descriptionPath: string + support: string channel: VideoChannel + tags: string[] files: VideoFile[] account: Account + commentsEnabled: boolean + + // Not optional in details (unlike in Video) + waitTranscoding: boolean + state: VideoConstant }