X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fshared%2Fshared-main%2Faccount%2Factor.model.ts;h=a54f51aa4c22897947346164bbacb888420c3a95;hb=5a8de57d574045c5f819b8c81fb0530a9e9a699f;hp=9ec6dbab1bcb0d96771e86ec3f8eac019b9d8674;hpb=8ca56654a176ee8f350d31282c6cac4a59f58499;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/shared/shared-main/account/actor.model.ts b/client/src/app/shared/shared-main/account/actor.model.ts index 9ec6dbab1..a54f51aa4 100644 --- a/client/src/app/shared/shared-main/account/actor.model.ts +++ b/client/src/app/shared/shared-main/account/actor.model.ts @@ -1,33 +1,34 @@ -import { Actor as ActorServer, Avatar } from '@shared/models' import { getAbsoluteAPIUrl } from '@app/helpers' +import { Actor as ServerActor, ActorImage } from '@shared/models' -export abstract class Actor implements ActorServer { +export abstract class Actor implements ServerActor { id: number - url: string name: string + host: string + url: string + followingCount: number followersCount: number + createdAt: Date | string - updatedAt: Date | string - avatar: Avatar - avatarUrl: string + // TODO: remove, deprecated in 4.2 + avatar: never - static GET_ACTOR_AVATAR_URL (actor: { avatar?: { url?: string, path: string } }) { - if (actor?.avatar?.url) return actor.avatar.url + avatars: ActorImage[] - if (actor && actor.avatar) { - const absoluteAPIUrl = getAbsoluteAPIUrl() + isLocal: boolean - return absoluteAPIUrl + actor.avatar.path - } + static GET_ACTOR_AVATAR_URL (actor: { avatars: { width: number, url?: string, path: string }[] }, size: number) { + const avatar = actor.avatars.sort((a, b) => a.width - b.width).find(a => a.width >= size) - return this.GET_DEFAULT_AVATAR_URL() - } + if (!avatar) return '' + if (avatar.url) return avatar.url + + const absoluteAPIUrl = getAbsoluteAPIUrl() - static GET_DEFAULT_AVATAR_URL () { - return window.location.origin + '/client/assets/images/default-avatar.png' + return absoluteAPIUrl + avatar.path } static CREATE_BY_STRING (accountName: string, host: string, forceHostname = false) { @@ -39,29 +40,24 @@ export abstract class Actor implements ActorServer { return accountName + '@' + host } - protected constructor (hash: ActorServer) { + static IS_LOCAL (host: string) { + const absoluteAPIUrl = getAbsoluteAPIUrl() + const thisHost = new URL(absoluteAPIUrl).host + + return host.trim() === thisHost + } + + protected constructor (hash: Partial) { this.id = hash.id - this.url = hash.url - this.name = hash.name - this.host = hash.host + 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()) - if (hash.updatedAt) this.updatedAt = new Date(hash.updatedAt.toString()) - - this.avatar = hash.avatar - - this.updateComputedAttributes() - } - - updateAvatar (newAvatar: Avatar) { - this.avatar = newAvatar - - this.updateComputedAttributes() - } - private updateComputedAttributes () { - this.avatarUrl = Actor.GET_ACTOR_AVATAR_URL(this) + this.avatars = hash.avatars + this.isLocal = Actor.IS_LOCAL(this.host) } }