]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/video/video.model.ts
Merge branch 'release/v1.3.0' into develop
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / video / video.model.ts
CommitLineData
202f6b6c 1import { User } from '../'
3a0fb65c 2import { PlaylistElement, UserRight, Video as VideoServerModel, VideoPrivacy, VideoState } from '../../../../../shared'
b64c950a 3import { Avatar } from '../../../../../shared/models/avatars/avatar.model'
40e87e9e 4import { VideoConstant } from '../../../../../shared/models/videos/video-constant.model'
11b8762f 5import { durationToString, getAbsoluteAPIUrl } from '../misc/utils'
3dfa8494 6import { peertubeTranslate, ServerConfig } from '../../../../../shared/models'
d3e91a5f 7import { Actor } from '@app/shared/actor/actor.model'
bbe0f064 8import { VideoScheduleUpdate } from '../../../../../shared/models/videos/video-schedule-update.model'
3a0fb65c 9import { AuthUser } from '@app/core'
92fb909c 10
69f616ab 11export class Video implements VideoServerModel {
22a16e36
C
12 byVideoChannel: string
13 byAccount: string
14
d3e91a5f 15 accountAvatarUrl: string
52d9f792 16 videoChannelAvatarUrl: string
22a16e36 17
df98563e 18 createdAt: Date
6d33593a 19 updatedAt: Date
2922e048 20 publishedAt: Date
c8034165 21 originallyPublishedAt: Date | string
09700934
C
22 category: VideoConstant<number>
23 licence: VideoConstant<number>
9d3ef9fe 24 language: VideoConstant<string>
2243730c 25 privacy: VideoConstant<VideoPrivacy>
df98563e
C
26 description: string
27 duration: number
28 durationLabel: string
0a6658fd
C
29 id: number
30 uuid: string
df98563e 31 isLocal: boolean
df98563e 32 name: string
60862425 33 serverHost: string
df98563e
C
34 thumbnailPath: string
35 thumbnailUrl: string
43f61d26
C
36 previewPath: string
37 previewUrl: string
d8755eed
C
38 embedPath: string
39 embedUrl: string
df98563e
C
40 views: number
41 likes: number
42 dislikes: number
43 nsfw: boolean
b64c950a 44
2186386c
C
45 waitTranscoding?: boolean
46 state?: VideoConstant<VideoState>
bbe0f064 47 scheduledUpdate?: VideoScheduleUpdate
191764f3
C
48 blacklisted?: boolean
49 blacklistedReason?: string
2186386c 50
c5a1ae50
C
51 playlistElement?: PlaylistElement
52
b64c950a 53 account: {
03e12d7c 54 id: number
b64c950a
C
55 name: string
56 displayName: string
57 url: string
0f320037 58 host: string
457bb213 59 avatar?: Avatar
0f320037
C
60 }
61
62 channel: {
63 id: number
0f320037
C
64 name: string
65 displayName: string
66 url: string
b64c950a 67 host: string
457bb213 68 avatar?: Avatar
b64c950a 69 }
aff038cd 70
6e46de09
C
71 userHistory?: {
72 currentTime: number
73 }
74
191764f3
C
75 static buildClientUrl (videoUUID: string) {
76 return '/videos/watch/' + videoUUID
77 }
78
7ce44a74 79 constructor (hash: VideoServerModel, translations = {}) {
c5911fd3 80 const absoluteAPIUrl = getAbsoluteAPIUrl()
c6e0bfbf 81
d592e0a9 82 this.createdAt = new Date(hash.createdAt.toString())
2922e048 83 this.publishedAt = new Date(hash.publishedAt.toString())
df98563e 84 this.category = hash.category
df98563e 85 this.licence = hash.licence
df98563e 86 this.language = hash.language
2243730c 87 this.privacy = hash.privacy
2186386c
C
88 this.waitTranscoding = hash.waitTranscoding
89 this.state = hash.state
df98563e
C
90 this.description = hash.description
91 this.duration = hash.duration
11b8762f 92 this.durationLabel = durationToString(hash.duration)
df98563e 93 this.id = hash.id
0a6658fd 94 this.uuid = hash.uuid
df98563e 95 this.isLocal = hash.isLocal
df98563e 96 this.name = hash.name
df98563e 97 this.thumbnailPath = hash.thumbnailPath
c6e0bfbf 98 this.thumbnailUrl = absoluteAPIUrl + hash.thumbnailPath
43f61d26 99 this.previewPath = hash.previewPath
c6e0bfbf 100 this.previewUrl = absoluteAPIUrl + hash.previewPath
d8755eed 101 this.embedPath = hash.embedPath
c6e0bfbf 102 this.embedUrl = absoluteAPIUrl + hash.embedPath
df98563e
C
103 this.views = hash.views
104 this.likes = hash.likes
105 this.dislikes = hash.dislikes
106 this.nsfw = hash.nsfw
b64c950a 107 this.account = hash.account
52d9f792 108 this.channel = hash.channel
4fd8aa32 109
22a16e36
C
110 this.byAccount = Actor.CREATE_BY_STRING(hash.account.name, hash.account.host)
111 this.byVideoChannel = Actor.CREATE_BY_STRING(hash.channel.name, hash.channel.host)
d3e91a5f 112 this.accountAvatarUrl = Actor.GET_ACTOR_AVATAR_URL(this.account)
52d9f792 113 this.videoChannelAvatarUrl = Actor.GET_ACTOR_AVATAR_URL(this.channel)
7ce44a74
C
114
115 this.category.label = peertubeTranslate(this.category.label, translations)
116 this.licence.label = peertubeTranslate(this.licence.label, translations)
117 this.language.label = peertubeTranslate(this.language.label, translations)
118 this.privacy.label = peertubeTranslate(this.privacy.label, translations)
2186386c 119
bbe0f064 120 this.scheduledUpdate = hash.scheduledUpdate
830b4faf
C
121 this.originallyPublishedAt = hash.originallyPublishedAt ? new Date(hash.originallyPublishedAt.toString()) : null
122
2186386c 123 if (this.state) this.state.label = peertubeTranslate(this.state.label, translations)
191764f3
C
124
125 this.blacklisted = hash.blacklisted
126 this.blacklistedReason = hash.blacklistedReason
6e46de09
C
127
128 this.userHistory = hash.userHistory
c5a1ae50
C
129
130 this.playlistElement = hash.playlistElement
501bc6c2
C
131 }
132
0883b324
C
133 isVideoNSFWForUser (user: User, serverConfig: ServerConfig) {
134 // Video is not NSFW, skip
135 if (this.nsfw === false) return false
136
137 // Return user setting if logged in
138 if (user) return user.nsfwPolicy !== 'display'
139
140 // Return default instance config
141 return serverConfig.instance.defaultNSFWPolicy !== 'display'
92fb909c 142 }
3a0fb65c
C
143
144 isRemovableBy (user: AuthUser) {
145 return user && this.isLocal === true && (this.account.name === user.username || user.hasRight(UserRight.REMOVE_ANY_VIDEO))
146 }
147
148 isBlackistableBy (user: AuthUser) {
149 return this.blacklisted !== true && user && user.hasRight(UserRight.MANAGE_VIDEO_BLACKLIST) === true
150 }
151
152 isUnblacklistableBy (user: AuthUser) {
153 return this.blacklisted === true && user && user.hasRight(UserRight.MANAGE_VIDEO_BLACKLIST) === true
154 }
155
156 isUpdatableBy (user: AuthUser) {
157 return user && this.isLocal === true && (this.account.name === user.username || user.hasRight(UserRight.UPDATE_ANY_VIDEO))
158 }
501bc6c2 159}