WIP plugins: update plugin
[oweals/peertube.git] / client / src / app / shared / video-playlist / video-playlist.model.ts
1 import {
2   VideoChannelSummary,
3   VideoConstant,
4   VideoPlaylist as ServerVideoPlaylist,
5   VideoPlaylistPrivacy,
6   VideoPlaylistType
7 } from '../../../../../shared/models/videos'
8 import { AccountSummary, peertubeTranslate } from '@shared/models'
9 import { Actor } from '@app/shared/actor/actor.model'
10 import { getAbsoluteAPIUrl } from '@app/shared/misc/utils'
11
12 export class VideoPlaylist implements ServerVideoPlaylist {
13   id: number
14   uuid: string
15   isLocal: boolean
16
17   displayName: string
18   description: string
19   privacy: VideoConstant<VideoPlaylistPrivacy>
20
21   thumbnailPath: string
22
23   videosLength: number
24
25   type: VideoConstant<VideoPlaylistType>
26
27   createdAt: Date | string
28   updatedAt: Date | string
29
30   ownerAccount: AccountSummary
31   videoChannel?: VideoChannelSummary
32
33   thumbnailUrl: string
34
35   ownerBy: string
36   ownerAvatarUrl: string
37
38   videoChannelBy?: string
39   videoChannelAvatarUrl?: string
40
41   constructor (hash: ServerVideoPlaylist, translations: {}) {
42     const absoluteAPIUrl = getAbsoluteAPIUrl()
43
44     this.id = hash.id
45     this.uuid = hash.uuid
46     this.isLocal = hash.isLocal
47
48     this.displayName = hash.displayName
49
50     this.description = hash.description
51     this.privacy = hash.privacy
52
53     this.thumbnailPath = hash.thumbnailPath
54
55     if (this.thumbnailPath) {
56       this.thumbnailUrl = absoluteAPIUrl + hash.thumbnailPath
57     } else {
58       this.thumbnailUrl = window.location.origin + '/client/assets/images/default-playlist.jpg'
59     }
60
61     this.videosLength = hash.videosLength
62
63     this.type = hash.type
64
65     this.createdAt = new Date(hash.createdAt)
66     this.updatedAt = new Date(hash.updatedAt)
67
68     this.ownerAccount = hash.ownerAccount
69     this.ownerBy = Actor.CREATE_BY_STRING(hash.ownerAccount.name, hash.ownerAccount.host)
70     this.ownerAvatarUrl = Actor.GET_ACTOR_AVATAR_URL(this.ownerAccount)
71
72     if (hash.videoChannel) {
73       this.videoChannel = hash.videoChannel
74       this.videoChannelBy = Actor.CREATE_BY_STRING(hash.videoChannel.name, hash.videoChannel.host)
75       this.videoChannelAvatarUrl = Actor.GET_ACTOR_AVATAR_URL(this.videoChannel)
76     }
77
78     this.privacy.label = peertubeTranslate(this.privacy.label, translations)
79
80     if (this.type.id === VideoPlaylistType.WATCH_LATER) {
81       this.displayName = peertubeTranslate(this.displayName, translations)
82     }
83   }
84 }