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

289 lines
7.9 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'
import { durationToString, getAbsoluteAPIUrl, getAbsoluteEmbedUrl, prepareIcu } from '@app/helpers'
2020-11-25 11:44:31 +01:00
import { Actor } from '@app/shared/shared-main/account/actor.model'
import { buildVideoWatchPath, getAllFiles } from '@shared/core-utils'
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,
VideoFile,
2020-06-23 14:10:17 +02:00
VideoPrivacy,
VideoScheduleUpdate,
VideoState,
VideoStreamingPlaylist,
VideoStreamingPlaylistType
2020-06-23 14:10:17 +02:00
} from '@shared/models'
2017-04-04 21:37:03 +02:00
2017-06-11 11:02:35 +02:00
export class Video implements VideoServerModel {
2022-05-24 16:29:01 +02:00
private static readonly viewsICU = prepareIcu($localize`{views, plural, =0 {No view} =1 {1 view} other {{views} views}}`)
private static readonly viewersICU = prepareIcu($localize`{viewers, plural, =0 {No viewers} =1 {1 viewer} other {{viewers} viewers}}`)
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
2020-05-29 16:16:24 +02:00
views: number
2022-04-05 14:03:52 +02:00
viewers: 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
blacklistedReason?: string
blockedOwner?: boolean
blockedServer?: boolean
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
// TODO: remove, deprecated in 4.2
avatar: ActorImage
avatars: 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
// TODO: remove, deprecated in 4.2
avatar: ActorImage
avatars: 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
streamingPlaylists?: VideoStreamingPlaylist[]
files?: VideoFile[]
static buildWatchUrl (video: Partial<Pick<Video, 'uuid' | 'shortUUID'>>) {
2021-07-26 15:04:37 +02:00
return buildVideoWatchPath({ shortUUID: video.shortUUID || video.uuid })
}
static buildUpdateUrl (video: Pick<Video, 'uuid'>) {
return '/videos/update/' + video.uuid
2018-08-14 09:08:47 +02:00
}
2021-08-17 14:42:53 +02:00
constructor (hash: VideoServerModel, translations: { [ id: string ]: string } = {}) {
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.viewers = hash.viewers
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.blacklistedReason = hash.blacklistedReason
this.blockedOwner = hash.blockedOwner
this.blockedServer = hash.blockedServer
2018-10-05 11:15:06 +02:00
this.streamingPlaylists = hash.streamingPlaylists
this.files = hash.files
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
2022-03-22 16:58:49 +01:00
isEditableBy (user: AuthUser, videoStudioEnabled: boolean) {
return videoStudioEnabled &&
this.state?.id === VideoState.PUBLISHED &&
this.isUpdatableBy(user)
}
2022-04-05 14:03:52 +02:00
canSeeStats (user: AuthUser) {
return user && this.isLocal === true && (this.account.name === user.username || user.hasRight(UserRight.SEE_ALL_VIDEOS))
}
canRemoveOneFile (user: AuthUser) {
return this.isLocal &&
user && user.hasRight(UserRight.MANAGE_VIDEO_FILES) &&
this.state.id !== VideoState.TO_TRANSCODE &&
getAllFiles(this).length > 1
}
2021-11-18 14:35:08 +01:00
canRemoveFiles (user: AuthUser) {
2021-11-19 08:33:18 +01:00
return this.isLocal &&
2022-04-05 14:03:52 +02:00
user && user.hasRight(UserRight.MANAGE_VIDEO_FILES) &&
2021-11-18 14:35:08 +01:00
this.state.id !== VideoState.TO_TRANSCODE &&
this.hasHLS() &&
this.hasWebTorrent()
}
canRunTranscoding (user: AuthUser) {
2021-11-19 08:33:18 +01:00
return this.isLocal &&
2022-04-05 14:03:52 +02:00
user && user.hasRight(UserRight.RUN_VIDEO_TRANSCODING) &&
2021-11-18 14:35:08 +01:00
this.state.id !== VideoState.TO_TRANSCODE
}
hasHLS () {
return this.streamingPlaylists?.some(p => p.type === VideoStreamingPlaylistType.HLS)
}
hasWebTorrent () {
return this.files && this.files.length !== 0
}
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.isLive) {
2022-05-24 16:29:01 +02:00
return Video.viewersICU({ viewers: this.viewers }, $localize`${this.viewers} viewer(s)`)
2020-11-27 15:57:38 +01:00
}
2022-05-24 16:29:01 +02:00
return Video.viewsICU({ views: this.views }, $localize`{${this.views} view(s)}`)
2020-11-27 15:57:38 +01:00
}
}