X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fshared%2Fshared-video-miniature%2Fvideo-download.component.ts;h=1e3745d94e3a5cf6418bf575740e2cc104104a9d;hb=deb8b9cdb03213efd8f1fc4b40ab94ae499fe058;hp=70b27b105437dfb780a8ff6243eb3eaccf0bd793;hpb=68018040f2ec0a7c89ca5c8490b4b74d11cc07f7;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/shared/shared-video-miniature/video-download.component.ts b/client/src/app/shared/shared-video-miniature/video-download.component.ts index 70b27b105..1e3745d94 100644 --- a/client/src/app/shared/shared-video-miniature/video-download.component.ts +++ b/client/src/app/shared/shared-video-miniature/video-download.component.ts @@ -1,7 +1,9 @@ import { mapValues, pick } from 'lodash-es' +import { pipe } from 'rxjs' +import { tap } from 'rxjs/operators' import { Component, ElementRef, Inject, LOCALE_ID, ViewChild } from '@angular/core' -import { AuthService, Notifier } from '@app/core' -import { NgbActiveModal, NgbModal } from '@ng-bootstrap/ng-bootstrap' +import { AuthService, HooksService, Notifier } from '@app/core' +import { NgbModal, NgbModalRef } from '@ng-bootstrap/ng-bootstrap' import { VideoCaption, VideoFile, VideoPrivacy } from '@shared/models' import { BytesPipe, NumberFormatterPipe, VideoDetails, VideoService } from '../shared-main' @@ -16,7 +18,7 @@ type FileMetadata = { [key: string]: { label: string, value: string }} export class VideoDownloadComponent { @ViewChild('modal', { static: true }) modal: ElementRef - downloadType: 'direct' | 'torrent' = 'torrent' + downloadType: 'direct' | 'torrent' = 'direct' resolutionId: number | string = -1 subtitleLanguageId: string @@ -26,7 +28,9 @@ export class VideoDownloadComponent { videoFileMetadataVideoStream: FileMetadata | undefined videoFileMetadataAudioStream: FileMetadata | undefined videoCaptions: VideoCaption[] - activeModal: NgbActiveModal + activeModal: NgbModalRef + + isAdvancedCustomizationCollapsed = true type: DownloadType = 'video' @@ -38,7 +42,8 @@ export class VideoDownloadComponent { private notifier: Notifier, private modalService: NgbModal, private videoService: VideoService, - private auth: AuthService + private auth: AuthService, + private hooks: HooksService ) { this.bytesPipe = new BytesPipe() this.numbersPipe = new NumberFormatterPipe(this.localeId) @@ -62,9 +67,13 @@ export class VideoDownloadComponent { this.activeModal = this.modalService.open(this.modal, { centered: true }) - this.resolutionId = this.getVideoFiles()[0].resolution.id - this.onResolutionIdChange() + this.onResolutionIdChange(this.getVideoFiles()[0].resolution.id) + if (this.videoCaptions) this.subtitleLanguageId = this.videoCaptions[0].language.id + + this.activeModal.shown.subscribe(() => { + this.hooks.runAction('action:modal.video-download.shown', 'common') + }) } onClose () { @@ -83,11 +92,15 @@ export class VideoDownloadComponent { : this.getVideoFileLink() } - async onResolutionIdChange () { + async onResolutionIdChange (resolutionId: number) { + this.resolutionId = resolutionId this.videoFile = this.getVideoFile() - if (this.videoFile.metadata || !this.videoFile.metadataUrl) return - await this.hydrateMetadataFromMetadataUrl(this.videoFile) + if (!this.videoFile.metadata) { + if (!this.videoFile.metadataUrl) return + + await this.hydrateMetadataFromMetadataUrl(this.videoFile) + } this.videoFileMetadataFormat = this.videoFile ? this.getMetadataFormat(this.videoFile.metadata.format) @@ -101,9 +114,6 @@ export class VideoDownloadComponent { } getVideoFile () { - // HTML select send us a string, so convert it to a number - this.resolutionId = parseInt(this.resolutionId.toString(), 10) - const file = this.getVideoFiles().find(f => f.resolution.id === this.resolutionId) if (!file) { console.error('Could not find file with resolution %d.', this.resolutionId) @@ -116,7 +126,7 @@ export class VideoDownloadComponent { const file = this.videoFile if (!file) return - const suffix = this.video.privacy.id === VideoPrivacy.PRIVATE || this.video.privacy.id === VideoPrivacy.INTERNAL + const suffix = this.isConfidentialVideo() ? '?access_token=' + this.auth.getAccessToken() : '' @@ -129,6 +139,10 @@ export class VideoDownloadComponent { } } + isConfidentialVideo () { + return this.video.privacy.id === VideoPrivacy.PRIVATE || this.video.privacy.id === VideoPrivacy.INTERNAL + } + getSubtitlesLink () { return window.location.origin + this.videoCaptions.find(caption => caption.language.id === this.subtitleLanguageId).captionPath } @@ -197,7 +211,7 @@ export class VideoDownloadComponent { private hydrateMetadataFromMetadataUrl (file: VideoFile) { const observable = this.videoService.getVideoFileMetadata(file.metadataUrl) - observable.subscribe(res => file.metadata = res) + .pipe(tap(res => file.metadata = res)) return observable.toPromise() }