client/src/app/shared/shared-main/account/actor.model.ts
import { getAbsoluteAPIUrl, getAPIHost } from '@app/helpers'
import { Actor as ServerActor, ActorImage } from '@peertube/peertube-models'
export abstract class Actor implements ServerActor {
id: number
name: string
host: string
url: string
followingCount: number
followersCount: number
createdAt: Date | string
avatars: ActorImage[]
isLocal: boolean
static GET_ACTOR_AVATAR_URL (actor: { avatars: { width: number, url?: string, path: string }[] }, size?: number) {
const avatarsAscWidth = actor.avatars.sort((a, b) => a.width - b.width)
const avatar = size && avatarsAscWidth.length > 1
? avatarsAscWidth.find(a => a.width >= size)
: avatarsAscWidth[avatarsAscWidth.length - 1] // Bigger one
if (!avatar) return ''
if (avatar.url) return avatar.url
const absoluteAPIUrl = getAbsoluteAPIUrl()
return absoluteAPIUrl + avatar.path
}
static CREATE_BY_STRING (accountName: string, host: string, forceHostname = false) {
const thisHost = getAPIHost()
if (host.trim() === thisHost && !forceHostname) return accountName
return accountName + '@' + host
}
static IS_LOCAL (host: string) {
const thisHost = getAPIHost()
return host.trim() === thisHost
}
protected constructor (hash: Partial<ServerActor>) {
this.id = hash.id
this.url = hash.url ?? ''
this.name = hash.name ?? ''
this.host = hash.host ?? ''
this.followingCount = hash.followingCount
this.followersCount = hash.followersCount
if (hash.createdAt) this.createdAt = new Date(hash.createdAt.toString())
this.avatars = hash.avatars || []
this.isLocal = Actor.IS_LOCAL(this.host)
}
}