]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+videos/+video-edit/video-add-components/video-import-url.component.ts
Lazy load all routes
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / +video-edit / video-add-components / video-import-url.component.ts
CommitLineData
67ed6552 1import { map, switchMap } from 'rxjs/operators'
fbad87b0
C
2import { Component, EventEmitter, OnInit, Output } from '@angular/core'
3import { Router } from '@angular/router'
67ed6552
C
4import { AuthService, CanComponentDeactivate, Notifier, ServerService } from '@app/core'
5import { getAbsoluteAPIUrl, scrollToTop } from '@app/helpers'
6import { FormValidatorService } from '@app/shared/shared-forms'
7import { VideoCaptionService, VideoEdit, VideoImportService, VideoService } from '@app/shared/shared-main'
1942f11d 8import { VideoSend } from './video-send'
67ed6552
C
9import { LoadingBarService } from '@ngx-loading-bar/core'
10import { I18n } from '@ngx-translate/i18n-polyfill'
11import { VideoPrivacy, VideoUpdate } from '@shared/models'
fbad87b0
C
12
13@Component({
047559af
C
14 selector: 'my-video-import-url',
15 templateUrl: './video-import-url.component.html',
fbad87b0 16 styleUrls: [
78848714 17 '../shared/video-edit.component.scss',
457bb213 18 './video-send.scss'
fbad87b0
C
19 ]
20})
047559af 21export class VideoImportUrlComponent extends VideoSend implements OnInit, CanComponentDeactivate {
fbad87b0 22 @Output() firstStepDone = new EventEmitter<string>()
7373507f 23 @Output() firstStepError = new EventEmitter<void>()
fbad87b0
C
24
25 targetUrl = ''
fbad87b0
C
26
27 isImportingVideo = false
28 hasImportedVideo = false
29 isUpdatingVideo = false
30
fbad87b0 31 video: VideoEdit
7373507f 32 error: string
fbad87b0 33
990b6a0b 34 protected readonly DEFAULT_VIDEO_PRIVACY = VideoPrivacy.PUBLIC
43620009 35
fbad87b0
C
36 constructor (
37 protected formValidatorService: FormValidatorService,
43620009 38 protected loadingBar: LoadingBarService,
f8b2c1b4 39 protected notifier: Notifier,
43620009
C
40 protected authService: AuthService,
41 protected serverService: ServerService,
42 protected videoService: VideoService,
43 protected videoCaptionService: VideoCaptionService,
fbad87b0 44 private router: Router,
fbad87b0 45 private videoImportService: VideoImportService,
fbad87b0
C
46 private i18n: I18n
47 ) {
48 super()
49 }
50
51 ngOnInit () {
43620009 52 super.ngOnInit()
fbad87b0
C
53 }
54
55 canDeactivate () {
56 return { canDeactivate: true }
57 }
58
fbad87b0
C
59 isTargetUrlValid () {
60 return this.targetUrl && this.targetUrl.match(/https?:\/\//)
61 }
62
63 importVideo () {
64 this.isImportingVideo = true
65
66 const videoUpdate: VideoUpdate = {
67 privacy: this.firstStepPrivacyId,
68 waitTranscoding: false,
69 commentsEnabled: true,
7f2cfe3a 70 downloadEnabled: true,
fbad87b0
C
71 channelId: this.firstStepChannelId
72 }
73
5d08a6a7
C
74 this.loadingBar.start()
75
50ad0a1c 76 this.videoImportService
77 .importVideoUrl(this.targetUrl, videoUpdate)
78 .pipe(
79 switchMap(res => {
80 return this.videoCaptionService
81 .listCaptions(res.video.id)
82 .pipe(
83 map(result => ({ video: res.video, videoCaptions: result.data }))
84 )
85 })
86 )
87 .subscribe(
88 ({ video, videoCaptions }) => {
89 this.loadingBar.complete()
90 this.firstStepDone.emit(video.name)
91 this.isImportingVideo = false
92 this.hasImportedVideo = true
93
b1770a0a
K
94 const absoluteAPIUrl = getAbsoluteAPIUrl()
95
96 const thumbnailUrl = video.thumbnailPath
97 ? absoluteAPIUrl + video.thumbnailPath
98 : null
99
100 const previewUrl = video.previewPath
101 ? absoluteAPIUrl + video.previewPath
102 : null
103
50ad0a1c 104 this.video = new VideoEdit(Object.assign(video, {
105 commentsEnabled: videoUpdate.commentsEnabled,
106 downloadEnabled: videoUpdate.downloadEnabled,
107 support: null,
b1770a0a
K
108 thumbnailUrl,
109 previewUrl
50ad0a1c 110 }))
111
112 this.videoCaptions = videoCaptions
113
114 this.hydrateFormFromVideo()
115 },
116
117 err => {
118 this.loadingBar.complete()
119 this.isImportingVideo = false
120 this.firstStepError.emit()
121 this.notifier.error(err.message)
122 }
123 )
fbad87b0
C
124 }
125
126 updateSecondStep () {
127 if (this.checkForm() === false) {
128 return
129 }
130
131 this.video.patch(this.form.value)
132
fbad87b0
C
133 this.isUpdatingVideo = true
134
135 // Update the video
43620009 136 this.updateVideoAndCaptions(this.video)
fbad87b0
C
137 .subscribe(
138 () => {
139 this.isUpdatingVideo = false
f8b2c1b4 140 this.notifier.success(this.i18n('Video to import updated.'))
fbad87b0 141
b2977eec 142 this.router.navigate([ '/my-account', 'video-imports' ])
fbad87b0
C
143 },
144
145 err => {
7373507f
C
146 this.error = err.message
147 scrollToTop()
fbad87b0
C
148 console.error(err)
149 }
150 )
151
152 }
153
154 private hydrateFormFromVideo () {
155 this.form.patchValue(this.video.toFormPatch())
b1770a0a
K
156
157 const objects = [
158 {
159 url: 'thumbnailUrl',
160 name: 'thumbnailfile'
161 },
162 {
163 url: 'previewUrl',
164 name: 'previewfile'
165 }
166 ]
167
168 for (const obj of objects) {
169 fetch(this.video[obj.url])
170 .then(response => response.blob())
171 .then(data => {
172 this.form.patchValue({
173 [ obj.name ]: data
174 })
175 })
176 }
fbad87b0
C
177 }
178}