]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+videos/+video-edit/shared/video-edit.component.ts
Update angular
[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'
f443a746 3import { SelectChannelItem, SelectOptionsItem } from 'src/types/select-options-item.model'
3c065fe3 4import { ChangeDetectorRef, Component, EventEmitter, Input, NgZone, OnDestroy, OnInit, Output, ViewChild } from '@angular/core'
cc4bf76c 5import { AbstractControl, FormArray, FormControl, FormGroup, Validators } from '@angular/forms'
7294aab0 6import { HooksService, PluginService, ServerService } from '@app/core'
67ed6552 7import { removeElementFromArray } from '@app/helpers'
3c065fe3 8import { BuildFormValidator } from '@app/shared/form-validators'
7ed1edbb
C
9import {
10 VIDEO_CATEGORY_VALIDATOR,
11 VIDEO_CHANNEL_VALIDATOR,
12 VIDEO_DESCRIPTION_VALIDATOR,
13 VIDEO_LANGUAGE_VALIDATOR,
14 VIDEO_LICENCE_VALIDATOR,
15 VIDEO_NAME_VALIDATOR,
16 VIDEO_ORIGINALLY_PUBLISHED_AT_VALIDATOR,
17 VIDEO_PRIVACY_VALIDATOR,
18 VIDEO_SCHEDULE_PUBLICATION_AT_VALIDATOR,
19 VIDEO_SUPPORT_VALIDATOR,
20 VIDEO_TAGS_ARRAY_VALIDATOR
21} from '@app/shared/form-validators/video-validators'
21e493d4 22import { FormReactiveValidationMessages, FormValidatorService } from '@app/shared/shared-forms'
9abd170d 23import { InstanceService } from '@app/shared/shared-instance'
57d74ec8 24import { VideoCaptionEdit, VideoCaptionWithPathEdit, VideoEdit, VideoService } from '@app/shared/shared-main'
080f1402
C
25import { NgbModal } from '@ng-bootstrap/ng-bootstrap'
26import { logger } from '@root-helpers/logger'
fb3c9e2b 27import { PluginInfo } from '@root-helpers/plugins-manager'
428ccb8b 28import {
2989628b 29 HTMLServerConfig,
428ccb8b 30 LiveVideo,
f443a746 31 LiveVideoLatencyMode,
428ccb8b
C
32 RegisterClientFormFieldOptions,
33 RegisterClientVideoFieldOptions,
428ccb8b
C
34 VideoConstant,
35 VideoDetails,
36 VideoPrivacy
37} from '@shared/models'
080f1402 38import { VideoSource } from '@shared/models/videos/video-source'
67ed6552
C
39import { I18nPrimengCalendarService } from './i18n-primeng-calendar.service'
40import { VideoCaptionAddModalComponent } from './video-caption-add-modal.component'
2873a53e 41import { VideoCaptionEditModalContentComponent } from './video-caption-edit-modal-content/video-caption-edit-modal-content.component'
c6c0fa6c 42import { VideoEditType } from './video-edit.type'
02c01341
RK
43
44type VideoLanguages = VideoConstant<string> & { group?: string }
0f319334 45type PluginField = {
fb3c9e2b 46 pluginInfo: PluginInfo
0f319334
C
47 commonOptions: RegisterClientFormFieldOptions
48 videoFormOptions: RegisterClientVideoFieldOptions
49}
ff249f49
C
50
51@Component({
52 selector: 'my-video-edit',
53 styleUrls: [ './video-edit.component.scss' ],
54 templateUrl: './video-edit.component.html'
55})
40e87e9e 56export class VideoEditComponent implements OnInit, OnDestroy {
ff249f49
C
57 @Input() form: FormGroup
58 @Input() formErrors: { [ id: string ]: string } = {}
e309822b 59 @Input() validationMessages: FormReactiveValidationMessages = {}
0f319334
C
60
61 @Input() videoToUpdate: VideoDetails
62
9abd170d 63 @Input() userVideoChannels: SelectChannelItem[] = []
4afec735 64 @Input() forbidScheduledPublication = true
0f319334 65
70a8e50a 66 @Input() videoCaptions: VideoCaptionWithPathEdit[] = []
2e401e85 67 @Input() videoSource: VideoSource
0f319334 68
080f1402
C
69 @Input() hideWaitTranscoding = false
70
c6c0fa6c 71 @Input() type: VideoEditType
a5cf76af 72 @Input() liveVideo: LiveVideo
40e87e9e 73
f36da21e 74 @ViewChild('videoCaptionAddModal', { static: true }) videoCaptionAddModal: VideoCaptionAddModalComponent
bbe0f064 75
0ba9696c 76 @Output() formBuilt = new EventEmitter<void>()
7294aab0
C
77 @Output() pluginFieldsAdded = new EventEmitter<void>()
78
bbe0f064
C
79 // So that it can be accessed in the template
80 readonly SPECIAL_SCHEDULED_PRIVACY = VideoEdit.SPECIAL_SCHEDULED_PRIVACY
ff249f49 81
851f5daa 82 videoPrivacies: VideoConstant<VideoPrivacy>[] = []
8cd7faaa
C
83 videoCategories: VideoConstant<number>[] = []
84 videoLicences: VideoConstant<number>[] = []
02c01341 85 videoLanguages: VideoLanguages[] = []
f443a746
C
86 latencyModes: SelectOptionsItem[] = [
87 {
88 id: LiveVideoLatencyMode.SMALL_LATENCY,
89 label: $localize`Small latency`,
90 description: $localize`Reduce latency to ~15s disabling P2P`
91 },
92 {
93 id: LiveVideoLatencyMode.DEFAULT,
94 label: $localize`Default`,
95 description: $localize`Average latency of 30s`
96 },
97 {
98 id: LiveVideoLatencyMode.HIGH_LATENCY,
99 label: $localize`High latency`,
100 description: $localize`Average latency of 60s increasing P2P ratio`
101 }
102 ]
ff249f49 103
7294aab0
C
104 pluginDataFormGroup: FormGroup
105
bbe0f064
C
106 schedulePublicationEnabled = false
107
bbe0f064
C
108 calendarLocale: any = {}
109 minScheduledDate = new Date()
1e74f19a 110 myYearRange = '1880:' + (new Date()).getFullYear()
bbe0f064
C
111
112 calendarTimezone: string
113 calendarDateFormat: string
ff249f49 114
2989628b 115 serverConfig: HTMLServerConfig
ba430d75 116
0f319334 117 pluginFields: PluginField[] = []
7294aab0 118
244b4ae3 119 private schedulerInterval: any
0f7fedc3 120 private firstPatchDone = false
772d5642 121 private initialVideoCaptions: string[] = []
40e87e9e 122
ff249f49 123 constructor (
d18d6478 124 private formValidatorService: FormValidatorService,
851f5daa 125 private videoService: VideoService,
bbe0f064 126 private serverService: ServerService,
7294aab0 127 private pluginService: PluginService,
02c01341 128 private instanceService: InstanceService,
84c7cde6 129 private i18nPrimengCalendarService: I18nPrimengCalendarService,
7294aab0 130 private ngZone: NgZone,
3c065fe3 131 private hooks: HooksService,
2873a53e 132 private cd: ChangeDetectorRef,
133 private modalService: NgbModal
e309822b 134 ) {
bbe0f064
C
135 this.calendarTimezone = this.i18nPrimengCalendarService.getTimezone()
136 this.calendarDateFormat = this.i18nPrimengCalendarService.getDateFormat()
e309822b 137 }
ff249f49
C
138
139 updateForm () {
244b4ae3 140 const defaultValues: any = {
d18d6478 141 nsfw: 'false',
3cf68b86
C
142 commentsEnabled: this.serverConfig.defaults.publish.commentsEnabled,
143 downloadEnabled: this.serverConfig.defaults.publish.downloadEnabled,
080f1402 144 waitTranscoding: true,
3cf68b86 145 licence: this.serverConfig.defaults.publish.licence,
d18d6478
C
146 tags: []
147 }
3c065fe3 148 const obj: { [ id: string ]: BuildFormValidator } = {
7ed1edbb
C
149 name: VIDEO_NAME_VALIDATOR,
150 privacy: VIDEO_PRIVACY_VALIDATOR,
151 channelId: VIDEO_CHANNEL_VALIDATOR,
d18d6478
C
152 nsfw: null,
153 commentsEnabled: null,
7f2cfe3a 154 downloadEnabled: null,
2186386c 155 waitTranscoding: null,
7ed1edbb
C
156 category: VIDEO_CATEGORY_VALIDATOR,
157 licence: VIDEO_LICENCE_VALIDATOR,
158 language: VIDEO_LANGUAGE_VALIDATOR,
159 description: VIDEO_DESCRIPTION_VALIDATOR,
160 tags: VIDEO_TAGS_ARRAY_VALIDATOR,
d18d6478 161 previewfile: null,
7ed1edbb
C
162 support: VIDEO_SUPPORT_VALIDATOR,
163 schedulePublicationAt: VIDEO_SCHEDULE_PUBLICATION_AT_VALIDATOR,
c6c0fa6c 164 originallyPublishedAt: VIDEO_ORIGINALLY_PUBLISHED_AT_VALIDATOR,
b5b68755 165 liveStreamKey: null,
bb4ba6d9 166 permanentLive: null,
f443a746 167 latencyMode: null,
05a60d85
W
168 saveReplay: null,
169 replayPrivacy: null
d18d6478 170 }
ff249f49 171
3c065fe3 172 this.formValidatorService.updateFormGroup(
d18d6478
C
173 this.form,
174 this.formErrors,
175 this.validationMessages,
176 obj,
177 defaultValues
178 )
74af5145 179
40e87e9e
C
180 this.form.addControl('captions', new FormArray([
181 new FormGroup({
182 language: new FormControl(),
183 captionfile: new FormControl()
184 })
185 ]))
186
bbe0f064
C
187 this.trackChannelChange()
188 this.trackPrivacyChange()
0ba9696c
C
189
190 this.formBuilt.emit()
bbe0f064
C
191 }
192
193 ngOnInit () {
3cf68b86
C
194 this.serverConfig = this.serverService.getHTMLConfig()
195
bbe0f064
C
196 this.updateForm()
197
7294aab0
C
198 this.pluginService.ensurePluginsAreLoaded('video-edit')
199 .then(() => this.updatePluginFields())
200
ba430d75
C
201 this.serverService.getVideoCategories()
202 .subscribe(res => this.videoCategories = res)
7294aab0 203
ba430d75
C
204 this.serverService.getVideoLicences()
205 .subscribe(res => this.videoLicences = res)
7294aab0 206
02c01341
RK
207 forkJoin([
208 this.instanceService.getAbout(),
209 this.serverService.getVideoLanguages()
210 ]).pipe(map(([ about, languages ]) => ({ about, languages })))
211 .subscribe(res => {
212 this.videoLanguages = res.languages
7294aab0 213 .map(l => {
81547acb
FC
214 if (l.id === 'zxx') return { ...l, group: $localize`Other`, groupOrder: 1 }
215
7294aab0
C
216 return res.about.instance.languages.includes(l.id)
217 ? { ...l, group: $localize`Instance languages`, groupOrder: 0 }
81547acb 218 : { ...l, group: $localize`All languages`, groupOrder: 2 }
7294aab0 219 })
02c01341
RK
220 .sort((a, b) => a.groupOrder - b.groupOrder)
221 })
ba430d75
C
222
223 this.serverService.getVideoPrivacies()
02c01341 224 .subscribe(privacies => {
29510651 225 this.videoPrivacies = this.videoService.explainedPrivacyLabels(privacies).videoPrivacies
a3f45a2a 226
4afec735
C
227 // Can't schedule publication if private privacy is not available (could be deleted by a plugin)
228 const hasPrivatePrivacy = this.videoPrivacies.some(p => p.id === VideoPrivacy.PRIVATE)
229 if (this.forbidScheduledPublication || !hasPrivatePrivacy) return
230
231 this.videoPrivacies.push({
232 id: this.SPECIAL_SCHEDULED_PRIVACY,
233 label: $localize`Scheduled`,
234 description: $localize`Hide the video until a specific date`
235 })
02c01341 236 })
bbe0f064 237
772d5642 238 this.initialVideoCaptions = this.videoCaptions.map(c => c.language.id)
84c7cde6
C
239
240 this.ngZone.runOutsideAngular(() => {
241 this.schedulerInterval = setInterval(() => this.minScheduledDate = new Date(), 1000 * 60) // Update every minute
242 })
7294aab0 243
58e735dd 244 const updateFormForPlugins = (values: any) => {
085aba61
C
245 this.form.patchValue(values)
246 this.cd.detectChanges()
247 }
58e735dd 248 this.hooks.runAction('action:video-edit.init', 'video-edit', { type: this.type, updateForm: updateFormForPlugins })
085aba61
C
249
250 this.form.valueChanges.subscribe(() => {
251 this.hooks.runAction('action:video-edit.form.updated', 'video-edit', { type: this.type, formValues: this.form.value })
252 })
40e87e9e
C
253 }
254
255 ngOnDestroy () {
256 if (this.schedulerInterval) clearInterval(this.schedulerInterval)
257 }
258
ddb62a85
C
259 getExistingCaptions () {
260 return this.videoCaptions
261 .filter(c => c.action !== 'REMOVE')
262 .map(c => c.language.id)
263 }
264
57d74ec8 265 onCaptionEdited (caption: VideoCaptionEdit) {
f4001cf4
C
266 const existingCaption = this.videoCaptions.find(c => c.language.id === caption.language.id)
267
268 // Replace existing caption?
269 if (existingCaption) {
57d74ec8 270 Object.assign(existingCaption, caption)
ad774752
C
271 } else {
272 this.videoCaptions.push(
273 Object.assign(caption, { action: 'CREATE' as 'CREATE' })
274 )
f4001cf4
C
275 }
276
ad774752 277 this.sortVideoCaptions()
40e87e9e
C
278 }
279
98ab5dc8 280 deleteCaption (caption: VideoCaptionEdit) {
772d5642 281 // Caption recovers his former state
9df52d66 282 if (caption.action && this.initialVideoCaptions.includes(caption.language.id)) {
772d5642
C
283 caption.action = undefined
284 return
285 }
286
40e87e9e 287 // This caption is not on the server, just remove it from our array
57d74ec8 288 if (caption.action === 'CREATE' || caption.action === 'UPDATE') {
40e87e9e
C
289 removeElementFromArray(this.videoCaptions, caption)
290 return
291 }
292
293 caption.action = 'REMOVE' as 'REMOVE'
294 }
295
296 openAddCaptionModal () {
297 this.videoCaptionAddModal.show()
bbe0f064
C
298 }
299
2873a53e 300 openEditCaptionModal (videoCaption: VideoCaptionWithPathEdit) {
301 const modalRef = this.modalService.open(VideoCaptionEditModalContentComponent, { centered: true, keyboard: false })
302 modalRef.componentInstance.videoCaption = videoCaption
303 modalRef.componentInstance.serverConfig = this.serverConfig
304 modalRef.componentInstance.captionEdited.subscribe(this.onCaptionEdited.bind(this))
305 }
306
05a60d85 307 isSaveReplayAllowed () {
b5b68755
C
308 return this.serverConfig.live.allowReplay
309 }
310
05a60d85
W
311 isSaveReplayEnabled () {
312 return this.form.value['saveReplay'] === true
313 }
314
bb4ba6d9
C
315 isPermanentLiveEnabled () {
316 return this.form.value['permanentLive'] === true
317 }
318
f443a746
C
319 isLatencyModeEnabled () {
320 return this.serverConfig.live.latencySetting.enabled
321 }
322
0f319334
C
323 isPluginFieldHidden (pluginField: PluginField) {
324 if (typeof pluginField.commonOptions.hidden !== 'function') return false
325
326 return pluginField.commonOptions.hidden({
327 formValues: this.form.value,
328 videoToUpdate: this.videoToUpdate,
329 liveVideo: this.liveVideo
330 })
331 }
332
3c065fe3
C
333 getPluginsFields (tab: 'main' | 'plugin-settings') {
334 return this.pluginFields.filter(p => {
335 const wanted = p.videoFormOptions.tab ?? 'plugin-settings'
336
337 return wanted === tab
338 })
339 }
340
ad774752
C
341 private sortVideoCaptions () {
342 this.videoCaptions.sort((v1, v2) => {
343 if (v1.language.label < v2.language.label) return -1
344 if (v1.language.label === v2.language.label) return 0
345
346 return 1
347 })
348 }
349
fb3c9e2b 350 private async updatePluginFields () {
7294aab0
C
351 this.pluginFields = this.pluginService.getRegisteredVideoFormFields(this.type)
352
353 if (this.pluginFields.length === 0) return
354
3c065fe3
C
355 const pluginObj: { [ id: string ]: BuildFormValidator } = {}
356 const pluginValidationMessages: FormReactiveValidationMessages = {}
357 const pluginFormErrors: any = {}
358 const pluginDefaults: any = {}
7294aab0
C
359
360 for (const setting of this.pluginFields) {
fb3c9e2b
C
361 await this.pluginService.translateSetting(setting.pluginInfo.plugin.npmName, setting.commonOptions)
362
3cda7efa
C
363 // Not a form input, just a HTML tag
364 if (setting.commonOptions.type === 'html') continue
365
cc4bf76c 366 const validator = async (control: AbstractControl) => {
3c065fe3
C
367 if (!setting.commonOptions.error) return null
368
cc4bf76c 369 const error = await setting.commonOptions.error({ formValues: this.form.value, value: control.value })
3c065fe3
C
370
371 return error?.error ? { [setting.commonOptions.name]: error.text } : null
372 }
373
374 const name = setting.commonOptions.name
375
376 pluginObj[name] = {
cc4bf76c
C
377 ASYNC_VALIDATORS: [ validator ],
378 VALIDATORS: [],
3c065fe3
C
379 MESSAGES: {}
380 }
381
382 pluginDefaults[name] = setting.commonOptions.default
7294aab0
C
383 }
384
3c065fe3
C
385 this.pluginDataFormGroup = new FormGroup({})
386 this.formValidatorService.updateFormGroup(
387 this.pluginDataFormGroup,
388 pluginFormErrors,
389 pluginValidationMessages,
390 pluginObj,
391 pluginDefaults
392 )
393
7294aab0 394 this.form.addControl('pluginData', this.pluginDataFormGroup)
3c065fe3
C
395 this.formErrors['pluginData'] = pluginFormErrors
396 this.validationMessages['pluginData'] = pluginValidationMessages
7294aab0 397
3c065fe3 398 this.cd.detectChanges()
7294aab0 399 this.pluginFieldsAdded.emit()
cc4bf76c
C
400
401 // Plugins may need other control values to calculate potential errors
402 this.form.valueChanges.subscribe(() => this.formValidatorService.updateTreeValidity(this.pluginDataFormGroup))
7294aab0
C
403 }
404
bbe0f064 405 private trackPrivacyChange () {
4adf2673 406 // We will update the schedule input and the wait transcoding checkbox validators
9df52d66 407 this.form.controls['privacy']
bbe0f064
C
408 .valueChanges
409 .pipe(map(res => parseInt(res.toString(), 10)))
410 .subscribe(
411 newPrivacyId => {
0f7fedc3 412
bbe0f064
C
413 this.schedulePublicationEnabled = newPrivacyId === this.SPECIAL_SCHEDULED_PRIVACY
414
415 // Value changed
416 const scheduleControl = this.form.get('schedulePublicationAt')
417 const waitTranscodingControl = this.form.get('waitTranscoding')
418
419 if (this.schedulePublicationEnabled) {
420 scheduleControl.setValidators([ Validators.required ])
421
422 waitTranscodingControl.disable()
423 waitTranscodingControl.setValue(false)
424 } else {
425 scheduleControl.clearValidators()
426
427 waitTranscodingControl.enable()
0f7fedc3
C
428
429 // Do not update the control value on first patch (values come from the server)
430 if (this.firstPatchDone === true) {
431 waitTranscodingControl.setValue(true)
432 }
bbe0f064
C
433 }
434
435 scheduleControl.updateValueAndValidity()
436 waitTranscodingControl.updateValueAndValidity()
0f7fedc3
C
437
438 this.firstPatchDone = true
439
bbe0f064
C
440 }
441 )
442 }
443
444 private trackChannelChange () {
74af5145 445 // We will update the "support" field depending on the channel
9df52d66 446 this.form.controls['channelId']
74af5145
C
447 .valueChanges
448 .pipe(map(res => parseInt(res.toString(), 10)))
449 .subscribe(
450 newChannelId => {
9df52d66 451 const oldChannelId = parseInt(this.form.value['channelId'], 10)
74af5145
C
452
453 // Not initialized yet
454 if (isNaN(newChannelId)) return
455 const newChannel = this.userVideoChannels.find(c => c.id === newChannelId)
d18d6478 456 if (!newChannel) return
74af5145 457
6f79be11
C
458 // Wait support field update
459 setTimeout(() => {
9df52d66 460 const currentSupport = this.form.value['support']
74af5145 461
6f79be11 462 // First time we set the channel?
c6c0fa6c
C
463 if (isNaN(oldChannelId)) {
464 // Fill support if it's empty
465 if (!currentSupport) this.updateSupportField(newChannel.support)
466
467 return
468 }
6f79be11
C
469
470 const oldChannel = this.userVideoChannels.find(c => c.id === oldChannelId)
471 if (!newChannel || !oldChannel) {
42b40636 472 logger.error('Cannot find new or old channel.')
6f79be11
C
473 return
474 }
74af5145 475
6f79be11
C
476 // If the current support text is not the same than the old channel, the user updated it.
477 // We don't want the user to lose his text, so stop here
478 if (currentSupport && currentSupport !== oldChannel.support) return
74af5145 479
6f79be11
C
480 // Update the support text with our new channel
481 this.updateSupportField(newChannel.support)
482 })
74af5145
C
483 }
484 )
ff249f49
C
485 }
486
74af5145
C
487 private updateSupportField (support: string) {
488 return this.form.patchValue({ support: support || '' })
489 }
ff249f49 490}