Add/update/delete/list my playlists
[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     this.description = hash.description
50     this.privacy = hash.privacy
51
52     this.thumbnailPath = hash.thumbnailPath
53     this.thumbnailUrl = absoluteAPIUrl + hash.thumbnailPath
54
55     this.videosLength = hash.videosLength
56
57     this.type = hash.type
58
59     this.createdAt = new Date(hash.createdAt)
60     this.updatedAt = new Date(hash.updatedAt)
61
62     this.ownerAccount = hash.ownerAccount
63     this.ownerBy = Actor.CREATE_BY_STRING(hash.ownerAccount.name, hash.ownerAccount.host)
64     this.ownerAvatarUrl = Actor.GET_ACTOR_AVATAR_URL(this.ownerAccount)
65
66     if (hash.videoChannel) {
67       this.videoChannel = hash.videoChannel
68       this.videoChannelBy = Actor.CREATE_BY_STRING(hash.videoChannel.name, hash.videoChannel.host)
69       this.videoChannelAvatarUrl = Actor.GET_ACTOR_AVATAR_URL(this.videoChannel)
70     }
71
72     this.privacy.label = peertubeTranslate(this.privacy.label, translations)
73   }
74 }