]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts
Fix default privacy when plugins deleted private
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / +video-edit / video-add-components / video-import-url.component.ts
1 import { map, switchMap } from 'rxjs/operators'
2 import { AfterViewInit, Component, EventEmitter, OnInit, Output } from '@angular/core'
3 import { Router } from '@angular/router'
4 import { AuthService, CanComponentDeactivate, HooksService, Notifier, ServerService } from '@app/core'
5 import { getAbsoluteAPIUrl, scrollToTop } from '@app/helpers'
6 import { FormValidatorService } from '@app/shared/shared-forms'
7 import { VideoCaptionService, VideoEdit, VideoImportService, VideoService } from '@app/shared/shared-main'
8 import { LoadingBarService } from '@ngx-loading-bar/core'
9 import { VideoPrivacy, VideoUpdate } from '@shared/models'
10 import { hydrateFormFromVideo } from '../shared/video-edit-utils'
11 import { VideoSend } from './video-send'
12
13 @Component({
14 selector: 'my-video-import-url',
15 templateUrl: './video-import-url.component.html',
16 styleUrls: [
17 '../shared/video-edit.component.scss',
18 './video-send.scss'
19 ]
20 })
21 export class VideoImportUrlComponent extends VideoSend implements OnInit, AfterViewInit, CanComponentDeactivate {
22 @Output() firstStepDone = new EventEmitter<string>()
23 @Output() firstStepError = new EventEmitter<void>()
24
25 targetUrl = ''
26
27 isImportingVideo = false
28 hasImportedVideo = false
29 isUpdatingVideo = false
30
31 video: VideoEdit
32 error: string
33
34 constructor (
35 protected formValidatorService: FormValidatorService,
36 protected loadingBar: LoadingBarService,
37 protected notifier: Notifier,
38 protected authService: AuthService,
39 protected serverService: ServerService,
40 protected videoService: VideoService,
41 protected videoCaptionService: VideoCaptionService,
42 private router: Router,
43 private videoImportService: VideoImportService,
44 private hooks: HooksService
45 ) {
46 super()
47 }
48
49 ngOnInit () {
50 super.ngOnInit()
51 }
52
53 ngAfterViewInit () {
54 this.hooks.runAction('action:video-url-import.init', 'video-edit')
55 }
56
57 canDeactivate () {
58 return { canDeactivate: true }
59 }
60
61 isTargetUrlValid () {
62 return this.targetUrl && this.targetUrl.match(/https?:\/\//)
63 }
64
65 importVideo () {
66 this.isImportingVideo = true
67
68 const videoUpdate: VideoUpdate = {
69 privacy: this.highestPrivacy,
70 waitTranscoding: false,
71 commentsEnabled: true,
72 downloadEnabled: true,
73 channelId: this.firstStepChannelId
74 }
75
76 this.loadingBar.useRef().start()
77
78 this.videoImportService
79 .importVideoUrl(this.targetUrl, videoUpdate)
80 .pipe(
81 switchMap(res => {
82 return this.videoCaptionService
83 .listCaptions(res.video.id)
84 .pipe(
85 map(result => ({ video: res.video, videoCaptions: result.data }))
86 )
87 })
88 )
89 .subscribe(
90 ({ video, videoCaptions }) => {
91 this.loadingBar.useRef().complete()
92 this.firstStepDone.emit(video.name)
93 this.isImportingVideo = false
94 this.hasImportedVideo = true
95
96 const absoluteAPIUrl = getAbsoluteAPIUrl()
97
98 const thumbnailUrl = video.thumbnailPath
99 ? absoluteAPIUrl + video.thumbnailPath
100 : null
101
102 const previewUrl = video.previewPath
103 ? absoluteAPIUrl + video.previewPath
104 : null
105
106 this.video = new VideoEdit(Object.assign(video, {
107 commentsEnabled: videoUpdate.commentsEnabled,
108 downloadEnabled: videoUpdate.downloadEnabled,
109 privacy: { id: this.firstStepPrivacyId },
110 support: null,
111 thumbnailUrl,
112 previewUrl
113 }))
114
115 this.videoCaptions = videoCaptions
116
117 hydrateFormFromVideo(this.form, this.video, true)
118 },
119
120 err => {
121 this.loadingBar.useRef().complete()
122 this.isImportingVideo = false
123 this.firstStepError.emit()
124 this.notifier.error(err.message)
125 }
126 )
127 }
128
129 updateSecondStep () {
130 if (this.checkForm() === false) {
131 return
132 }
133
134 this.video.patch(this.form.value)
135
136 this.isUpdatingVideo = true
137
138 // Update the video
139 this.updateVideoAndCaptions(this.video)
140 .subscribe(
141 () => {
142 this.isUpdatingVideo = false
143 this.notifier.success($localize`Video to import updated.`)
144
145 this.router.navigate([ '/my-library', 'video-imports' ])
146 },
147
148 err => {
149 this.error = err.message
150 scrollToTop()
151 console.error(err)
152 }
153 )
154 }
155 }