]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-edit/video-add-components/video-upload.component.ts
Better label for video privacies
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-edit / video-add-components / video-upload.component.ts
CommitLineData
fbad87b0
C
1import { HttpEventType, HttpResponse } from '@angular/common/http'
2import { Component, EventEmitter, OnDestroy, OnInit, Output, ViewChild } from '@angular/core'
3import { Router } from '@angular/router'
fbad87b0
C
4import { LoadingBarService } from '@ngx-loading-bar/core'
5import { NotificationsService } from 'angular2-notifications'
6import { BytesPipe } from 'ngx-pipes'
7import { Subscription } from 'rxjs'
78848714
C
8import { VideoPrivacy } from '../../../../../../shared/models/videos'
9import { AuthService, ServerService } from '../../../core'
10import { VideoEdit } from '../../../shared/video/video-edit.model'
11import { VideoService } from '../../../shared/video/video.service'
fbad87b0 12import { I18n } from '@ngx-translate/i18n-polyfill'
78848714
C
13import { VideoSend } from '@app/videos/+video-edit/video-add-components/video-send'
14import { CanComponentDeactivate } from '@app/shared/guards/can-deactivate-guard.service'
15import { FormValidatorService, UserService } from '@app/shared'
fbad87b0 16import { VideoCaptionService } from '@app/shared/video-caption'
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',
fbad87b0
C
23 './video-upload.component.scss'
24 ]
25})
43620009 26export class VideoUploadComponent extends VideoSend implements OnInit, OnDestroy, CanComponentDeactivate {
fbad87b0
C
27 @Output() firstStepDone = new EventEmitter<string>()
28 @ViewChild('videofileInput') videofileInput
29
30 // So that it can be accessed in the template
31 readonly SPECIAL_SCHEDULED_PRIVACY = VideoEdit.SPECIAL_SCHEDULED_PRIVACY
32
43620009 33 userVideoQuotaUsed = 0
bee0abff 34 userVideoQuotaUsedDaily = 0
43620009 35
fbad87b0
C
36 isUploadingVideo = false
37 isUpdatingVideo = false
38 videoUploaded = false
39 videoUploadObservable: Subscription = null
40 videoUploadPercents = 0
41 videoUploadedIds = {
42 id: 0,
43 uuid: ''
44 }
45
43620009 46 protected readonly DEFAULT_VIDEO_PRIVACY = VideoPrivacy.PUBLIC
fbad87b0
C
47
48 constructor (
49 protected formValidatorService: FormValidatorService,
43620009
C
50 protected loadingBar: LoadingBarService,
51 protected notificationsService: NotificationsService,
52 protected authService: AuthService,
53 protected serverService: ServerService,
54 protected videoService: VideoService,
55 protected videoCaptionService: VideoCaptionService,
fbad87b0 56 private userService: UserService,
43620009
C
57 private router: Router,
58 private i18n: I18n
fbad87b0
C
59 ) {
60 super()
61 }
62
63 get videoExtensions () {
64 return this.serverService.getConfig().video.file.extensions.join(',')
65 }
66
67 ngOnInit () {
43620009 68 super.ngOnInit()
fbad87b0
C
69
70 this.userService.getMyVideoQuotaUsed()
348106f2
C
71 .subscribe(data => {
72 this.userVideoQuotaUsed = data.videoQuotaUsed
73 this.userVideoQuotaUsedDaily = data.videoQuotaUsedDaily
74 })
fbad87b0
C
75 }
76
77 ngOnDestroy () {
43620009 78 if (this.videoUploadObservable) this.videoUploadObservable.unsubscribe()
fbad87b0
C
79 }
80
81 canDeactivate () {
82 let text = ''
83
84 if (this.videoUploaded === true) {
85 // FIXME: cannot concatenate strings inside i18n service :/
60979b07 86 text = this.i18n('Your video was uploaded to your account and is private.') +
fbad87b0
C
87 this.i18n('But associated data (tags, description...) will be lost, are you sure you want to leave this page?')
88 } else {
89 text = this.i18n('Your video is not uploaded yet, are you sure you want to leave this page?')
90 }
91
92 return {
93 canDeactivate: !this.isUploadingVideo,
94 text
95 }
96 }
97
98 fileChange () {
99 this.uploadFirstStep()
100 }
101
fbad87b0
C
102 cancelUpload () {
103 if (this.videoUploadObservable !== null) {
104 this.videoUploadObservable.unsubscribe()
105 this.isUploadingVideo = false
106 this.videoUploadPercents = 0
107 this.videoUploadObservable = null
108 this.notificationsService.info(this.i18n('Info'), this.i18n('Upload cancelled'))
109 }
110 }
111
112 uploadFirstStep () {
113 const videofile = this.videofileInput.nativeElement.files[0] as File
114 if (!videofile) return
115
116 // Cannot upload videos > 8GB for now
117 if (videofile.size > 8 * 1024 * 1024 * 1024) {
118 this.notificationsService.error(this.i18n('Error'), this.i18n('We are sorry but PeerTube cannot handle videos > 8GB'))
119 return
120 }
121
bee0abff 122 const bytePipes = new BytesPipe()
fbad87b0
C
123 const videoQuota = this.authService.getUser().videoQuota
124 if (videoQuota !== -1 && (this.userVideoQuotaUsed + videofile.size) > videoQuota) {
fbad87b0
C
125 const msg = this.i18n(
126 'Your video quota is exceeded with this video (video size: {{ videoSize }}, used: {{ videoQuotaUsed }}, quota: {{ videoQuota }})',
127 {
128 videoSize: bytePipes.transform(videofile.size, 0),
129 videoQuotaUsed: bytePipes.transform(this.userVideoQuotaUsed, 0),
130 videoQuota: bytePipes.transform(videoQuota, 0)
131 }
132 )
133 this.notificationsService.error(this.i18n('Error'), msg)
134 return
135 }
136
bee0abff
FA
137 const videoQuotaDaily = this.authService.getUser().videoQuotaDaily
138 if (videoQuotaDaily !== -1 && (this.userVideoQuotaUsedDaily + videofile.size) > videoQuotaDaily) {
139 const msg = this.i18n(
140 'Your daily video quota is exceeded with this video (video size: {{ videoSize }}, ' +
141 'used: {{ videoQuotaUsedDaily }}, quota: {{ videoQuotaDaily }})',
142 {
143 videoSize: bytePipes.transform(videofile.size, 0),
144 videoQuotaUsedDaily: bytePipes.transform(this.userVideoQuotaUsedDaily, 0),
145 videoQuotaDaily: bytePipes.transform(videoQuotaDaily, 0)
146 }
147 )
148 this.notificationsService.error(this.i18n('Error'), msg)
149 return
150 }
151
fbad87b0
C
152 const nameWithoutExtension = videofile.name.replace(/\.[^/.]+$/, '')
153 let name: string
154
155 // If the name of the file is very small, keep the extension
156 if (nameWithoutExtension.length < 3) name = videofile.name
157 else name = nameWithoutExtension
158
159 const privacy = this.firstStepPrivacyId.toString()
160 const nsfw = false
161 const waitTranscoding = true
162 const commentsEnabled = true
163 const channelId = this.firstStepChannelId.toString()
164
165 const formData = new FormData()
166 formData.append('name', name)
167 // Put the video "private" -> we are waiting the user validation of the second step
168 formData.append('privacy', VideoPrivacy.PRIVATE.toString())
169 formData.append('nsfw', '' + nsfw)
170 formData.append('commentsEnabled', '' + commentsEnabled)
171 formData.append('waitTranscoding', '' + waitTranscoding)
172 formData.append('channelId', '' + channelId)
173 formData.append('videofile', videofile)
174
175 this.isUploadingVideo = true
176 this.firstStepDone.emit(name)
177
178 this.form.patchValue({
179 name,
180 privacy,
181 nsfw,
182 channelId
183 })
184
8cd7faaa
C
185 this.videoPrivacies = this.videoService.explainedPrivacyLabels(this.videoPrivacies)
186
fbad87b0
C
187 this.videoUploadObservable = this.videoService.uploadVideo(formData).subscribe(
188 event => {
189 if (event.type === HttpEventType.UploadProgress) {
190 this.videoUploadPercents = Math.round(100 * event.loaded / event.total)
191 } else if (event instanceof HttpResponse) {
192 this.videoUploaded = true
193
194 this.videoUploadedIds = event.body.video
195
196 this.videoUploadObservable = null
197 }
198 },
199
200 err => {
201 // Reset progress
202 this.isUploadingVideo = false
203 this.videoUploadPercents = 0
204 this.videoUploadObservable = null
205 this.notificationsService.error(this.i18n('Error'), err.message)
206 }
207 )
208 }
209
210 updateSecondStep () {
211 if (this.checkForm() === false) {
212 return
213 }
214
215 const video = new VideoEdit()
216 video.patch(this.form.value)
217 video.id = this.videoUploadedIds.id
218 video.uuid = this.videoUploadedIds.uuid
219
220 this.isUpdatingVideo = true
43620009
C
221
222 this.updateVideoAndCaptions(video)
fbad87b0
C
223 .subscribe(
224 () => {
225 this.isUpdatingVideo = false
226 this.isUploadingVideo = false
fbad87b0
C
227
228 this.notificationsService.success(this.i18n('Success'), this.i18n('Video published.'))
229 this.router.navigate([ '/videos/watch', video.uuid ])
230 },
231
232 err => {
233 this.isUpdatingVideo = false
234 this.notificationsService.error(this.i18n('Error'), err.message)
235 console.error(err)
236 }
237 )
238 }
239}