]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-edit/video-add.component.ts
Add `etc` on some points of the CoC (#305)
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-edit / video-add.component.ts
CommitLineData
202f6b6c 1import { HttpEventType, HttpResponse } from '@angular/common/http'
f6a043df 2import { Component, OnDestroy, OnInit, ViewChild } from '@angular/core'
df98563e
C
3import { FormBuilder, FormGroup } from '@angular/forms'
4import { Router } from '@angular/router'
ce5496d6 5import { UserService } from '@app/shared'
f6a043df 6import { CanComponentDeactivate } from '@app/shared/guards/can-deactivate-guard.service'
68e24d72 7import { LoadingBarService } from '@ngx-loading-bar/core'
df98563e 8import { NotificationsService } from 'angular2-notifications'
ce5496d6 9import { BytesPipe } from 'ngx-pipes'
f6a043df 10import { Subscription } from 'rxjs/Subscription'
cadb46d8 11import { VideoPrivacy } from '../../../../../shared/models/videos'
202f6b6c 12import { AuthService, ServerService } from '../../core'
27e1a06c 13import { FormReactive } from '../../shared'
63c4db6d 14import { ValidatorMessage } from '../../shared/forms/form-validators/validator-message'
15a7387d 15import { populateAsyncUserVideoChannels } from '../../shared/misc/utils'
27e1a06c 16import { VideoEdit } from '../../shared/video/video-edit.model'
63c4db6d 17import { VideoService } from '../../shared/video/video.service'
1553e15d 18
dc8bc31b
C
19@Component({
20 selector: 'my-videos-add',
27e1a06c
C
21 templateUrl: './video-add.component.html',
22 styleUrls: [
23 './shared/video-edit.component.scss',
24 './video-add.component.scss'
25 ]
dc8bc31b
C
26})
27
f6a043df 28export class VideoAddComponent extends FormReactive implements OnInit, OnDestroy, CanComponentDeactivate {
bfb3a98f
C
29 @ViewChild('videofileInput') videofileInput
30
27e1a06c 31 isUploadingVideo = false
68e24d72 32 isUpdatingVideo = false
baeefe22 33 videoUploaded = false
f6a043df 34 videoUploadObservable: Subscription = null
c182778e 35 videoUploadPercents = 0
a4b8a4dd
C
36 videoUploadedIds = {
37 id: 0,
38 uuid: ''
39 }
2f315e2f 40 videoFileName: string
3758da94 41
df98563e 42 form: FormGroup
27e1a06c
C
43 formErrors: { [ id: string ]: string } = {}
44 validationMessages: ValidatorMessage = {}
baeefe22 45
27e1a06c 46 userVideoChannels = []
ce5496d6 47 userVideoQuotaUsed = 0
27e1a06c 48 videoPrivacies = []
cadb46d8
C
49 firstStepPrivacyId = 0
50 firstStepChannelId = 0
dc8bc31b 51
df98563e 52 constructor (
4b2f33f3 53 private formBuilder: FormBuilder,
7ddd02c9 54 private router: Router,
6e07c3de 55 private notificationsService: NotificationsService,
bcd9f81e 56 private authService: AuthService,
ce5496d6 57 private userService: UserService,
db7af09b 58 private serverService: ServerService,
68e24d72
C
59 private videoService: VideoService,
60 private loadingBar: LoadingBarService
4b2f33f3 61 ) {
df98563e 62 super()
4b2f33f3 63 }
dc8bc31b 64
108af661
C
65 get videoExtensions () {
66 return this.serverService.getConfig().video.file.extensions.join(',')
67 }
68
df98563e 69 buildForm () {
27e1a06c 70 this.form = this.formBuilder.group({})
df98563e 71 this.form.valueChanges.subscribe(data => this.onValueChanged(data))
e822fdae
C
72 }
73
df98563e 74 ngOnInit () {
df98563e 75 this.buildForm()
2de96f4d 76
15a7387d
C
77 populateAsyncUserVideoChannels(this.authService, this.userVideoChannels)
78 .then(() => this.firstStepChannelId = this.userVideoChannels[0].id)
79
ce5496d6
C
80 this.userService.getMyVideoQuotaUsed()
81 .subscribe(data => this.userVideoQuotaUsed = data.videoQuotaUsed)
82
c182778e 83 this.serverService.videoPrivaciesLoaded
baeefe22
C
84 .subscribe(
85 () => {
86 this.videoPrivacies = this.serverService.getVideoPrivacies()
cadb46d8
C
87
88 // Public by default
89 this.firstStepPrivacyId = VideoPrivacy.PUBLIC
baeefe22 90 })
e822fdae
C
91 }
92
f6a043df
C
93 ngOnDestroy () {
94 if (this.videoUploadObservable) {
95 this.videoUploadObservable.unsubscribe()
96 }
97 }
98
529479f9 99 canDeactivate () {
f6a043df
C
100 let text = ''
101
102 if (this.videoUploaded === true) {
103 text = 'Your video was uploaded in your account and is private.' +
104 ' But associated data (tags, description...) will be lost, are you sure you want to leave this page?'
105 } else {
106 text = 'Your video is not uploaded yet, are you sure you want to leave this page?'
107 }
108
109 return {
110 canDeactivate: !this.isUploadingVideo,
111 text
112 }
529479f9
DG
113 }
114
baeefe22
C
115 fileChange () {
116 this.uploadFirstStep()
bf57d5ee
C
117 }
118
bfb3a98f
C
119 checkForm () {
120 this.forceCheck()
121
122 return this.form.valid
e822fdae
C
123 }
124
8c4890cb
DG
125 cancelUpload () {
126 if (this.videoUploadObservable !== null) {
127 this.videoUploadObservable.unsubscribe()
128 this.isUploadingVideo = false
129 this.videoUploadPercents = 0
8c4890cb 130 this.videoUploadObservable = null
e494f91e 131 this.notificationsService.info('Info', 'Upload cancelled')
8c4890cb
DG
132 }
133 }
134
27e1a06c 135 uploadFirstStep () {
bfb3a98f 136 const videofile = this.videofileInput.nativeElement.files[0]
a22bfc3e
C
137 if (!videofile) return
138
ce5496d6 139 const videoQuota = this.authService.getUser().videoQuota
a22bfc3e 140 if (videoQuota !== -1 && (this.userVideoQuotaUsed + videofile.size) > videoQuota) {
ce5496d6
C
141 const bytePipes = new BytesPipe()
142
143 const msg = 'Your video quota is exceeded with this video ' +
144 `(video size: ${bytePipes.transform(videofile.size, 0)}, ` +
145 `used: ${bytePipes.transform(this.userVideoQuotaUsed, 0)}, ` +
146 `quota: ${bytePipes.transform(videoQuota, 0)})`
147 this.notificationsService.error('Error', msg)
148 return
149 }
150
2f315e2f
C
151 this.videoFileName = videofile.name
152
cadb46d8
C
153 const name = videofile.name.replace(/\.[^/.]+$/, '')
154 const privacy = this.firstStepPrivacyId.toString()
baeefe22 155 const nsfw = false
47564bbe 156 const commentsEnabled = true
cadb46d8 157 const channelId = this.firstStepChannelId.toString()
bfb3a98f
C
158
159 const formData = new FormData()
160 formData.append('name', name)
cadb46d8
C
161 // Put the video "private" -> we wait he validates the second step
162 formData.append('privacy', VideoPrivacy.PRIVATE.toString())
bfb3a98f 163 formData.append('nsfw', '' + nsfw)
47564bbe 164 formData.append('commentsEnabled', '' + commentsEnabled)
bcd9f81e 165 formData.append('channelId', '' + channelId)
bfb3a98f
C
166 formData.append('videofile', videofile)
167
baeefe22
C
168 this.isUploadingVideo = true
169 this.form.patchValue({
170 name,
171 privacy,
172 nsfw,
173 channelId
174 })
e822fdae 175
8c4890cb 176 this.videoUploadObservable = this.videoService.uploadVideo(formData).subscribe(
bfb3a98f
C
177 event => {
178 if (event.type === HttpEventType.UploadProgress) {
c182778e 179 this.videoUploadPercents = Math.round(100 * event.loaded / event.total)
bfb3a98f
C
180 } else if (event instanceof HttpResponse) {
181 console.log('Video uploaded.')
bfb3a98f 182
baeefe22 183 this.videoUploaded = true
cadb46d8 184
a4b8a4dd 185 this.videoUploadedIds = event.body.video
8c4890cb
DG
186
187 this.videoUploadObservable = null
bfb3a98f
C
188 }
189 },
190
315cc0cc
C
191 err => {
192 // Reset progress
ce5496d6 193 this.isUploadingVideo = false
c182778e 194 this.videoUploadPercents = 0
8c4890cb 195 this.videoUploadObservable = null
ce5496d6 196 this.notificationsService.error('Error', err.message)
315cc0cc 197 }
bfb3a98f 198 )
dc8bc31b 199 }
27e1a06c
C
200
201 updateSecondStep () {
202 if (this.checkForm() === false) {
203 return
204 }
205
cadb46d8
C
206 const video = new VideoEdit()
207 video.patch(this.form.value)
208 video.channel = this.firstStepChannelId
a4b8a4dd
C
209 video.id = this.videoUploadedIds.id
210 video.uuid = this.videoUploadedIds.uuid
27e1a06c 211
68e24d72
C
212 this.isUpdatingVideo = true
213 this.loadingBar.start()
27e1a06c
C
214 this.videoService.updateVideo(video)
215 .subscribe(
216 () => {
68e24d72 217 this.isUpdatingVideo = false
66ee325f 218 this.isUploadingVideo = false
68e24d72
C
219 this.loadingBar.complete()
220
27e1a06c 221 this.notificationsService.success('Success', 'Video published.')
a4b8a4dd 222 this.router.navigate([ '/videos/watch', video.uuid ])
27e1a06c
C
223 },
224
225 err => {
68e24d72 226 this.isUpdatingVideo = false
ce5496d6 227 this.notificationsService.error('Error', err.message)
27e1a06c
C
228 console.error(err)
229 }
230 )
231
232 }
dc8bc31b 233}