]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/shared-main/account/actor.model.ts
Add ability to update the banner
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-main / account / actor.model.ts
1 import { Actor as ActorServer, ActorImage } from '@shared/models'
2 import { getAbsoluteAPIUrl } from '@app/helpers'
3
4 export abstract class Actor implements ActorServer {
5 id: number
6 name: string
7
8 host: string
9 url: string
10
11 followingCount: number
12 followersCount: number
13
14 createdAt: Date | string
15 updatedAt: Date | string
16
17 avatar: ActorImage
18 avatarUrl: string
19
20 isLocal: boolean
21
22 static GET_ACTOR_AVATAR_URL (actor: { avatar?: { url?: string, path: string } }) {
23 if (actor?.avatar?.url) return actor.avatar.url
24
25 if (actor && actor.avatar) {
26 const absoluteAPIUrl = getAbsoluteAPIUrl()
27
28 return absoluteAPIUrl + actor.avatar.path
29 }
30
31 return ''
32 }
33
34 static CREATE_BY_STRING (accountName: string, host: string, forceHostname = false) {
35 const absoluteAPIUrl = getAbsoluteAPIUrl()
36 const thisHost = new URL(absoluteAPIUrl).host
37
38 if (host.trim() === thisHost && !forceHostname) return accountName
39
40 return accountName + '@' + host
41 }
42
43 static IS_LOCAL (host: string) {
44 const absoluteAPIUrl = getAbsoluteAPIUrl()
45 const thisHost = new URL(absoluteAPIUrl).host
46
47 return host.trim() === thisHost
48 }
49
50 protected constructor (hash: ActorServer) {
51 this.id = hash.id
52 this.url = hash.url
53 this.name = hash.name
54 this.host = hash.host
55 this.followingCount = hash.followingCount
56 this.followersCount = hash.followersCount
57
58 if (hash.createdAt) this.createdAt = new Date(hash.createdAt.toString())
59 if (hash.updatedAt) this.updatedAt = new Date(hash.updatedAt.toString())
60
61 this.avatar = hash.avatar
62 this.isLocal = Actor.IS_LOCAL(this.host)
63 }
64 }