A few updates for the watch video view (#181)
[oweals/peertube.git] / client / src / app / shared / video / video.model.ts
1 import { User } from '../'
2 import { Video as VideoServerModel } from '../../../../../shared'
3 import { Account } from '../../../../../shared/models/actors'
4 import { environment } from '../../../environments/environment'
5 import { getAbsoluteAPIUrl } from '../misc/utils'
6
7 export class Video implements VideoServerModel {
8   accountName: string
9   by: string
10   createdAt: Date
11   updatedAt: Date
12   categoryLabel: string
13   category: number
14   licenceLabel: string
15   licence: number
16   languageLabel: string
17   language: number
18   description: string
19   duration: number
20   durationLabel: string
21   id: number
22   uuid: string
23   isLocal: boolean
24   name: string
25   serverHost: string
26   thumbnailPath: string
27   thumbnailUrl: string
28   previewPath: string
29   previewUrl: string
30   embedPath: string
31   embedUrl: string
32   views: number
33   likes: number
34   dislikes: number
35   nsfw: boolean
36   account: Account
37
38   private static createByString (account: string, serverHost: string, apiURL: string) {
39     const thisHost = new URL(apiURL).host
40     if (serverHost.trim() === thisHost)
41       return account
42     return account + '@' + serverHost
43   }
44
45   private static createDurationString (duration: number) {
46     const minutes = Math.floor(duration / 60)
47     const seconds = duration % 60
48     const minutesPadding = minutes >= 10 ? '' : '0'
49     const secondsPadding = seconds >= 10 ? '' : '0'
50
51     return minutesPadding + minutes.toString() + ':' + secondsPadding + seconds.toString()
52   }
53
54   constructor (hash: VideoServerModel) {
55     const absoluteAPIUrl = getAbsoluteAPIUrl()
56
57     this.accountName = hash.accountName
58     this.createdAt = new Date(hash.createdAt.toString())
59     this.categoryLabel = hash.categoryLabel
60     this.category = hash.category
61     this.licenceLabel = hash.licenceLabel
62     this.licence = hash.licence
63     this.languageLabel = hash.languageLabel
64     this.language = hash.language
65     this.description = hash.description
66     this.duration = hash.duration
67     this.durationLabel = Video.createDurationString(hash.duration)
68     this.id = hash.id
69     this.uuid = hash.uuid
70     this.isLocal = hash.isLocal
71     this.name = hash.name
72     this.serverHost = hash.serverHost
73     this.thumbnailPath = hash.thumbnailPath
74     this.thumbnailUrl = absoluteAPIUrl + hash.thumbnailPath
75     this.previewPath = hash.previewPath
76     this.previewUrl = absoluteAPIUrl + hash.previewPath
77     this.embedPath = hash.embedPath
78     this.embedUrl = absoluteAPIUrl + hash.embedPath
79     this.views = hash.views
80     this.likes = hash.likes
81     this.dislikes = hash.dislikes
82     this.nsfw = hash.nsfw
83
84     this.by = Video.createByString(hash.accountName, hash.serverHost, absoluteAPIUrl)
85   }
86
87   isVideoNSFWForUser (user: User) {
88     // If the video is NSFW and the user is not logged in, or the user does not want to display NSFW videos...
89     return (this.nsfw && (!user || user.displayNSFW === false))
90   }
91 }