X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;ds=sidebyside;f=client%2Fsrc%2Fapp%2Fshared%2Fvideo%2Fvideo.model.ts;h=546518ccac77b7b8fef0cf6d4aacd7f1436a40a6;hb=d5692d4088cdd9fde3be6ff34be8ce2816dab0cf;hp=6f9de9241764935cb6edae098ebce42968149c67;hpb=a41b9da1a9ce49df82ea10c82de4c2fbc6d1b189;p=oweals%2Fpeertube.git diff --git a/client/src/app/shared/video/video.model.ts b/client/src/app/shared/video/video.model.ts index 6f9de9241..546518cca 100644 --- a/client/src/app/shared/video/video.model.ts +++ b/client/src/app/shared/video/video.model.ts @@ -1,5 +1,5 @@ import { User } from '../' -import { PlaylistElement, UserRight, Video as VideoServerModel, VideoPrivacy, VideoState } from '../../../../../shared' +import { UserRight, Video as VideoServerModel, VideoPrivacy, VideoState } from '../../../../../shared' import { Avatar } from '../../../../../shared/models/avatars/avatar.model' import { VideoConstant } from '../../../../../shared/models/videos/video-constant.model' import { durationToString, getAbsoluteAPIUrl } from '../misc/utils' @@ -42,14 +42,15 @@ export class Video implements VideoServerModel { dislikes: number nsfw: boolean + originInstanceUrl: string + originInstanceHost: string + waitTranscoding?: boolean state?: VideoConstant scheduledUpdate?: VideoScheduleUpdate blacklisted?: boolean blacklistedReason?: string - playlistElement?: PlaylistElement - account: { id: number name: string @@ -88,22 +89,31 @@ export class Video implements VideoServerModel { this.waitTranscoding = hash.waitTranscoding this.state = hash.state this.description = hash.description + this.duration = hash.duration this.durationLabel = durationToString(hash.duration) + this.id = hash.id this.uuid = hash.uuid + this.isLocal = hash.isLocal this.name = hash.name + this.thumbnailPath = hash.thumbnailPath this.thumbnailUrl = absoluteAPIUrl + hash.thumbnailPath + this.previewPath = hash.previewPath this.previewUrl = absoluteAPIUrl + hash.previewPath + this.embedPath = hash.embedPath this.embedUrl = absoluteAPIUrl + hash.embedPath + this.views = hash.views this.likes = hash.likes this.dislikes = hash.dislikes + this.nsfw = hash.nsfw + this.account = hash.account this.channel = hash.channel @@ -127,7 +137,8 @@ export class Video implements VideoServerModel { this.userHistory = hash.userHistory - this.playlistElement = hash.playlistElement + this.originInstanceHost = this.account.host + this.originInstanceUrl = 'https://' + this.originInstanceHost } isVideoNSFWForUser (user: User, serverConfig: ServerConfig) { @@ -156,4 +167,8 @@ export class Video implements VideoServerModel { isUpdatableBy (user: AuthUser) { return user && this.isLocal === true && (this.account.name === user.username || user.hasRight(UserRight.UPDATE_ANY_VIDEO)) } + + canBeDuplicatedBy (user: AuthUser) { + return user && this.isLocal === false && user.hasRight(UserRight.MANAGE_VIDEOS_REDUNDANCIES) + } }