]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/shared-main/video/video-edit.model.ts
Fix live/upload redirection
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-main / video / video-edit.model.ts
CommitLineData
67ed6552 1import { Video, VideoPrivacy, VideoScheduleUpdate, VideoUpdate } from '@shared/models'
9d9597df 2
2186386c 3export class VideoEdit implements VideoUpdate {
bbe0f064
C
4 static readonly SPECIAL_SCHEDULED_PRIVACY = -1
5
404b54e1
C
6 category: number
7 licence: number
9d3ef9fe 8 language: string
404b54e1
C
9 description: string
10 name: string
11 tags: string[]
12 nsfw: boolean
47564bbe 13 commentsEnabled: boolean
7f2cfe3a 14 downloadEnabled: boolean
2186386c 15 waitTranscoding: boolean
0f320037 16 channelId: number
fd45e8f4 17 privacy: VideoPrivacy
07fa4c97 18 support: string
6de36768
C
19 thumbnailfile?: any
20 previewfile?: any
21 thumbnailUrl: string
22 previewUrl: string
bbe0f064 23 scheduleUpdate?: VideoScheduleUpdate
c8034165 24 originallyPublishedAt?: Date | string
404b54e1 25
2e80d256
C
26 id?: number
27 uuid?: string
28 shortUUID?: string
29
7294aab0
C
30 pluginData?: any
31
8ea1597f
LD
32 constructor (
33 video?: Video & {
9df52d66
C
34 tags: string[]
35 commentsEnabled: boolean
36 downloadEnabled: boolean
37 support: string
38 thumbnailUrl: string
8ea1597f
LD
39 previewUrl: string
40 }) {
fbad87b0
C
41 if (video) {
42 this.id = video.id
43 this.uuid = video.uuid
44 this.category = video.category.id
45 this.licence = video.licence.id
46 this.language = video.language.id
47 this.description = video.description
48 this.name = video.name
49 this.tags = video.tags
50 this.nsfw = video.nsfw
51 this.commentsEnabled = video.commentsEnabled
7f2cfe3a 52 this.downloadEnabled = video.downloadEnabled
fbad87b0
C
53 this.waitTranscoding = video.waitTranscoding
54 this.channelId = video.channel.id
55 this.privacy = video.privacy.id
56 this.support = video.support
57 this.thumbnailUrl = video.thumbnailUrl
58 this.previewUrl = video.previewUrl
bbe0f064 59
fbad87b0 60 this.scheduleUpdate = video.scheduledUpdate
6913f691 61 this.originallyPublishedAt = video.originallyPublishedAt ? new Date(video.originallyPublishedAt) : null
7294aab0
C
62
63 this.pluginData = video.pluginData
cadb46d8 64 }
9d9597df
C
65 }
66
7294aab0 67 patch (values: { [ id: string ]: any }) {
404b54e1 68 Object.keys(values).forEach((key) => {
9df52d66 69 this[key] = values[key]
404b54e1 70 })
bbe0f064
C
71
72 // If schedule publication, the video is private and will be changed to public privacy
e94fc297 73 if (parseInt(values['privacy'], 10) === VideoEdit.SPECIAL_SCHEDULED_PRIVACY) {
c199c427 74 const updateAt = new Date(values['schedulePublicationAt'])
bbe0f064
C
75 updateAt.setSeconds(0)
76
77 this.privacy = VideoPrivacy.PRIVATE
78 this.scheduleUpdate = {
79 updateAt: updateAt.toISOString(),
80 privacy: VideoPrivacy.PUBLIC
81 }
e94fc297
C
82 } else {
83 this.scheduleUpdate = null
bbe0f064 84 }
c8034165 85
86 // Convert originallyPublishedAt to string so that function objectToFormData() works correctly
87 if (this.originallyPublishedAt) {
88 const originallyPublishedAt = new Date(values['originallyPublishedAt'])
89 this.originallyPublishedAt = originallyPublishedAt.toISOString()
90 }
7b992a86
C
91
92 // Use the same file than the preview for the thumbnail
93 if (this.previewfile) {
94 this.thumbnailfile = this.previewfile
95 }
404b54e1
C
96 }
97
bbe0f064
C
98 toFormPatch () {
99 const json = {
404b54e1
C
100 category: this.category,
101 licence: this.licence,
102 language: this.language,
103 description: this.description,
07fa4c97 104 support: this.support,
404b54e1
C
105 name: this.name,
106 tags: this.tags,
107 nsfw: this.nsfw,
47564bbe 108 commentsEnabled: this.commentsEnabled,
7f2cfe3a 109 downloadEnabled: this.downloadEnabled,
2186386c 110 waitTranscoding: this.waitTranscoding,
0f320037 111 channelId: this.channelId,
c8034165 112 privacy: this.privacy,
113 originallyPublishedAt: this.originallyPublishedAt
404b54e1 114 }
bbe0f064
C
115
116 // Special case if we scheduled an update
117 if (this.scheduleUpdate) {
118 Object.assign(json, {
119 privacy: VideoEdit.SPECIAL_SCHEDULED_PRIVACY,
120 schedulePublicationAt: new Date(this.scheduleUpdate.updateAt.toString())
121 })
122 }
123
124 return json
404b54e1
C
125 }
126}