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

98 lines
2.9 KiB
TypeScript
Raw Normal View History

2018-01-08 10:35:54 +01:00
import { Account } from '@app/shared/account/account.model'
2017-12-01 18:56:26 +01:00
import { User } from '../'
2017-12-11 17:36:46 +01:00
import { Video as VideoServerModel } from '../../../../../shared'
2018-03-12 11:06:15 +01:00
import { Avatar } from '../../../../../shared/models/avatars/avatar.model'
import { VideoConstant } from '../../../../../shared/models/videos/video.model'
2017-12-29 19:10:13 +01:00
import { getAbsoluteAPIUrl } from '../misc/utils'
import { ServerConfig } from '../../../../../shared/models'
2017-04-04 21:37:03 +02:00
2017-06-11 11:02:35 +02:00
export class Video implements VideoServerModel {
by: string
createdAt: Date
2017-09-12 12:53:55 +02:00
updatedAt: Date
publishedAt: Date
category: VideoConstant<number>
licence: VideoConstant<number>
language: VideoConstant<number>
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
account: {
name: string
displayName: string
url: string
host: string
avatar: Avatar
}
2016-05-23 12:15:03 +02:00
private static createDurationString (duration: number) {
const hours = Math.floor(duration / 3600)
const minutes = Math.floor(duration % 3600 / 60)
const seconds = duration % 60
const minutesPadding = minutes >= 10 ? '' : '0'
const secondsPadding = seconds >= 10 ? '' : '0'
const displayedHours = hours > 0 ? hours.toString() + ':' : ''
2016-05-27 17:49:18 +02:00
return displayedHours + minutesPadding +
minutes.toString() + ':' + secondsPadding + seconds.toString()
2016-05-27 17:49:18 +02:00
}
2017-10-25 16:43:19 +02:00
constructor (hash: VideoServerModel) {
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.description = hash.description
this.duration = hash.duration
this.durationLabel = Video.createDurationString(hash.duration)
this.id = hash.id
this.uuid = hash.uuid
this.isLocal = hash.isLocal
this.name = hash.name
this.thumbnailPath = hash.thumbnailPath
2017-10-17 16:22:14 +02:00
this.thumbnailUrl = absoluteAPIUrl + hash.thumbnailPath
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
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
this.views = hash.views
this.likes = hash.likes
this.dislikes = hash.dislikes
this.nsfw = hash.nsfw
2018-03-12 11:06:15 +01:00
this.account = hash.account
2016-05-27 17:49:18 +02:00
2018-03-12 11:06:15 +01:00
this.by = Account.CREATE_BY_STRING(hash.account.name, hash.account.host)
}
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
}
}