1
0
Fork 0
peertube/client/src/app/videos/video-edit/video-add.component.ts

187 lines
4.8 KiB
TypeScript
Raw Normal View History

import { Component, ElementRef, OnInit } from '@angular/core'
import { FormBuilder, FormGroup } from '@angular/forms'
import { Router } from '@angular/router'
2016-03-14 12:50:19 +00:00
import { FileUploader } from 'ng2-file-upload/ng2-file-upload'
import { NotificationsService } from 'angular2-notifications'
import { AuthService } from '../../core'
2017-03-22 20:15:55 +00:00
import {
FormReactive,
VIDEO_NAME,
VIDEO_CATEGORY,
2017-03-27 19:11:37 +00:00
VIDEO_LICENCE,
2017-04-07 12:57:05 +00:00
VIDEO_LANGUAGE,
2017-03-22 20:15:55 +00:00
VIDEO_DESCRIPTION,
VIDEO_TAGS
} from '../../shared'
import { VideoService } from '../shared'
2016-03-14 12:50:19 +00:00
@Component({
selector: 'my-videos-add',
styleUrls: [ './video-edit.component.scss' ],
templateUrl: './video-add.component.html'
2016-03-14 12:50:19 +00:00
})
2016-09-09 20:16:51 +00:00
export class VideoAddComponent extends FormReactive implements OnInit {
tags: string[] = []
uploader: FileUploader
videoCategories = []
videoLicences = []
videoLanguages = []
2016-09-09 20:16:51 +00:00
tagValidators = VIDEO_TAGS.VALIDATORS
tagValidatorsMessages = VIDEO_TAGS.MESSAGES
error: string = null
form: FormGroup
2016-09-09 20:16:51 +00:00
formErrors = {
name: '',
2017-03-22 20:15:55 +00:00
category: '',
2017-03-27 19:11:37 +00:00
licence: '',
2017-04-07 12:57:05 +00:00
language: '',
description: ''
}
2016-09-09 20:16:51 +00:00
validationMessages = {
name: VIDEO_NAME.MESSAGES,
2017-03-22 20:15:55 +00:00
category: VIDEO_CATEGORY.MESSAGES,
2017-03-27 19:11:37 +00:00
licence: VIDEO_LICENCE.MESSAGES,
2017-04-07 12:57:05 +00:00
language: VIDEO_LANGUAGE.MESSAGES,
description: VIDEO_DESCRIPTION.MESSAGES
}
2016-03-14 12:50:19 +00:00
// Special error messages
fileError = ''
constructor (
private authService: AuthService,
2016-05-27 15:49:18 +00:00
private elementRef: ElementRef,
2016-09-09 20:16:51 +00:00
private formBuilder: FormBuilder,
private router: Router,
2017-03-22 20:15:55 +00:00
private notificationsService: NotificationsService,
private videoService: VideoService
2016-09-09 20:16:51 +00:00
) {
super()
2016-09-09 20:16:51 +00:00
}
2016-03-14 12:50:19 +00:00
get filename () {
if (this.uploader.queue.length === 0) {
return null
}
return this.uploader.queue[0].file.name
}
buildForm () {
2016-09-09 20:16:51 +00:00
this.form = this.formBuilder.group({
name: [ '', VIDEO_NAME.VALIDATORS ],
2017-04-04 19:37:03 +00:00
nsfw: [ false ],
2017-03-22 20:15:55 +00:00
category: [ '', VIDEO_CATEGORY.VALIDATORS ],
2017-03-27 19:11:37 +00:00
licence: [ '', VIDEO_LICENCE.VALIDATORS ],
2017-04-07 12:57:05 +00:00
language: [ '', VIDEO_LANGUAGE.VALIDATORS ],
2016-09-09 20:16:51 +00:00
description: [ '', VIDEO_DESCRIPTION.VALIDATORS ],
tags: [ '']
})
2016-09-09 20:16:51 +00:00
this.form.valueChanges.subscribe(data => this.onValueChanged(data))
}
ngOnInit () {
this.videoCategories = this.videoService.videoCategories
this.videoLicences = this.videoService.videoLicences
this.videoLanguages = this.videoService.videoLanguages
2017-03-22 20:15:55 +00:00
this.uploader = new FileUploader({
authToken: this.authService.getRequestHeaderValue(),
queueLimit: 1,
2017-06-11 13:19:43 +00:00
url: API_URL + '/api/v1/videos',
removeAfterUpload: true
})
this.uploader.onBuildItemForm = (item, form) => {
const name = this.form.value['name']
const nsfw = this.form.value['nsfw']
const category = this.form.value['category']
const licence = this.form.value['licence']
const language = this.form.value['language']
const description = this.form.value['description']
const tags = this.form.value['tags']
form.append('name', name)
form.append('category', category)
form.append('nsfw', nsfw)
form.append('licence', licence)
2017-04-07 12:57:05 +00:00
// Language is optional
if (language) {
form.append('language', language)
2017-04-07 12:57:05 +00:00
}
form.append('description', description)
for (let i = 0; i < tags.length; i++) {
form.append(`tags[${i}]`, tags[i])
}
}
2016-09-09 20:16:51 +00:00
this.buildForm()
}
checkForm () {
this.forceCheck()
if (this.filename === null) {
this.fileError = 'You did not add a file.'
}
return this.form.valid === true && this.fileError === ''
}
fileChanged () {
this.fileError = ''
}
removeFile () {
this.uploader.clearQueue()
}
upload () {
if (this.checkForm() === false) {
return
}
const item = this.uploader.queue[0]
// TODO: wait for https://github.com/valor-software/ng2-file-upload/pull/242
item.alias = 'videofile'
item.onSuccess = () => {
console.log('Video uploaded.')
this.notificationsService.success('Success', 'Video uploaded.')
// Print all the videos once it's finished
this.router.navigate(['/videos/list'])
}
item.onError = (response: string, status: number) => {
// We need to handle manually these cases beceause we use the FileUpload component
if (status === 400) {
this.error = response
} else if (status === 401) {
this.error = 'Access token was expired, refreshing token...'
this.authService.refreshAccessToken().subscribe(
() => {
// Update the uploader request header
this.uploader.authToken = this.authService.getRequestHeaderValue()
this.error += ' access token refreshed. Please retry your request.'
}
)
} else {
this.error = 'Unknow error'
console.error(this.error)
}
}
this.uploader.uploadAll()
2016-03-14 12:50:19 +00:00
}
}