]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-edit/video-add-components/video-upload.component.ts
Move watch later logic in miniature
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-edit / video-add-components / video-upload.component.ts
CommitLineData
fbad87b0 1import { HttpEventType, HttpResponse } from '@angular/common/http'
c199c427 2import { Component, ElementRef, EventEmitter, OnDestroy, OnInit, Output, ViewChild } from '@angular/core'
fbad87b0 3import { Router } from '@angular/router'
fbad87b0 4import { LoadingBarService } from '@ngx-loading-bar/core'
fbad87b0
C
5import { BytesPipe } from 'ngx-pipes'
6import { Subscription } from 'rxjs'
78848714 7import { VideoPrivacy } from '../../../../../../shared/models/videos'
f8b2c1b4 8import { AuthService, Notifier, ServerService } from '../../../core'
78848714
C
9import { VideoEdit } from '../../../shared/video/video-edit.model'
10import { VideoService } from '../../../shared/video/video.service'
fbad87b0 11import { I18n } from '@ngx-translate/i18n-polyfill'
78848714
C
12import { VideoSend } from '@app/videos/+video-edit/video-add-components/video-send'
13import { CanComponentDeactivate } from '@app/shared/guards/can-deactivate-guard.service'
14import { FormValidatorService, UserService } from '@app/shared'
fbad87b0 15import { VideoCaptionService } from '@app/shared/video-caption'
7373507f 16import { scrollToTop } from '@app/shared/misc/utils'
fbad87b0
C
17
18@Component({
19 selector: 'my-video-upload',
20 templateUrl: './video-upload.component.html',
21 styleUrls: [
78848714 22 '../shared/video-edit.component.scss',
457bb213
C
23 './video-upload.component.scss',
24 './video-send.scss'
fbad87b0
C
25 ]
26})
43620009 27export class VideoUploadComponent extends VideoSend implements OnInit, OnDestroy, CanComponentDeactivate {
fbad87b0 28 @Output() firstStepDone = new EventEmitter<string>()
7373507f 29 @Output() firstStepError = new EventEmitter<void>()
f36da21e 30 @ViewChild('videofileInput', { static: false }) videofileInput: ElementRef<HTMLInputElement>
fbad87b0
C
31
32 // So that it can be accessed in the template
33 readonly SPECIAL_SCHEDULED_PRIVACY = VideoEdit.SPECIAL_SCHEDULED_PRIVACY
34
43620009 35 userVideoQuotaUsed = 0
bee0abff 36 userVideoQuotaUsedDaily = 0
43620009 37
7b992a86 38 isUploadingAudioFile = false
fbad87b0
C
39 isUploadingVideo = false
40 isUpdatingVideo = false
7b992a86 41
fbad87b0
C
42 videoUploaded = false
43 videoUploadObservable: Subscription = null
44 videoUploadPercents = 0
45 videoUploadedIds = {
46 id: 0,
47 uuid: ''
48 }
7b992a86 49
14e2014a 50 waitTranscodingEnabled = true
7b992a86 51 previewfileUpload: File
fbad87b0 52
7373507f 53 error: string
fbad87b0 54
43620009 55 protected readonly DEFAULT_VIDEO_PRIVACY = VideoPrivacy.PUBLIC
fbad87b0
C
56
57 constructor (
58 protected formValidatorService: FormValidatorService,
43620009 59 protected loadingBar: LoadingBarService,
f8b2c1b4 60 protected notifier: Notifier,
43620009
C
61 protected authService: AuthService,
62 protected serverService: ServerService,
63 protected videoService: VideoService,
64 protected videoCaptionService: VideoCaptionService,
fbad87b0 65 private userService: UserService,
43620009
C
66 private router: Router,
67 private i18n: I18n
fbad87b0
C
68 ) {
69 super()
70 }
71
72 get videoExtensions () {
ba430d75 73 return this.serverConfig.video.file.extensions.join(',')
fbad87b0
C
74 }
75
76 ngOnInit () {
43620009 77 super.ngOnInit()
fbad87b0
C
78
79 this.userService.getMyVideoQuotaUsed()
348106f2
C
80 .subscribe(data => {
81 this.userVideoQuotaUsed = data.videoQuotaUsed
82 this.userVideoQuotaUsedDaily = data.videoQuotaUsedDaily
83 })
fbad87b0
C
84 }
85
86 ngOnDestroy () {
43620009 87 if (this.videoUploadObservable) this.videoUploadObservable.unsubscribe()
fbad87b0
C
88 }
89
90 canDeactivate () {
91 let text = ''
92
93 if (this.videoUploaded === true) {
94 // FIXME: cannot concatenate strings inside i18n service :/
8c2b9756 95 text = this.i18n('Your video was uploaded to your account and is private.') + ' ' +
fbad87b0
C
96 this.i18n('But associated data (tags, description...) will be lost, are you sure you want to leave this page?')
97 } else {
98 text = this.i18n('Your video is not uploaded yet, are you sure you want to leave this page?')
99 }
100
101 return {
102 canDeactivate: !this.isUploadingVideo,
103 text
104 }
105 }
106
7b992a86
C
107 getVideoFile () {
108 return this.videofileInput.nativeElement.files[0]
109 }
110
111 getAudioUploadLabel () {
112 const videofile = this.getVideoFile()
113 if (!videofile) return this.i18n('Upload')
114
115 return this.i18n('Upload {{videofileName}}', { videofileName: videofile.name })
116 }
117
fbad87b0
C
118 fileChange () {
119 this.uploadFirstStep()
120 }
121
fbad87b0
C
122 cancelUpload () {
123 if (this.videoUploadObservable !== null) {
124 this.videoUploadObservable.unsubscribe()
125 this.isUploadingVideo = false
126 this.videoUploadPercents = 0
127 this.videoUploadObservable = null
f8b2c1b4 128 this.notifier.info(this.i18n('Upload cancelled'))
fbad87b0
C
129 }
130 }
131
7b992a86
C
132 uploadFirstStep (clickedOnButton = false) {
133 const videofile = this.getVideoFile()
fbad87b0
C
134 if (!videofile) return
135
7b992a86
C
136 if (!this.checkGlobalUserQuota(videofile)) return
137 if (!this.checkDailyUserQuota(videofile)) return
fbad87b0 138
7b992a86
C
139 if (clickedOnButton === false && this.isAudioFile(videofile.name)) {
140 this.isUploadingAudioFile = true
bee0abff
FA
141 return
142 }
143
14e2014a 144 // Build name field
fbad87b0
C
145 const nameWithoutExtension = videofile.name.replace(/\.[^/.]+$/, '')
146 let name: string
147
148 // If the name of the file is very small, keep the extension
149 if (nameWithoutExtension.length < 3) name = videofile.name
150 else name = nameWithoutExtension
151
14e2014a
C
152 // Force user to wait transcoding for unsupported video types in web browsers
153 if (!videofile.name.endsWith('.mp4') && !videofile.name.endsWith('.webm') && !videofile.name.endsWith('.ogv')) {
154 this.waitTranscodingEnabled = false
155 }
156
fbad87b0 157 const privacy = this.firstStepPrivacyId.toString()
ba430d75 158 const nsfw = this.serverConfig.instance.isNSFW
fbad87b0
C
159 const waitTranscoding = true
160 const commentsEnabled = true
7f2cfe3a 161 const downloadEnabled = true
fbad87b0
C
162 const channelId = this.firstStepChannelId.toString()
163
164 const formData = new FormData()
165 formData.append('name', name)
166 // Put the video "private" -> we are waiting the user validation of the second step
167 formData.append('privacy', VideoPrivacy.PRIVATE.toString())
168 formData.append('nsfw', '' + nsfw)
169 formData.append('commentsEnabled', '' + commentsEnabled)
7f2cfe3a 170 formData.append('downloadEnabled', '' + downloadEnabled)
fbad87b0
C
171 formData.append('waitTranscoding', '' + waitTranscoding)
172 formData.append('channelId', '' + channelId)
173 formData.append('videofile', videofile)
174
7b992a86
C
175 if (this.previewfileUpload) {
176 formData.append('previewfile', this.previewfileUpload)
177 formData.append('thumbnailfile', this.previewfileUpload)
178 }
179
fbad87b0
C
180 this.isUploadingVideo = true
181 this.firstStepDone.emit(name)
182
183 this.form.patchValue({
184 name,
185 privacy,
186 nsfw,
7b992a86
C
187 channelId,
188 previewfile: this.previewfileUpload
fbad87b0
C
189 })
190
191 this.videoUploadObservable = this.videoService.uploadVideo(formData).subscribe(
192 event => {
193 if (event.type === HttpEventType.UploadProgress) {
194 this.videoUploadPercents = Math.round(100 * event.loaded / event.total)
195 } else if (event instanceof HttpResponse) {
196 this.videoUploaded = true
197
198 this.videoUploadedIds = event.body.video
199
200 this.videoUploadObservable = null
201 }
202 },
203
204 err => {
205 // Reset progress
206 this.isUploadingVideo = false
207 this.videoUploadPercents = 0
208 this.videoUploadObservable = null
7373507f 209 this.firstStepError.emit()
f8b2c1b4 210 this.notifier.error(err.message)
fbad87b0
C
211 }
212 )
213 }
214
59c9c5d9
C
215 isPublishingButtonDisabled () {
216 return !this.form.valid ||
217 this.isUpdatingVideo === true ||
218 this.videoUploaded !== true
219 }
220
fbad87b0
C
221 updateSecondStep () {
222 if (this.checkForm() === false) {
223 return
224 }
225
226 const video = new VideoEdit()
227 video.patch(this.form.value)
228 video.id = this.videoUploadedIds.id
229 video.uuid = this.videoUploadedIds.uuid
230
231 this.isUpdatingVideo = true
43620009
C
232
233 this.updateVideoAndCaptions(video)
fbad87b0
C
234 .subscribe(
235 () => {
236 this.isUpdatingVideo = false
237 this.isUploadingVideo = false
fbad87b0 238
f8b2c1b4 239 this.notifier.success(this.i18n('Video published.'))
fbad87b0
C
240 this.router.navigate([ '/videos/watch', video.uuid ])
241 },
242
243 err => {
7373507f
C
244 this.error = err.message
245 scrollToTop()
fbad87b0
C
246 console.error(err)
247 }
248 )
249 }
7b992a86
C
250
251 private checkGlobalUserQuota (videofile: File) {
252 const bytePipes = new BytesPipe()
253
254 // Check global user quota
255 const videoQuota = this.authService.getUser().videoQuota
256 if (videoQuota !== -1 && (this.userVideoQuotaUsed + videofile.size) > videoQuota) {
257 const msg = this.i18n(
258 'Your video quota is exceeded with this video (video size: {{videoSize}}, used: {{videoQuotaUsed}}, quota: {{videoQuota}})',
259 {
260 videoSize: bytePipes.transform(videofile.size, 0),
261 videoQuotaUsed: bytePipes.transform(this.userVideoQuotaUsed, 0),
262 videoQuota: bytePipes.transform(videoQuota, 0)
263 }
264 )
265 this.notifier.error(msg)
266
267 return false
268 }
269
270 return true
271 }
272
273 private checkDailyUserQuota (videofile: File) {
274 const bytePipes = new BytesPipe()
275
276 // Check daily user quota
277 const videoQuotaDaily = this.authService.getUser().videoQuotaDaily
278 if (videoQuotaDaily !== -1 && (this.userVideoQuotaUsedDaily + videofile.size) > videoQuotaDaily) {
279 const msg = this.i18n(
280 'Your daily video quota is exceeded with this video (video size: {{videoSize}}, used: {{quotaUsedDaily}}, quota: {{quotaDaily}})',
281 {
282 videoSize: bytePipes.transform(videofile.size, 0),
283 quotaUsedDaily: bytePipes.transform(this.userVideoQuotaUsedDaily, 0),
284 quotaDaily: bytePipes.transform(videoQuotaDaily, 0)
285 }
286 )
287 this.notifier.error(msg)
288
289 return false
290 }
291
292 return true
293 }
294
295 private isAudioFile (filename: string) {
296 return filename.endsWith('.mp3') || filename.endsWith('.flac') || filename.endsWith('.ogg')
297 }
fbad87b0 298}