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

175 lines
5.2 KiB
TypeScript
Raw Normal View History

2017-12-01 18:56:26 +01:00
import { User } from '../'
2019-07-31 15:57:32 +02:00
import { UserRight, Video as VideoServerModel, VideoPrivacy, VideoState } from '../../../../../shared'
2018-03-12 11:06:15 +01:00
import { Avatar } from '../../../../../shared/models/avatars/avatar.model'
2018-07-12 19:02:00 +02:00
import { VideoConstant } from '../../../../../shared/models/videos/video-constant.model'
2018-08-27 15:59:00 +02:00
import { durationToString, getAbsoluteAPIUrl } from '../misc/utils'
2018-08-16 10:48:35 +02:00
import { peertubeTranslate, ServerConfig } from '../../../../../shared/models'
2018-04-25 15:43:19 +02:00
import { Actor } from '@app/shared/actor/actor.model'
import { VideoScheduleUpdate } from '../../../../../shared/models/videos/video-schedule-update.model'
2019-04-05 10:52:27 +02:00
import { AuthUser } from '@app/core'
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
2017-07-12 12:16:13 +02:00
previewPath: string
previewUrl: string
2017-10-16 10:05:49 +02:00
embedPath: string
embedUrl: 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
blacklistedReason?: 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
}
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.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
2017-10-17 16:22:14 +02:00
this.thumbnailUrl = absoluteAPIUrl + hash.thumbnailPath
2020-01-29 13:59:40 +01:00
2017-07-12 12:16:13 +02:00
this.previewPath = hash.previewPath
2017-10-17 16:22:14 +02:00
this.previewUrl = absoluteAPIUrl + hash.previewPath
2020-01-29 13:59:40 +01:00
2017-10-16 10:05:49 +02:00
this.embedPath = hash.embedPath
2017-10-17 16:22:14 +02:00
this.embedUrl = absoluteAPIUrl + hash.embedPath
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-04-25 15:43:19 +02:00
this.accountAvatarUrl = Actor.GET_ACTOR_AVATAR_URL(this.account)
this.videoChannelAvatarUrl = Actor.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.blacklistedReason = 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
}
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))
}
isBlackistableBy (user: AuthUser) {
return this.blacklisted !== true && user && user.hasRight(UserRight.MANAGE_VIDEO_BLACKLIST) === true
}
isUnblacklistableBy (user: AuthUser) {
return this.blacklisted === true && user && user.hasRight(UserRight.MANAGE_VIDEO_BLACKLIST) === true
}
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
canBeDuplicatedBy (user: AuthUser) {
return user && this.isLocal === false && user.hasRight(UserRight.MANAGE_VIDEOS_REDUNDANCIES)
}
}