]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/shared-video-miniature/video-download.component.ts
Refactor video extensions logic in server
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-video-miniature / video-download.component.ts
CommitLineData
8319d6ae 1import { mapValues, pick } from 'lodash-es'
8319d6ae 2import { BytesPipe } from 'ngx-pipes'
67ed6552
C
3import { Component, ElementRef, ViewChild } from '@angular/core'
4import { AuthService, Notifier } from '@app/core'
5import { NgbActiveModal, NgbModal } from '@ng-bootstrap/ng-bootstrap'
6import { I18n } from '@ngx-translate/i18n-polyfill'
7import { VideoCaption, VideoFile, VideoPrivacy } from '@shared/models'
8import { NumberFormatterPipe, VideoDetails, VideoService } from '../shared-main'
8ba9c205
RK
9
10type DownloadType = 'video' | 'subtitles'
8319d6ae 11type FileMetadata = { [key: string]: { label: string, value: string }}
cf02fbfb
C
12
13@Component({
a96aed15
C
14 selector: 'my-video-download',
15 templateUrl: './video-download.component.html',
0727cab0 16 styleUrls: [ './video-download.component.scss' ]
cf02fbfb 17})
3a0fb65c 18export class VideoDownloadComponent {
f36da21e 19 @ViewChild('modal', { static: true }) modal: ElementRef
cf02fbfb 20
7c51916a 21 downloadType: 'direct' | 'torrent' = 'torrent'
09700934 22 resolutionId: number | string = -1
8ba9c205 23 subtitleLanguageId: string
5f0805d3 24
8dfceec4 25 video: VideoDetails
8319d6ae
RK
26 videoFile: VideoFile
27 videoFileMetadataFormat: FileMetadata
28 videoFileMetadataVideoStream: FileMetadata | undefined
29 videoFileMetadataAudioStream: FileMetadata | undefined
8ba9c205 30 videoCaptions: VideoCaption[]
11b3f14c 31 activeModal: NgbActiveModal
3a0fb65c 32
8ba9c205
RK
33 type: DownloadType = 'video'
34
8319d6ae
RK
35 private bytesPipe: BytesPipe
36 private numbersPipe: NumberFormatterPipe
37
bb5d7428 38 constructor (
f8b2c1b4 39 private notifier: Notifier,
bb5d7428 40 private modalService: NgbModal,
8319d6ae 41 private videoService: VideoService,
eccf70f0 42 private auth: AuthService,
bb5d7428 43 private i18n: I18n
8319d6ae
RK
44 ) {
45 this.bytesPipe = new BytesPipe()
46 this.numbersPipe = new NumberFormatterPipe()
47 }
cf02fbfb 48
8ba9c205
RK
49 get typeText () {
50 return this.type === 'video'
51 ? this.i18n('video')
52 : this.i18n('subtitles')
53 }
54
5a71acd2
C
55 getVideoFiles () {
56 if (!this.video) return []
57
58 return this.video.getFiles()
59 }
60
8ba9c205 61 show (video: VideoDetails, videoCaptions?: VideoCaption[]) {
3a0fb65c 62 this.video = video
8ba9c205 63 this.videoCaptions = videoCaptions && videoCaptions.length ? videoCaptions : undefined
3a0fb65c 64
24e7916c 65 this.activeModal = this.modalService.open(this.modal, { centered: true })
3a0fb65c 66
5a71acd2 67 this.resolutionId = this.getVideoFiles()[0].resolution.id
8319d6ae 68 this.onResolutionIdChange()
8ba9c205 69 if (this.videoCaptions) this.subtitleLanguageId = this.videoCaptions[0].language.id
5f0805d3
C
70 }
71
3a0fb65c
C
72 onClose () {
73 this.video = undefined
8ba9c205 74 this.videoCaptions = undefined
cf02fbfb 75 }
5f0805d3
C
76
77 download () {
bb5d7428 78 window.location.assign(this.getLink())
11b3f14c 79 this.activeModal.close()
bb5d7428
RK
80 }
81
82 getLink () {
8ba9c205
RK
83 return this.type === 'subtitles' && this.videoCaptions
84 ? this.getSubtitlesLink()
8319d6ae 85 : this.getVideoFileLink()
8ba9c205
RK
86 }
87
8319d6ae
RK
88 async onResolutionIdChange () {
89 this.videoFile = this.getVideoFile()
90 if (this.videoFile.metadata || !this.videoFile.metadataUrl) return
91
92 await this.hydrateMetadataFromMetadataUrl(this.videoFile)
93
94 this.videoFileMetadataFormat = this.videoFile
95 ? this.getMetadataFormat(this.videoFile.metadata.format)
96 : undefined
97 this.videoFileMetadataVideoStream = this.videoFile
98 ? this.getMetadataStream(this.videoFile.metadata.streams, 'video')
99 : undefined
100 this.videoFileMetadataAudioStream = this.videoFile
101 ? this.getMetadataStream(this.videoFile.metadata.streams, 'audio')
102 : undefined
103 }
104
105 getVideoFile () {
00336945 106 // HTML select send us a string, so convert it to a number
09700934 107 this.resolutionId = parseInt(this.resolutionId.toString(), 10)
00336945 108
5a71acd2 109 const file = this.getVideoFiles().find(f => f.resolution.id === this.resolutionId)
5f0805d3 110 if (!file) {
09700934 111 console.error('Could not find file with resolution %d.', this.resolutionId)
5f0805d3
C
112 return
113 }
8319d6ae
RK
114 return file
115 }
116
117 getVideoFileLink () {
118 const file = this.videoFile
119 if (!file) return
5f0805d3 120
22a73cb8 121 const suffix = this.video.privacy.id === VideoPrivacy.PRIVATE || this.video.privacy.id === VideoPrivacy.INTERNAL
eccf70f0
C
122 ? '?access_token=' + this.auth.getAccessToken()
123 : ''
124
3a0fb65c
C
125 switch (this.downloadType) {
126 case 'direct':
eccf70f0 127 return file.fileDownloadUrl + suffix
3a0fb65c
C
128
129 case 'torrent':
eccf70f0 130 return file.torrentDownloadUrl + suffix
3a0fb65c 131 }
bb5d7428
RK
132 }
133
8ba9c205
RK
134 getSubtitlesLink () {
135 return window.location.origin + this.videoCaptions.find(caption => caption.language.id === this.subtitleLanguageId).captionPath
136 }
137
bb5d7428 138 activateCopiedMessage () {
f8b2c1b4 139 this.notifier.success(this.i18n('Copied'))
5f0805d3 140 }
8ba9c205
RK
141
142 switchToType (type: DownloadType) {
143 this.type = type
144 }
8319d6ae 145
583eb04b 146 getMetadataFormat (format: any) {
8319d6ae
RK
147 const keyToTranslateFunction = {
148 'encoder': (value: string) => ({ label: this.i18n('Encoder'), value }),
149 'format_long_name': (value: string) => ({ label: this.i18n('Format name'), value }),
150 'size': (value: number) => ({ label: this.i18n('Size'), value: this.bytesPipe.transform(value, 2) }),
151 'bit_rate': (value: number) => ({
152 label: this.i18n('Bitrate'),
153 value: `${this.numbersPipe.transform(value)}bps`
154 })
155 }
156
157 // flattening format
158 const sanitizedFormat = Object.assign(format, format.tags)
159 delete sanitizedFormat.tags
160
161 return mapValues(
162 pick(sanitizedFormat, Object.keys(keyToTranslateFunction)),
163 (val, key) => keyToTranslateFunction[key](val)
164 )
165 }
166
583eb04b 167 getMetadataStream (streams: any[], type: 'video' | 'audio') {
8319d6ae
RK
168 const stream = streams.find(s => s.codec_type === type)
169 if (!stream) return undefined
170
171 let keyToTranslateFunction = {
172 'codec_long_name': (value: string) => ({ label: this.i18n('Codec'), value }),
173 'profile': (value: string) => ({ label: this.i18n('Profile'), value }),
174 'bit_rate': (value: number) => ({
175 label: this.i18n('Bitrate'),
176 value: `${this.numbersPipe.transform(value)}bps`
177 })
178 }
179
180 if (type === 'video') {
181 keyToTranslateFunction = Object.assign(keyToTranslateFunction, {
182 'width': (value: number) => ({ label: this.i18n('Resolution'), value: `${value}x${stream.height}` }),
183 'display_aspect_ratio': (value: string) => ({ label: this.i18n('Aspect ratio'), value }),
184 'avg_frame_rate': (value: string) => ({ label: this.i18n('Average frame rate'), value }),
185 'pix_fmt': (value: string) => ({ label: this.i18n('Pixel format'), value })
186 })
187 } else {
188 keyToTranslateFunction = Object.assign(keyToTranslateFunction, {
189 'sample_rate': (value: number) => ({ label: this.i18n('Sample rate'), value }),
190 'channel_layout': (value: number) => ({ label: this.i18n('Channel Layout'), value })
191 })
192 }
193
194 return mapValues(
195 pick(stream, Object.keys(keyToTranslateFunction)),
196 (val, key) => keyToTranslateFunction[key](val)
197 )
198 }
199
200 private hydrateMetadataFromMetadataUrl (file: VideoFile) {
201 const observable = this.videoService.getVideoFileMetadata(file.metadataUrl)
202 observable.subscribe(res => file.metadata = res)
583eb04b 203
8319d6ae
RK
204 return observable.toPromise()
205 }
cf02fbfb 206}