Begin video watch design
[oweals/peertube.git] / client / src / app / shared / video / video-details.model.ts
1 import { Account } from '../../../../../shared/models/accounts'
2 import { Video } from '../../shared/video/video.model'
3 import { AuthUser } from '../../core'
4 import {
5   VideoDetails as VideoDetailsServerModel,
6   VideoFile,
7   VideoChannel,
8   VideoResolution,
9   UserRight,
10   VideoPrivacy
11 } from '../../../../../shared'
12
13 export class VideoDetails extends Video implements VideoDetailsServerModel {
14   accountName: string
15   by: string
16   createdAt: Date
17   updatedAt: Date
18   categoryLabel: string
19   category: number
20   licenceLabel: string
21   licence: number
22   languageLabel: string
23   language: number
24   description: string
25   duration: number
26   durationLabel: string
27   id: number
28   uuid: string
29   isLocal: boolean
30   name: string
31   serverHost: string
32   tags: string[]
33   thumbnailPath: string
34   thumbnailUrl: string
35   previewPath: string
36   previewUrl: string
37   embedPath: string
38   embedUrl: string
39   views: number
40   likes: number
41   dislikes: number
42   nsfw: boolean
43   descriptionPath: string
44   files: VideoFile[]
45   channel: VideoChannel
46   privacy: VideoPrivacy
47   privacyLabel: string
48   account: Account
49
50   constructor (hash: VideoDetailsServerModel) {
51     super(hash)
52
53     this.privacy = hash.privacy
54     this.privacyLabel = hash.privacyLabel
55     this.descriptionPath = hash.descriptionPath
56     this.files = hash.files
57     this.channel = hash.channel
58     this.account = hash.account
59   }
60
61   getAppropriateMagnetUri (actualDownloadSpeed = 0) {
62     if (this.files === undefined || this.files.length === 0) return ''
63     if (this.files.length === 1) return this.files[0].magnetUri
64
65     // Find first video that is good for our download speed (remember they are sorted)
66     let betterResolutionFile = this.files.find(f => actualDownloadSpeed > (f.size / this.duration))
67
68     // If the download speed is too bad, return the lowest resolution we have
69     if (betterResolutionFile === undefined) {
70       betterResolutionFile = this.files.find(f => f.resolution === VideoResolution.H_240P)
71     }
72
73     return betterResolutionFile.magnetUri
74   }
75
76   isRemovableBy (user: AuthUser) {
77     return user && this.isLocal === true && (this.accountName === user.username || user.hasRight(UserRight.REMOVE_ANY_VIDEO))
78   }
79
80   isBlackistableBy (user: AuthUser) {
81     return user && user.hasRight(UserRight.MANAGE_VIDEO_BLACKLIST) === true && this.isLocal === false
82   }
83
84   isUpdatableBy (user: AuthUser) {
85     return user && this.isLocal === true && user.username === this.accountName
86   }
87 }