]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/videos/video.model.ts
Add ability to search video channels
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video.model.ts
CommitLineData
2186386c 1import { VideoResolution, VideoState } from '../../index'
50d6de9c 2import { Account } from '../actors'
b64c950a 3import { Avatar } from '../avatars/avatar.model'
59c76ffa 4import { VideoChannel } from './channel/video-channel.model'
fd45e8f4 5import { VideoPrivacy } from './video-privacy.enum'
bbe0f064 6import { VideoScheduleUpdate } from './video-schedule-update.model'
40e87e9e 7import { VideoConstant } from './video-constant.model'
ae5a3dd6 8
93e1258c
C
9export interface VideoFile {
10 magnetUri: string
09700934 11 resolution: VideoConstant<VideoResolution>
93e1258c 12 size: number // Bytes
a96aed15 13 torrentUrl: string
02756fbd 14 torrentDownloadUrl: string
a96aed15 15 fileUrl: string
02756fbd 16 fileDownloadUrl: string
3a6f351b 17 fps: number
93e1258c
C
18}
19
69818c93 20export interface Video {
0a6658fd
C
21 id: number
22 uuid: string
d592e0a9
C
23 createdAt: Date | string
24 updatedAt: Date | string
2922e048 25 publishedAt: Date | string
ae5a3dd6
C
26 category: VideoConstant<number>
27 licence: VideoConstant<number>
9d3ef9fe 28 language: VideoConstant<string>
2243730c 29 privacy: VideoConstant<VideoPrivacy>
69f616ab
C
30 description: string
31 duration: number
32 isLocal: boolean
69f616ab 33 name: string
69f616ab 34 thumbnailPath: string
f981dae8 35 previewPath: string
d8755eed 36 embedPath: string
69f616ab
C
37 views: number
38 likes: number
39 dislikes: number
40 nsfw: boolean
b64c950a 41
2186386c
C
42 waitTranscoding?: boolean
43 state?: VideoConstant<VideoState>
bbe0f064 44 scheduledUpdate?: VideoScheduleUpdate
2186386c 45
26b7305a
C
46 blacklisted?: boolean
47 blacklistedReason?: string
48
b64c950a 49 account: {
03e12d7c
C
50 id: number
51 uuid: string
b64c950a
C
52 name: string
53 displayName: string
54 url: string
55 host: string
56 avatar: Avatar
57 }
0f320037
C
58
59 channel: {
60 id: number
61 uuid: string
62 name: string
63 displayName: string
64 url: string
65 host: string
66 avatar: Avatar
67 }
72c7248b
C
68}
69
70export interface VideoDetails extends Video {
fd45e8f4 71 descriptionPath: string
2422c46b 72 support: string
72c7248b 73 channel: VideoChannel
d48ff09d 74 tags: string[]
93e1258c 75 files: VideoFile[]
b1fa3eba 76 account: Account
47564bbe 77 commentsEnabled: boolean
2186386c
C
78
79 // Not optional in details (unlike in Video)
80 waitTranscoding: boolean
81 state: VideoConstant<VideoState>
69818c93 82}