1 import { User } from '../'
2 import { UserRight, Video as VideoServerModel, VideoPrivacy, VideoState } from '../../../../../shared'
3 import { Avatar } from '../../../../../shared/models/avatars/avatar.model'
4 import { VideoConstant } from '../../../../../shared/models/videos/video-constant.model'
5 import { durationToString, getAbsoluteAPIUrl } from '../misc/utils'
6 import { peertubeTranslate, ServerConfig } from '../../../../../shared/models'
7 import { Actor } from '@app/shared/actor/actor.model'
8 import { VideoScheduleUpdate } from '../../../../../shared/models/videos/video-schedule-update.model'
9 import { AuthUser } from '@app/core'
11 export class Video implements VideoServerModel {
12 byVideoChannel: string
15 accountAvatarUrl: string
16 videoChannelAvatarUrl: string
21 originallyPublishedAt: Date | string
22 category: VideoConstant<number>
23 licence: VideoConstant<number>
24 language: VideoConstant<string>
25 privacy: VideoConstant<VideoPrivacy>
45 waitTranscoding?: boolean
46 state?: VideoConstant<VideoState>
47 scheduledUpdate?: VideoScheduleUpdate
49 blacklistedReason?: string
73 static buildClientUrl (videoUUID: string) {
74 return '/videos/watch/' + videoUUID
77 constructor (hash: VideoServerModel, translations = {}) {
78 const absoluteAPIUrl = getAbsoluteAPIUrl()
80 this.createdAt = new Date(hash.createdAt.toString())
81 this.publishedAt = new Date(hash.publishedAt.toString())
82 this.category = hash.category
83 this.licence = hash.licence
84 this.language = hash.language
85 this.privacy = hash.privacy
86 this.waitTranscoding = hash.waitTranscoding
87 this.state = hash.state
88 this.description = hash.description
89 this.duration = hash.duration
90 this.durationLabel = durationToString(hash.duration)
93 this.isLocal = hash.isLocal
95 this.thumbnailPath = hash.thumbnailPath
96 this.thumbnailUrl = absoluteAPIUrl + hash.thumbnailPath
97 this.previewPath = hash.previewPath
98 this.previewUrl = absoluteAPIUrl + hash.previewPath
99 this.embedPath = hash.embedPath
100 this.embedUrl = absoluteAPIUrl + hash.embedPath
101 this.views = hash.views
102 this.likes = hash.likes
103 this.dislikes = hash.dislikes
104 this.nsfw = hash.nsfw
105 this.account = hash.account
106 this.channel = hash.channel
108 this.byAccount = Actor.CREATE_BY_STRING(hash.account.name, hash.account.host)
109 this.byVideoChannel = Actor.CREATE_BY_STRING(hash.channel.name, hash.channel.host)
110 this.accountAvatarUrl = Actor.GET_ACTOR_AVATAR_URL(this.account)
111 this.videoChannelAvatarUrl = Actor.GET_ACTOR_AVATAR_URL(this.channel)
113 this.category.label = peertubeTranslate(this.category.label, translations)
114 this.licence.label = peertubeTranslate(this.licence.label, translations)
115 this.language.label = peertubeTranslate(this.language.label, translations)
116 this.privacy.label = peertubeTranslate(this.privacy.label, translations)
118 this.scheduledUpdate = hash.scheduledUpdate
119 this.originallyPublishedAt = hash.originallyPublishedAt ? new Date(hash.originallyPublishedAt.toString()) : null
121 if (this.state) this.state.label = peertubeTranslate(this.state.label, translations)
123 this.blacklisted = hash.blacklisted
124 this.blacklistedReason = hash.blacklistedReason
126 this.userHistory = hash.userHistory
129 isVideoNSFWForUser (user: User, serverConfig: ServerConfig) {
130 // Video is not NSFW, skip
131 if (this.nsfw === false) return false
133 // Return user setting if logged in
134 if (user) return user.nsfwPolicy !== 'display'
136 // Return default instance config
137 return serverConfig.instance.defaultNSFWPolicy !== 'display'
140 isRemovableBy (user: AuthUser) {
141 return user && this.isLocal === true && (this.account.name === user.username || user.hasRight(UserRight.REMOVE_ANY_VIDEO))
144 isBlackistableBy (user: AuthUser) {
145 return this.blacklisted !== true && user && user.hasRight(UserRight.MANAGE_VIDEO_BLACKLIST) === true
148 isUnblacklistableBy (user: AuthUser) {
149 return this.blacklisted === true && user && user.hasRight(UserRight.MANAGE_VIDEO_BLACKLIST) === true
152 isUpdatableBy (user: AuthUser) {
153 return user && this.isLocal === true && (this.account.name === user.username || user.hasRight(UserRight.UPDATE_ANY_VIDEO))