1
0
Fork 0
peertube/client/src/app/shared/video/modals/video-download.component.ts

70 lines
1.7 KiB
TypeScript
Raw Normal View History

2019-04-05 08:52:27 +00:00
import { Component, ElementRef, ViewChild } from '@angular/core'
2017-12-27 15:11:53 +00:00
import { VideoDetails } from '../../../shared/video/video-details.model'
import { NgbModal } from '@ng-bootstrap/ng-bootstrap'
2018-09-23 17:43:41 +00:00
import { I18n } from '@ngx-translate/i18n-polyfill'
import { Notifier } from '@app/core'
@Component({
selector: 'my-video-download',
templateUrl: './video-download.component.html',
2017-12-07 09:27:33 +00:00
styleUrls: [ './video-download.component.scss' ]
})
2019-04-05 08:52:27 +00:00
export class VideoDownloadComponent {
@ViewChild('modal') modal: ElementRef
downloadType: 'direct' | 'torrent' | 'magnet' = 'torrent'
resolutionId: number | string = -1
2017-12-20 16:49:58 +00:00
video: VideoDetails
2019-04-05 08:52:27 +00:00
2018-09-23 17:43:41 +00:00
constructor (
private notifier: Notifier,
2018-09-23 17:43:41 +00:00
private modalService: NgbModal,
private i18n: I18n
) { }
2019-04-05 08:52:27 +00:00
show (video: VideoDetails) {
this.video = video
const m = this.modalService.open(this.modal)
m.result.then(() => this.onClose())
.catch(() => this.onClose())
this.resolutionId = this.video.files[0].resolution.id
2017-12-20 16:49:58 +00:00
}
2019-04-05 08:52:27 +00:00
onClose () {
this.video = undefined
}
2017-12-20 16:49:58 +00:00
download () {
2018-09-23 17:43:41 +00:00
window.location.assign(this.getLink())
}
getLink () {
2018-02-07 10:05:59 +00:00
// HTML select send us a string, so convert it to a number
this.resolutionId = parseInt(this.resolutionId.toString(), 10)
2018-02-07 10:05:59 +00:00
const file = this.video.files.find(f => f.resolution.id === this.resolutionId)
2017-12-20 16:49:58 +00:00
if (!file) {
console.error('Could not find file with resolution %d.', this.resolutionId)
2017-12-20 16:49:58 +00:00
return
}
2019-04-05 08:52:27 +00:00
switch (this.downloadType) {
case 'direct':
return file.fileDownloadUrl
case 'torrent':
return file.torrentDownloadUrl
2018-09-23 17:43:41 +00:00
2019-04-05 08:52:27 +00:00
case 'magnet':
return file.magnetUri
}
2018-09-23 17:43:41 +00:00
}
activateCopiedMessage () {
this.notifier.success(this.i18n('Copied'))
2017-12-20 16:49:58 +00:00
}
}