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