]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+videos/+video-edit/shared/video-edit.component.ts
Fix default privacy when plugins deleted private
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / +video-edit / shared / video-edit.component.ts
CommitLineData
9abd170d 1import { forkJoin } from 'rxjs'
67ed6552 2import { map } from 'rxjs/operators'
21e493d4 3import { SelectChannelItem } from 'src/types/select-options-item.model'
7294aab0 4import { Component, EventEmitter, Input, NgZone, OnDestroy, OnInit, Output, ViewChild } from '@angular/core'
0f319334 5import { FormArray, FormControl, FormGroup, Validators } from '@angular/forms'
7294aab0 6import { HooksService, PluginService, ServerService } from '@app/core'
67ed6552 7import { removeElementFromArray } from '@app/helpers'
7ed1edbb
C
8import {
9 VIDEO_CATEGORY_VALIDATOR,
10 VIDEO_CHANNEL_VALIDATOR,
11 VIDEO_DESCRIPTION_VALIDATOR,
12 VIDEO_LANGUAGE_VALIDATOR,
13 VIDEO_LICENCE_VALIDATOR,
14 VIDEO_NAME_VALIDATOR,
15 VIDEO_ORIGINALLY_PUBLISHED_AT_VALIDATOR,
16 VIDEO_PRIVACY_VALIDATOR,
17 VIDEO_SCHEDULE_PUBLICATION_AT_VALIDATOR,
18 VIDEO_SUPPORT_VALIDATOR,
19 VIDEO_TAGS_ARRAY_VALIDATOR
20} from '@app/shared/form-validators/video-validators'
21e493d4 21import { FormReactiveValidationMessages, FormValidatorService } from '@app/shared/shared-forms'
9abd170d 22import { InstanceService } from '@app/shared/shared-instance'
67ed6552 23import { VideoCaptionEdit, VideoEdit, VideoService } from '@app/shared/shared-main'
428ccb8b 24import {
2989628b 25 HTMLServerConfig,
428ccb8b
C
26 LiveVideo,
27 RegisterClientFormFieldOptions,
28 RegisterClientVideoFieldOptions,
428ccb8b
C
29 VideoConstant,
30 VideoDetails,
31 VideoPrivacy
32} from '@shared/models'
67ed6552
C
33import { I18nPrimengCalendarService } from './i18n-primeng-calendar.service'
34import { VideoCaptionAddModalComponent } from './video-caption-add-modal.component'
c6c0fa6c 35import { VideoEditType } from './video-edit.type'
02c01341
RK
36
37type VideoLanguages = VideoConstant<string> & { group?: string }
0f319334
C
38type PluginField = {
39 commonOptions: RegisterClientFormFieldOptions
40 videoFormOptions: RegisterClientVideoFieldOptions
41}
ff249f49
C
42
43@Component({
44 selector: 'my-video-edit',
45 styleUrls: [ './video-edit.component.scss' ],
46 templateUrl: './video-edit.component.html'
47})
40e87e9e 48export class VideoEditComponent implements OnInit, OnDestroy {
ff249f49
C
49 @Input() form: FormGroup
50 @Input() formErrors: { [ id: string ]: string } = {}
e309822b 51 @Input() validationMessages: FormReactiveValidationMessages = {}
0f319334
C
52
53 @Input() videoToUpdate: VideoDetails
54
9abd170d 55 @Input() userVideoChannels: SelectChannelItem[] = []
bbe0f064 56 @Input() schedulePublicationPossible = true
0f319334 57
6913f691 58 @Input() videoCaptions: (VideoCaptionEdit & { captionPath?: string })[] = []
0f319334 59
14e2014a 60 @Input() waitTranscodingEnabled = true
c6c0fa6c 61 @Input() type: VideoEditType
a5cf76af 62 @Input() liveVideo: LiveVideo
40e87e9e 63
f36da21e 64 @ViewChild('videoCaptionAddModal', { static: true }) videoCaptionAddModal: VideoCaptionAddModalComponent
bbe0f064 65
7294aab0
C
66 @Output() pluginFieldsAdded = new EventEmitter<void>()
67
bbe0f064
C
68 // So that it can be accessed in the template
69 readonly SPECIAL_SCHEDULED_PRIVACY = VideoEdit.SPECIAL_SCHEDULED_PRIVACY
ff249f49 70
851f5daa 71 videoPrivacies: VideoConstant<VideoPrivacy>[] = []
8cd7faaa
C
72 videoCategories: VideoConstant<number>[] = []
73 videoLicences: VideoConstant<number>[] = []
02c01341 74 videoLanguages: VideoLanguages[] = []
ff249f49 75
7294aab0
C
76 pluginDataFormGroup: FormGroup
77
bbe0f064
C
78 schedulePublicationEnabled = false
79
bbe0f064
C
80 calendarLocale: any = {}
81 minScheduledDate = new Date()
1e74f19a 82 myYearRange = '1880:' + (new Date()).getFullYear()
bbe0f064
C
83
84 calendarTimezone: string
85 calendarDateFormat: string
ff249f49 86
2989628b 87 serverConfig: HTMLServerConfig
ba430d75 88
0f319334 89 pluginFields: PluginField[] = []
7294aab0 90
244b4ae3 91 private schedulerInterval: any
0f7fedc3 92 private firstPatchDone = false
772d5642 93 private initialVideoCaptions: string[] = []
40e87e9e 94
ff249f49 95 constructor (
d18d6478 96 private formValidatorService: FormValidatorService,
851f5daa 97 private videoService: VideoService,
bbe0f064 98 private serverService: ServerService,
7294aab0 99 private pluginService: PluginService,
02c01341 100 private instanceService: InstanceService,
84c7cde6 101 private i18nPrimengCalendarService: I18nPrimengCalendarService,
7294aab0
C
102 private ngZone: NgZone,
103 private hooks: HooksService
e309822b 104 ) {
bbe0f064
C
105 this.calendarTimezone = this.i18nPrimengCalendarService.getTimezone()
106 this.calendarDateFormat = this.i18nPrimengCalendarService.getDateFormat()
e309822b 107 }
ff249f49
C
108
109 updateForm () {
244b4ae3 110 const defaultValues: any = {
d18d6478
C
111 nsfw: 'false',
112 commentsEnabled: 'true',
7f2cfe3a 113 downloadEnabled: 'true',
2186386c 114 waitTranscoding: 'true',
d18d6478
C
115 tags: []
116 }
244b4ae3 117 const obj: any = {
7ed1edbb
C
118 name: VIDEO_NAME_VALIDATOR,
119 privacy: VIDEO_PRIVACY_VALIDATOR,
120 channelId: VIDEO_CHANNEL_VALIDATOR,
d18d6478
C
121 nsfw: null,
122 commentsEnabled: null,
7f2cfe3a 123 downloadEnabled: null,
2186386c 124 waitTranscoding: null,
7ed1edbb
C
125 category: VIDEO_CATEGORY_VALIDATOR,
126 licence: VIDEO_LICENCE_VALIDATOR,
127 language: VIDEO_LANGUAGE_VALIDATOR,
128 description: VIDEO_DESCRIPTION_VALIDATOR,
129 tags: VIDEO_TAGS_ARRAY_VALIDATOR,
d18d6478 130 previewfile: null,
7ed1edbb
C
131 support: VIDEO_SUPPORT_VALIDATOR,
132 schedulePublicationAt: VIDEO_SCHEDULE_PUBLICATION_AT_VALIDATOR,
c6c0fa6c 133 originallyPublishedAt: VIDEO_ORIGINALLY_PUBLISHED_AT_VALIDATOR,
b5b68755 134 liveStreamKey: null,
bb4ba6d9 135 permanentLive: null,
b5b68755 136 saveReplay: null
d18d6478 137 }
ff249f49 138
d18d6478
C
139 this.formValidatorService.updateForm(
140 this.form,
141 this.formErrors,
142 this.validationMessages,
143 obj,
144 defaultValues
145 )
74af5145 146
40e87e9e
C
147 this.form.addControl('captions', new FormArray([
148 new FormGroup({
149 language: new FormControl(),
150 captionfile: new FormControl()
151 })
152 ]))
153
bbe0f064
C
154 this.trackChannelChange()
155 this.trackPrivacyChange()
bb4ba6d9 156 this.trackLivePermanentFieldChange()
bbe0f064
C
157 }
158
159 ngOnInit () {
160 this.updateForm()
161
7294aab0
C
162 this.pluginService.ensurePluginsAreLoaded('video-edit')
163 .then(() => this.updatePluginFields())
164
ba430d75
C
165 this.serverService.getVideoCategories()
166 .subscribe(res => this.videoCategories = res)
7294aab0 167
ba430d75
C
168 this.serverService.getVideoLicences()
169 .subscribe(res => this.videoLicences = res)
7294aab0 170
02c01341
RK
171 forkJoin([
172 this.instanceService.getAbout(),
173 this.serverService.getVideoLanguages()
174 ]).pipe(map(([ about, languages ]) => ({ about, languages })))
175 .subscribe(res => {
176 this.videoLanguages = res.languages
7294aab0
C
177 .map(l => {
178 return res.about.instance.languages.includes(l.id)
179 ? { ...l, group: $localize`Instance languages`, groupOrder: 0 }
180 : { ...l, group: $localize`All languages`, groupOrder: 1 }
181 })
02c01341
RK
182 .sort((a, b) => a.groupOrder - b.groupOrder)
183 })
ba430d75
C
184
185 this.serverService.getVideoPrivacies()
02c01341 186 .subscribe(privacies => {
29510651 187 this.videoPrivacies = this.videoService.explainedPrivacyLabels(privacies).videoPrivacies
a3f45a2a 188
02c01341
RK
189 if (this.schedulePublicationPossible) {
190 this.videoPrivacies.push({
191 id: this.SPECIAL_SCHEDULED_PRIVACY,
66357162
C
192 label: $localize`Scheduled`,
193 description: $localize`Hide the video until a specific date`
02c01341
RK
194 })
195 }
196 })
bbe0f064 197
2989628b 198 this.serverConfig = this.serverService.getHTMLConfig()
851f5daa 199
772d5642 200 this.initialVideoCaptions = this.videoCaptions.map(c => c.language.id)
84c7cde6
C
201
202 this.ngZone.runOutsideAngular(() => {
203 this.schedulerInterval = setInterval(() => this.minScheduledDate = new Date(), 1000 * 60) // Update every minute
204 })
7294aab0
C
205
206 this.hooks.runAction('action:video-edit.init', 'video-edit', { type: this.type })
40e87e9e
C
207 }
208
209 ngOnDestroy () {
210 if (this.schedulerInterval) clearInterval(this.schedulerInterval)
211 }
212
ddb62a85
C
213 getExistingCaptions () {
214 return this.videoCaptions
215 .filter(c => c.action !== 'REMOVE')
216 .map(c => c.language.id)
217 }
218
40e87e9e 219 onCaptionAdded (caption: VideoCaptionEdit) {
f4001cf4
C
220 const existingCaption = this.videoCaptions.find(c => c.language.id === caption.language.id)
221
222 // Replace existing caption?
223 if (existingCaption) {
224 Object.assign(existingCaption, caption, { action: 'CREATE' as 'CREATE' })
ad774752
C
225 } else {
226 this.videoCaptions.push(
227 Object.assign(caption, { action: 'CREATE' as 'CREATE' })
228 )
f4001cf4
C
229 }
230
ad774752 231 this.sortVideoCaptions()
40e87e9e
C
232 }
233
772d5642
C
234 async deleteCaption (caption: VideoCaptionEdit) {
235 // Caption recovers his former state
236 if (caption.action && this.initialVideoCaptions.indexOf(caption.language.id) !== -1) {
237 caption.action = undefined
238 return
239 }
240
40e87e9e
C
241 // This caption is not on the server, just remove it from our array
242 if (caption.action === 'CREATE') {
243 removeElementFromArray(this.videoCaptions, caption)
244 return
245 }
246
247 caption.action = 'REMOVE' as 'REMOVE'
248 }
249
250 openAddCaptionModal () {
251 this.videoCaptionAddModal.show()
bbe0f064
C
252 }
253
b5b68755
C
254 isSaveReplayEnabled () {
255 return this.serverConfig.live.allowReplay
256 }
257
bb4ba6d9
C
258 isPermanentLiveEnabled () {
259 return this.form.value['permanentLive'] === true
260 }
261
0f319334
C
262 isPluginFieldHidden (pluginField: PluginField) {
263 if (typeof pluginField.commonOptions.hidden !== 'function') return false
264
265 return pluginField.commonOptions.hidden({
266 formValues: this.form.value,
267 videoToUpdate: this.videoToUpdate,
268 liveVideo: this.liveVideo
269 })
270 }
271
ad774752
C
272 private sortVideoCaptions () {
273 this.videoCaptions.sort((v1, v2) => {
274 if (v1.language.label < v2.language.label) return -1
275 if (v1.language.label === v2.language.label) return 0
276
277 return 1
278 })
279 }
280
7294aab0
C
281 private updatePluginFields () {
282 this.pluginFields = this.pluginService.getRegisteredVideoFormFields(this.type)
283
284 if (this.pluginFields.length === 0) return
285
286 const obj: any = {}
287
288 for (const setting of this.pluginFields) {
289 obj[setting.commonOptions.name] = new FormControl(setting.commonOptions.default)
290 }
291
292 this.pluginDataFormGroup = new FormGroup(obj)
293 this.form.addControl('pluginData', this.pluginDataFormGroup)
294
295 this.pluginFieldsAdded.emit()
296 }
297
bbe0f064 298 private trackPrivacyChange () {
4adf2673 299 // We will update the schedule input and the wait transcoding checkbox validators
bbe0f064
C
300 this.form.controls[ 'privacy' ]
301 .valueChanges
302 .pipe(map(res => parseInt(res.toString(), 10)))
303 .subscribe(
304 newPrivacyId => {
0f7fedc3 305
bbe0f064
C
306 this.schedulePublicationEnabled = newPrivacyId === this.SPECIAL_SCHEDULED_PRIVACY
307
308 // Value changed
309 const scheduleControl = this.form.get('schedulePublicationAt')
310 const waitTranscodingControl = this.form.get('waitTranscoding')
311
312 if (this.schedulePublicationEnabled) {
313 scheduleControl.setValidators([ Validators.required ])
314
315 waitTranscodingControl.disable()
316 waitTranscodingControl.setValue(false)
317 } else {
318 scheduleControl.clearValidators()
319
320 waitTranscodingControl.enable()
0f7fedc3
C
321
322 // Do not update the control value on first patch (values come from the server)
323 if (this.firstPatchDone === true) {
324 waitTranscodingControl.setValue(true)
325 }
bbe0f064
C
326 }
327
328 scheduleControl.updateValueAndValidity()
329 waitTranscodingControl.updateValueAndValidity()
0f7fedc3
C
330
331 this.firstPatchDone = true
332
bbe0f064
C
333 }
334 )
335 }
336
337 private trackChannelChange () {
74af5145 338 // We will update the "support" field depending on the channel
2186386c 339 this.form.controls[ 'channelId' ]
74af5145
C
340 .valueChanges
341 .pipe(map(res => parseInt(res.toString(), 10)))
342 .subscribe(
343 newChannelId => {
2186386c 344 const oldChannelId = parseInt(this.form.value[ 'channelId' ], 10)
74af5145
C
345
346 // Not initialized yet
347 if (isNaN(newChannelId)) return
348 const newChannel = this.userVideoChannels.find(c => c.id === newChannelId)
d18d6478 349 if (!newChannel) return
74af5145 350
6f79be11
C
351 // Wait support field update
352 setTimeout(() => {
353 const currentSupport = this.form.value[ 'support' ]
74af5145 354
6f79be11 355 // First time we set the channel?
c6c0fa6c
C
356 if (isNaN(oldChannelId)) {
357 // Fill support if it's empty
358 if (!currentSupport) this.updateSupportField(newChannel.support)
359
360 return
361 }
6f79be11
C
362
363 const oldChannel = this.userVideoChannels.find(c => c.id === oldChannelId)
364 if (!newChannel || !oldChannel) {
365 console.error('Cannot find new or old channel.')
366 return
367 }
74af5145 368
6f79be11
C
369 // If the current support text is not the same than the old channel, the user updated it.
370 // We don't want the user to lose his text, so stop here
371 if (currentSupport && currentSupport !== oldChannel.support) return
74af5145 372
6f79be11
C
373 // Update the support text with our new channel
374 this.updateSupportField(newChannel.support)
375 })
74af5145
C
376 }
377 )
ff249f49
C
378 }
379
bb4ba6d9
C
380 private trackLivePermanentFieldChange () {
381 // We will update the "support" field depending on the channel
382 this.form.controls['permanentLive']
383 .valueChanges
384 .subscribe(
385 permanentLive => {
386 const saveReplayControl = this.form.controls['saveReplay']
387
388 if (permanentLive === true) {
389 saveReplayControl.setValue(false)
390 saveReplayControl.disable()
391 } else {
392 saveReplayControl.enable()
393 }
394 }
395 )
396 }
397
74af5145
C
398 private updateSupportField (support: string) {
399 return this.form.patchValue({ support: support || '' })
400 }
ff249f49 401}