PeerTube/client/src/app/shared/shared-main/video/video.model.ts

207 lines
5.7 KiB
TypeScript
Raw Normal View History

2019-04-05 10:52:27 +02:00
import { AuthUser } from '@app/core'
2020-06-23 14:10:17 +02:00
import { User } from '@app/core/users/user.model'
2020-07-10 11:13:41 +02:00
import { durationToString, getAbsoluteAPIUrl, getAbsoluteEmbedUrl } from '@app/helpers'
2020-11-25 11:44:31 +01:00
import { Account } from '@app/shared/shared-main/account/account.model'
import { Actor } from '@app/shared/shared-main/account/actor.model'
import { VideoChannel } from '@app/shared/shared-main/video-channel/video-channel.model'
2020-08-06 14:58:01 +02:00
import { peertubeTranslate } from '@shared/core-utils/i18n'
2020-06-23 14:10:17 +02:00
import {
Avatar,
ServerConfig,
UserRight,
Video as VideoServerModel,
VideoConstant,
VideoPrivacy,
VideoScheduleUpdate,
VideoState
} from '@shared/models'
2017-04-04 21:37:03 +02:00
2017-06-11 11:02:35 +02:00
export class Video implements VideoServerModel {
2018-08-21 16:18:59 +02:00
byVideoChannel: string
byAccount: string
2018-04-25 15:43:19 +02:00
accountAvatarUrl: string
videoChannelAvatarUrl: string
2018-08-21 16:18:59 +02:00
createdAt: Date
2017-09-12 12:53:55 +02:00
updatedAt: Date
publishedAt: Date
2019-01-12 14:41:45 +01:00
originallyPublishedAt: Date | string
category: VideoConstant<number>
licence: VideoConstant<number>
2018-04-23 14:39:52 +02:00
language: VideoConstant<string>
privacy: VideoConstant<VideoPrivacy>
description: string
duration: number
durationLabel: string
id: number
uuid: string
isLocal: boolean
name: string
2017-11-15 11:00:25 +01:00
serverHost: string
thumbnailPath: string
thumbnailUrl: string
2020-05-29 16:16:24 +02:00
isLive: boolean
2017-07-12 12:16:13 +02:00
previewPath: string
previewUrl: string
2020-05-29 16:16:24 +02:00
2017-10-16 10:05:49 +02:00
embedPath: string
embedUrl: string
2020-05-29 16:16:24 +02:00
url?: string
views: number
likes: number
dislikes: number
nsfw: boolean
2018-03-12 11:06:15 +01:00
2020-01-29 13:59:40 +01:00
originInstanceUrl: string
originInstanceHost: string
waitTranscoding?: boolean
state?: VideoConstant<VideoState>
scheduledUpdate?: VideoScheduleUpdate
2018-08-14 09:08:47 +02:00
blacklisted?: boolean
blockedReason?: string
2018-03-12 11:06:15 +01:00
account: {
2018-04-25 14:32:19 +02:00
id: number
2018-03-12 11:06:15 +01:00
name: string
displayName: string
url: string
2018-05-11 15:10:13 +02:00
host: string
avatar?: Avatar
2018-05-11 15:10:13 +02:00
}
channel: {
id: number
name: string
displayName: string
url: string
2018-03-12 11:06:15 +01:00
host: string
avatar?: Avatar
2018-03-12 11:06:15 +01:00
}
2016-05-23 12:15:03 +02:00
2018-10-05 11:15:06 +02:00
userHistory?: {
currentTime: number
}
pluginData?: any
2018-08-14 09:08:47 +02:00
static buildClientUrl (videoUUID: string) {
return '/videos/watch/' + videoUUID
}
2018-06-06 16:46:42 +02:00
constructor (hash: VideoServerModel, translations = {}) {
2017-12-29 19:10:13 +01:00
const absoluteAPIUrl = getAbsoluteAPIUrl()
2017-10-17 16:22:14 +02:00
this.createdAt = new Date(hash.createdAt.toString())
this.publishedAt = new Date(hash.publishedAt.toString())
this.category = hash.category
this.licence = hash.licence
this.language = hash.language
this.privacy = hash.privacy
this.waitTranscoding = hash.waitTranscoding
this.state = hash.state
this.description = hash.description
2020-01-29 13:59:40 +01:00
this.isLive = hash.isLive
this.duration = hash.duration
2018-08-27 15:59:00 +02:00
this.durationLabel = durationToString(hash.duration)
2020-01-29 13:59:40 +01:00
this.id = hash.id
this.uuid = hash.uuid
2020-01-29 13:59:40 +01:00
this.isLocal = hash.isLocal
this.name = hash.name
2020-01-29 13:59:40 +01:00
this.thumbnailPath = hash.thumbnailPath
this.thumbnailUrl = this.thumbnailPath
? hash.thumbnailUrl || (absoluteAPIUrl + hash.thumbnailPath)
: null
2020-01-29 13:59:40 +01:00
2017-07-12 12:16:13 +02:00
this.previewPath = hash.previewPath
this.previewUrl = this.previewPath
? hash.previewUrl || (absoluteAPIUrl + hash.previewPath)
: null
2020-01-29 13:59:40 +01:00
2017-10-16 10:05:49 +02:00
this.embedPath = hash.embedPath
2020-07-10 11:13:41 +02:00
this.embedUrl = hash.embedUrl || (getAbsoluteEmbedUrl() + hash.embedPath)
2020-05-29 16:16:24 +02:00
this.url = hash.url
2020-01-29 13:59:40 +01:00
this.views = hash.views
this.likes = hash.likes
this.dislikes = hash.dislikes
2020-01-29 13:59:40 +01:00
this.nsfw = hash.nsfw
2020-01-29 13:59:40 +01:00
2018-03-12 11:06:15 +01:00
this.account = hash.account
this.channel = hash.channel
2016-05-27 17:49:18 +02:00
2018-08-21 16:18:59 +02:00
this.byAccount = Actor.CREATE_BY_STRING(hash.account.name, hash.account.host)
this.byVideoChannel = Actor.CREATE_BY_STRING(hash.channel.name, hash.channel.host)
this.accountAvatarUrl = Account.GET_ACTOR_AVATAR_URL(this.account)
this.videoChannelAvatarUrl = VideoChannel.GET_ACTOR_AVATAR_URL(this.channel)
2018-06-06 16:46:42 +02:00
this.category.label = peertubeTranslate(this.category.label, translations)
this.licence.label = peertubeTranslate(this.licence.label, translations)
this.language.label = peertubeTranslate(this.language.label, translations)
this.privacy.label = peertubeTranslate(this.privacy.label, translations)
this.scheduledUpdate = hash.scheduledUpdate
2019-03-06 15:36:44 +01:00
this.originallyPublishedAt = hash.originallyPublishedAt ? new Date(hash.originallyPublishedAt.toString()) : null
if (this.state) this.state.label = peertubeTranslate(this.state.label, translations)
2018-08-14 09:08:47 +02:00
this.blacklisted = hash.blacklisted
this.blockedReason = hash.blacklistedReason
2018-10-05 11:15:06 +02:00
this.userHistory = hash.userHistory
2020-01-29 13:59:40 +01:00
this.originInstanceHost = this.account.host
this.originInstanceUrl = 'https://' + this.originInstanceHost
this.pluginData = hash.pluginData
}
isVideoNSFWForUser (user: User, serverConfig: ServerConfig) {
// Video is not NSFW, skip
if (this.nsfw === false) return false
// Return user setting if logged in
if (user) return user.nsfwPolicy !== 'display'
// Return default instance config
return serverConfig.instance.defaultNSFWPolicy !== 'display'
2017-04-04 21:37:03 +02:00
}
2019-04-05 10:52:27 +02:00
isRemovableBy (user: AuthUser) {
return user && this.isLocal === true && (this.account.name === user.username || user.hasRight(UserRight.REMOVE_ANY_VIDEO))
}
isBlockableBy (user: AuthUser) {
return this.blacklisted !== true && user && user.hasRight(UserRight.MANAGE_VIDEO_BLACKLIST) === true
2019-04-05 10:52:27 +02:00
}
isUnblockableBy (user: AuthUser) {
return this.blacklisted === true && user && user.hasRight(UserRight.MANAGE_VIDEO_BLACKLIST) === true
2019-04-05 10:52:27 +02:00
}
isUpdatableBy (user: AuthUser) {
return user && this.isLocal === true && (this.account.name === user.username || user.hasRight(UserRight.UPDATE_ANY_VIDEO))
}
2020-01-10 10:11:28 +01:00
2020-11-05 10:56:23 +01:00
isLiveInfoAvailableBy (user: AuthUser) {
return this.isLive &&
user && this.isLocal === true && (this.account.name === user.username || user.hasRight(UserRight.GET_ANY_LIVE))
}
2020-01-10 10:11:28 +01:00
canBeDuplicatedBy (user: AuthUser) {
return user && this.isLocal === false && user.hasRight(UserRight.MANAGE_VIDEOS_REDUNDANCIES)
}
}