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

221 lines
5.8 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 { Actor } from '@app/shared/shared-main/account/actor.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 {
2021-04-06 11:35:56 +02:00
ActorImage,
2021-06-04 13:31:41 +02:00
HTMLServerConfig,
2020-06-23 14:10:17 +02:00
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
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
shortUUID: 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
2021-04-06 11:35:56 +02:00
avatar?: ActorImage
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
2021-04-06 11:35:56 +02:00
avatar?: ActorImage
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
static buildWatchUrl (video: Partial<Pick<Video, 'uuid' | 'shortUUID'>>) {
return '/w/' + (video.shortUUID || video.uuid)
}
static buildUpdateUrl (video: Pick<Video, 'uuid'>) {
return '/videos/update/' + video.uuid
2018-08-14 09:08:47 +02:00
}
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
this.shortUUID = hash.shortUUID
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)
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
}
2021-06-04 13:31:41 +02:00
isVideoNSFWForUser (user: User, serverConfig: HTMLServerConfig) {
// 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)
}
2020-11-27 15:57:38 +01:00
getExactNumberOfViews () {
if (this.views < 1000) return ''
if (this.isLive) {
return $localize`${this.views} viewers`
}
return $localize`${this.views} views`
}
}