X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;ds=sidebyside;f=client%2Fsrc%2Fapp%2Fvideos%2F%2Bvideo-edit%2Fvideo-add.component.ts;h=fa967018df419bcaaee16cb7cda726fc67fe93ca;hb=0f320037e689b2778959c12ddd4ce790f6e4ae4f;hp=c6f0525c339a59fd8d9d56e18dac23498b9a04f9;hpb=f6a043df74bc755de8e658ba76a4e55980b96f66;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/videos/+video-edit/video-add.component.ts b/client/src/app/videos/+video-edit/video-add.component.ts index c6f0525c3..fa967018d 100644 --- a/client/src/app/videos/+video-edit/video-add.component.ts +++ b/client/src/app/videos/+video-edit/video-add.component.ts @@ -4,6 +4,7 @@ import { FormBuilder, FormGroup } from '@angular/forms' import { Router } from '@angular/router' import { UserService } from '@app/shared' import { CanComponentDeactivate } from '@app/shared/guards/can-deactivate-guard.service' +import { LoadingBarService } from '@ngx-loading-bar/core' import { NotificationsService } from 'angular2-notifications' import { BytesPipe } from 'ngx-pipes' import { Subscription } from 'rxjs/Subscription' @@ -28,6 +29,7 @@ export class VideoAddComponent extends FormReactive implements OnInit, OnDestroy @ViewChild('videofileInput') videofileInput isUploadingVideo = false + isUpdatingVideo = false videoUploaded = false videoUploadObservable: Subscription = null videoUploadPercents = 0 @@ -35,6 +37,7 @@ export class VideoAddComponent extends FormReactive implements OnInit, OnDestroy id: 0, uuid: '' } + videoFileName: string form: FormGroup formErrors: { [ id: string ]: string } = {} @@ -53,7 +56,8 @@ export class VideoAddComponent extends FormReactive implements OnInit, OnDestroy private authService: AuthService, private userService: UserService, private serverService: ServerService, - private videoService: VideoService + private videoService: VideoService, + private loadingBar: LoadingBarService ) { super() } @@ -129,9 +133,15 @@ export class VideoAddComponent extends FormReactive implements OnInit, OnDestroy } uploadFirstStep () { - const videofile = this.videofileInput.nativeElement.files[0] + const videofile = this.videofileInput.nativeElement.files[0] as File if (!videofile) return + // Cannot upload videos > 4GB for now + if (videofile.size > 4 * 1024 * 1024 * 1024) { + this.notificationsService.error('Error', 'We are sorry but PeerTube cannot handle videos > 4GB') + return + } + const videoQuota = this.authService.getUser().videoQuota if (videoQuota !== -1 && (this.userVideoQuotaUsed + videofile.size) > videoQuota) { const bytePipes = new BytesPipe() @@ -144,7 +154,18 @@ export class VideoAddComponent extends FormReactive implements OnInit, OnDestroy return } - const name = videofile.name.replace(/\.[^/.]+$/, '') + this.videoFileName = videofile.name + + const nameWithoutExtension = videofile.name.replace(/\.[^/.]+$/, '') + let name: string + + // If the name of the file is very small, keep the extension + if (nameWithoutExtension.length < 3) { + name = videofile.name + } else { + name = nameWithoutExtension + } + const privacy = this.firstStepPrivacyId.toString() const nsfw = false const commentsEnabled = true @@ -152,7 +173,7 @@ export class VideoAddComponent extends FormReactive implements OnInit, OnDestroy const formData = new FormData() formData.append('name', name) - // Put the video "private" -> we wait he validates the second step + // Put the video "private" -> we are waiting the user validation of the second step formData.append('privacy', VideoPrivacy.PRIVATE.toString()) formData.append('nsfw', '' + nsfw) formData.append('commentsEnabled', '' + commentsEnabled) @@ -199,18 +220,25 @@ export class VideoAddComponent extends FormReactive implements OnInit, OnDestroy const video = new VideoEdit() video.patch(this.form.value) - video.channel = this.firstStepChannelId + video.channelId = this.firstStepChannelId video.id = this.videoUploadedIds.id video.uuid = this.videoUploadedIds.uuid + this.isUpdatingVideo = true + this.loadingBar.start() this.videoService.updateVideo(video) .subscribe( () => { + this.isUpdatingVideo = false + this.isUploadingVideo = false + this.loadingBar.complete() + this.notificationsService.success('Success', 'Video published.') this.router.navigate([ '/videos/watch', video.uuid ]) }, err => { + this.isUpdatingVideo = false this.notificationsService.error('Error', err.message) console.error(err) }