aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/shared/video/video-details.model.ts
blob: c746bfd6630d6e533c8678b1900f484fcbdebb74 (plain) (tree)
1
2
3
4
5
6
7
8
9
        

                                                                                            
                              


                                                             

                                                                            
                     









                       
                 





                       
                    










                       
                         

                       

                       
                  

                         
                          



                                               

                                         
                                               

                               
                               
                         
                                               


                                                                               
















                                                                                                   
                                  
                                                                                                                             

   

                                                                                                     

   
                                  
                                                                              

   
import {
  UserRight, VideoChannel, VideoDetails as VideoDetailsServerModel, VideoFile, VideoPrivacy,
  VideoResolution
} from '../../../../../shared'
import { Account } from '../../../../../shared/models/actors'
import { AuthUser } from '../../core'
import { Video } from '../../shared/video/video.model'

export class VideoDetails extends Video implements VideoDetailsServerModel {
  accountName: string
  by: string
  createdAt: Date
  updatedAt: Date
  categoryLabel: string
  category: number
  licenceLabel: string
  licence: number
  languageLabel: string
  language: number
  description: string
  support: string
  duration: number
  durationLabel: string
  id: number
  uuid: string
  isLocal: boolean
  name: string
  serverHost: string
  tags: string[]
  thumbnailPath: string
  thumbnailUrl: string
  previewPath: string
  previewUrl: string
  embedPath: string
  embedUrl: string
  views: number
  likes: number
  dislikes: number
  nsfw: boolean
  descriptionPath: string
  files: VideoFile[]
  channel: VideoChannel
  privacy: VideoPrivacy
  privacyLabel: string
  account: Account
  likesPercent: number
  dislikesPercent: number
  commentsEnabled: boolean

  constructor (hash: VideoDetailsServerModel) {
    super(hash)

    this.privacy = hash.privacy
    this.privacyLabel = hash.privacyLabel
    this.descriptionPath = hash.descriptionPath
    this.files = hash.files
    this.channel = hash.channel
    this.account = hash.account
    this.tags = hash.tags
    this.commentsEnabled = hash.commentsEnabled

    this.likesPercent = (this.likes / (this.likes + this.dislikes)) * 100
    this.dislikesPercent = (this.dislikes / (this.likes + this.dislikes)) * 100
  }

  getAppropriateMagnetUri (actualDownloadSpeed = 0) {
    if (this.files === undefined || this.files.length === 0) return ''
    if (this.files.length === 1) return this.files[0].magnetUri

    // Find first video that is good for our download speed (remember they are sorted)
    let betterResolutionFile = this.files.find(f => actualDownloadSpeed > (f.size / this.duration))

    // If the download speed is too bad, return the lowest resolution we have
    if (betterResolutionFile === undefined) {
      betterResolutionFile = this.files.find(f => f.resolution === VideoResolution.H_240P)
    }

    return betterResolutionFile.magnetUri
  }

  isRemovableBy (user: AuthUser) {
    return user && this.isLocal === true && (this.accountName === user.username || user.hasRight(UserRight.REMOVE_ANY_VIDEO))
  }

  isBlackistableBy (user: AuthUser) {
    return user && user.hasRight(UserRight.MANAGE_VIDEO_BLACKLIST) === true && this.isLocal === false
  }

  isUpdatableBy (user: AuthUser) {
    return user && this.isLocal === true && user.username === this.accountName
  }
}