Add to playlist dropdown
[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     this.thumbnailUrl = absoluteAPIUrl + hash.thumbnailPath
55
56     this.videosLength = hash.videosLength
57
58     this.type = hash.type
59
60     this.createdAt = new Date(hash.createdAt)
61     this.updatedAt = new Date(hash.updatedAt)
62
63     this.ownerAccount = hash.ownerAccount
64     this.ownerBy = Actor.CREATE_BY_STRING(hash.ownerAccount.name, hash.ownerAccount.host)
65     this.ownerAvatarUrl = Actor.GET_ACTOR_AVATAR_URL(this.ownerAccount)
66
67     if (hash.videoChannel) {
68       this.videoChannel = hash.videoChannel
69       this.videoChannelBy = Actor.CREATE_BY_STRING(hash.videoChannel.name, hash.videoChannel.host)
70       this.videoChannelAvatarUrl = Actor.GET_ACTOR_AVATAR_URL(this.videoChannel)
71     }
72
73     this.privacy.label = peertubeTranslate(this.privacy.label, translations)
74
75     if (this.type.id === VideoPlaylistType.WATCH_LATER) {
76       this.displayName = peertubeTranslate(this.displayName, translations)
77     }
78   }
79 }