1 import { Account } from '../../../../../shared/models/accounts'
2 import { Video } from '../../shared/video/video.model'
3 import { AuthUser } from '../../core'
5 VideoDetails as VideoDetailsServerModel,
11 } from '../../../../../shared'
13 export class VideoDetails extends Video implements VideoDetailsServerModel {
43 descriptionPath: string
50 dislikesPercent: number
52 constructor (hash: VideoDetailsServerModel) {
55 this.privacy = hash.privacy
56 this.privacyLabel = hash.privacyLabel
57 this.descriptionPath = hash.descriptionPath
58 this.files = hash.files
59 this.channel = hash.channel
60 this.account = hash.account
62 this.likesPercent = (this.likes / (this.likes + this.dislikes)) * 100
63 this.dislikesPercent = (this.dislikes / (this.likes + this.dislikes)) * 100
66 getAppropriateMagnetUri (actualDownloadSpeed = 0) {
67 if (this.files === undefined || this.files.length === 0) return ''
68 if (this.files.length === 1) return this.files[0].magnetUri
70 // Find first video that is good for our download speed (remember they are sorted)
71 let betterResolutionFile = this.files.find(f => actualDownloadSpeed > (f.size / this.duration))
73 // If the download speed is too bad, return the lowest resolution we have
74 if (betterResolutionFile === undefined) {
75 betterResolutionFile = this.files.find(f => f.resolution === VideoResolution.H_240P)
78 return betterResolutionFile.magnetUri
81 isRemovableBy (user: AuthUser) {
82 return user && this.isLocal === true && (this.accountName === user.username || user.hasRight(UserRight.REMOVE_ANY_VIDEO))
85 isBlackistableBy (user: AuthUser) {
86 return user && user.hasRight(UserRight.MANAGE_VIDEO_BLACKLIST) === true && this.isLocal === false
89 isUpdatableBy (user: AuthUser) {
90 return user && this.isLocal === true && user.username === this.accountName