PeerTube/server/models/activitypub/actor.ts

694 lines
16 KiB
TypeScript
Raw Normal View History

2017-12-14 17:38:41 +01:00
import { values } from 'lodash'
2018-01-03 10:12:36 +01:00
import { extname } from 'path'
2020-12-08 14:30:29 +01:00
import { literal, Op, Transaction } from 'sequelize'
2017-12-14 11:18:49 +01:00
import {
AllowNull,
BelongsTo,
Column,
CreatedAt,
DataType,
DefaultScope,
ForeignKey,
HasMany,
HasOne,
Is,
Model,
Scopes,
Table,
UpdatedAt
2017-12-14 11:18:49 +01:00
} from 'sequelize-typescript'
2020-12-08 14:30:29 +01:00
import { ModelCache } from '@server/models/model-cache'
2020-01-31 16:56:52 +01:00
import { ActivityIconObject, ActivityPubActorType } from '../../../shared/models/activitypub'
2021-04-06 11:35:56 +02:00
import { ActorImage } from '../../../shared/models/actors/actor-image.model'
2017-12-28 11:16:08 +01:00
import { activityPubContextify } from '../../helpers/activitypub'
2017-12-14 11:18:49 +01:00
import {
isActorFollowersCountValid,
isActorFollowingCountValid,
isActorPreferredUsernameValid,
isActorPrivateKeyValid,
2017-12-28 11:16:08 +01:00
isActorPublicKeyValid
} from '../../helpers/custom-validators/activitypub/actor'
import { isActivityPubUrlValid } from '../../helpers/custom-validators/activitypub/misc'
2021-04-06 17:01:35 +02:00
import {
ACTIVITY_PUB,
ACTIVITY_PUB_ACTOR_TYPES,
CONSTRAINTS_FIELDS,
MIMETYPES,
SERVER_ACTOR_NAME,
WEBSERVER
} from '../../initializers/constants'
2019-08-20 19:05:31 +02:00
import {
MActor,
MActorAccountChannelId,
2021-04-06 17:01:35 +02:00
MActorAPAccount,
MActorAPChannel,
2019-08-20 19:05:31 +02:00
MActorFormattable,
2019-08-21 14:31:57 +02:00
MActorFull,
MActorHost,
2019-08-20 19:05:31 +02:00
MActorServer,
2020-12-08 14:30:29 +01:00
MActorSummaryFormattable,
MActorUrl,
MActorWithInboxes
2020-06-18 10:45:25 +02:00
} from '../../types/models'
2020-12-08 14:30:29 +01:00
import { AccountModel } from '../account/account'
2021-04-06 11:35:56 +02:00
import { ActorImageModel } from '../account/actor-image'
2020-12-08 14:30:29 +01:00
import { ServerModel } from '../server/server'
import { isOutdated, throwIfNotValid } from '../utils'
import { VideoModel } from '../video/video'
import { VideoChannelModel } from '../video/video-channel'
import { ActorFollowModel } from './actor-follow'
2017-12-14 11:18:49 +01:00
2017-12-14 17:38:41 +01:00
enum ScopeNames {
FULL = 'FULL'
}
2018-08-23 17:58:39 +02:00
export const unusedActorAttributesForAPI = [
'publicKey',
'privateKey',
'inboxUrl',
'outboxUrl',
'sharedInboxUrl',
'followersUrl',
'followingUrl',
2018-08-24 11:04:02 +02:00
'createdAt',
'updatedAt'
2018-08-23 17:58:39 +02:00
]
2019-04-23 09:50:57 +02:00
@DefaultScope(() => ({
2017-12-18 11:53:04 +01:00
include: [
{
2019-04-23 09:50:57 +02:00
model: ServerModel,
2017-12-18 11:53:04 +01:00
required: false
2017-12-29 19:10:13 +01:00
},
{
2021-04-06 11:35:56 +02:00
model: ActorImageModel,
as: 'Avatar',
2017-12-29 19:10:13 +01:00
required: false
2017-12-18 11:53:04 +01:00
}
]
2019-04-23 09:50:57 +02:00
}))
@Scopes(() => ({
2017-12-14 17:38:41 +01:00
[ScopeNames.FULL]: {
include: [
{
2019-04-23 09:50:57 +02:00
model: AccountModel.unscoped(),
2017-12-14 17:38:41 +01:00
required: false
},
{
2019-04-23 09:50:57 +02:00
model: VideoChannelModel.unscoped(),
2018-09-11 16:27:07 +02:00
required: false,
include: [
{
2019-04-23 09:50:57 +02:00
model: AccountModel,
2018-09-11 16:27:07 +02:00
required: true
}
]
2017-12-18 11:53:04 +01:00
},
{
2019-04-23 09:50:57 +02:00
model: ServerModel,
2017-12-18 11:53:04 +01:00
required: false
2017-12-29 19:10:13 +01:00
},
{
2021-04-06 11:35:56 +02:00
model: ActorImageModel,
as: 'Avatar',
2017-12-29 19:10:13 +01:00
required: false
2021-04-06 17:01:35 +02:00
},
{
model: ActorImageModel,
as: 'Banner',
required: false
2017-12-14 17:38:41 +01:00
}
2019-04-23 09:50:57 +02:00
]
2017-12-14 17:38:41 +01:00
}
2019-04-23 09:50:57 +02:00
}))
2017-12-14 11:18:49 +01:00
@Table({
2017-12-14 17:38:41 +01:00
tableName: 'actor',
indexes: [
2018-01-10 17:18:12 +01:00
{
2018-07-23 20:13:30 +02:00
fields: [ 'url' ],
unique: true
2018-01-10 17:18:12 +01:00
},
2017-12-14 17:38:41 +01:00
{
2017-12-19 10:34:56 +01:00
fields: [ 'preferredUsername', 'serverId' ],
unique: true,
where: {
serverId: {
[Op.ne]: null
}
}
},
{
fields: [ 'preferredUsername' ],
unique: true,
where: {
serverId: null
}
},
{
fields: [ 'inboxUrl', 'sharedInboxUrl' ]
2018-07-19 16:17:54 +02:00
},
2018-07-31 18:04:45 +02:00
{
fields: [ 'sharedInboxUrl' ]
},
2018-07-19 16:17:54 +02:00
{
fields: [ 'serverId' ]
},
{
fields: [ 'avatarId' ]
2018-07-23 20:13:30 +02:00
},
{
fields: [ 'followersUrl' ]
2017-12-14 17:38:41 +01:00
}
]
2017-12-14 11:18:49 +01:00
})
2020-12-08 14:30:29 +01:00
export class ActorModel extends Model {
2017-12-14 11:18:49 +01:00
2017-12-14 17:38:41 +01:00
@AllowNull(false)
2019-04-23 09:50:57 +02:00
@Column(DataType.ENUM(...values(ACTIVITY_PUB_ACTOR_TYPES)))
2017-12-14 17:38:41 +01:00
type: ActivityPubActorType
2017-12-14 11:18:49 +01:00
@AllowNull(false)
2017-12-19 10:34:56 +01:00
@Is('ActorPreferredUsername', value => throwIfNotValid(value, isActorPreferredUsernameValid, 'actor preferred username'))
2017-12-14 11:18:49 +01:00
@Column
2017-12-19 10:34:56 +01:00
preferredUsername: string
2017-12-14 11:18:49 +01:00
@AllowNull(false)
@Is('ActorUrl', value => throwIfNotValid(value, isActivityPubUrlValid, 'url'))
2018-01-03 11:10:40 +01:00
@Column(DataType.STRING(CONSTRAINTS_FIELDS.ACTORS.URL.max))
2017-12-14 11:18:49 +01:00
url: string
@AllowNull(true)
2019-04-18 11:28:17 +02:00
@Is('ActorPublicKey', value => throwIfNotValid(value, isActorPublicKeyValid, 'public key', true))
2018-01-03 11:10:40 +01:00
@Column(DataType.STRING(CONSTRAINTS_FIELDS.ACTORS.PUBLIC_KEY.max))
2017-12-14 11:18:49 +01:00
publicKey: string
@AllowNull(true)
2019-04-18 11:28:17 +02:00
@Is('ActorPublicKey', value => throwIfNotValid(value, isActorPrivateKeyValid, 'private key', true))
2018-01-03 11:10:40 +01:00
@Column(DataType.STRING(CONSTRAINTS_FIELDS.ACTORS.PRIVATE_KEY.max))
2017-12-14 11:18:49 +01:00
privateKey: string
@AllowNull(false)
@Is('ActorFollowersCount', value => throwIfNotValid(value, isActorFollowersCountValid, 'followers count'))
@Column
followersCount: number
@AllowNull(false)
@Is('ActorFollowersCount', value => throwIfNotValid(value, isActorFollowingCountValid, 'following count'))
@Column
followingCount: number
@AllowNull(false)
@Is('ActorInboxUrl', value => throwIfNotValid(value, isActivityPubUrlValid, 'inbox url'))
2018-01-03 11:10:40 +01:00
@Column(DataType.STRING(CONSTRAINTS_FIELDS.ACTORS.URL.max))
2017-12-14 11:18:49 +01:00
inboxUrl: string
2019-08-30 09:40:21 +02:00
@AllowNull(true)
@Is('ActorOutboxUrl', value => throwIfNotValid(value, isActivityPubUrlValid, 'outbox url', true))
2018-01-03 11:10:40 +01:00
@Column(DataType.STRING(CONSTRAINTS_FIELDS.ACTORS.URL.max))
2017-12-14 11:18:49 +01:00
outboxUrl: string
@AllowNull(true)
@Is('ActorSharedInboxUrl', value => throwIfNotValid(value, isActivityPubUrlValid, 'shared inbox url', true))
2018-01-03 11:10:40 +01:00
@Column(DataType.STRING(CONSTRAINTS_FIELDS.ACTORS.URL.max))
2017-12-14 11:18:49 +01:00
sharedInboxUrl: string
2019-08-30 09:40:21 +02:00
@AllowNull(true)
@Is('ActorFollowersUrl', value => throwIfNotValid(value, isActivityPubUrlValid, 'followers url', true))
2018-01-03 11:10:40 +01:00
@Column(DataType.STRING(CONSTRAINTS_FIELDS.ACTORS.URL.max))
2017-12-14 11:18:49 +01:00
followersUrl: string
2019-08-30 09:40:21 +02:00
@AllowNull(true)
@Is('ActorFollowingUrl', value => throwIfNotValid(value, isActivityPubUrlValid, 'following url', true))
2018-01-03 11:10:40 +01:00
@Column(DataType.STRING(CONSTRAINTS_FIELDS.ACTORS.URL.max))
2017-12-14 11:18:49 +01:00
followingUrl: string
@CreatedAt
createdAt: Date
@UpdatedAt
updatedAt: Date
2021-04-06 11:35:56 +02:00
@ForeignKey(() => ActorImageModel)
2017-12-14 11:18:49 +01:00
@Column
avatarId: number
2021-04-06 11:35:56 +02:00
@ForeignKey(() => ActorImageModel)
@Column
bannerId: number
@BelongsTo(() => ActorImageModel, {
foreignKey: {
name: 'avatarId',
allowNull: true
},
as: 'Avatar',
onDelete: 'set null',
hooks: true
})
Avatar: ActorImageModel
@BelongsTo(() => ActorImageModel, {
2017-12-14 11:18:49 +01:00
foreignKey: {
2021-04-06 11:35:56 +02:00
name: 'bannerId',
2017-12-14 11:18:49 +01:00
allowNull: true
},
2021-04-06 11:35:56 +02:00
as: 'Banner',
onDelete: 'set null',
hooks: true
2017-12-14 11:18:49 +01:00
})
2021-04-06 11:35:56 +02:00
Banner: ActorImageModel
2017-12-14 11:18:49 +01:00
2017-12-14 17:38:41 +01:00
@HasMany(() => ActorFollowModel, {
2017-12-14 11:18:49 +01:00
foreignKey: {
2017-12-14 17:38:41 +01:00
name: 'actorId',
2017-12-14 11:18:49 +01:00
allowNull: false
},
2018-12-26 10:36:24 +01:00
as: 'ActorFollowings',
2017-12-14 11:18:49 +01:00
onDelete: 'cascade'
})
ActorFollowing: ActorFollowModel[]
2017-12-14 11:18:49 +01:00
2017-12-14 17:38:41 +01:00
@HasMany(() => ActorFollowModel, {
2017-12-14 11:18:49 +01:00
foreignKey: {
2017-12-14 17:38:41 +01:00
name: 'targetActorId',
2017-12-14 11:18:49 +01:00
allowNull: false
},
as: 'ActorFollowers',
2017-12-14 11:18:49 +01:00
onDelete: 'cascade'
})
ActorFollowers: ActorFollowModel[]
2017-12-14 11:18:49 +01:00
@ForeignKey(() => ServerModel)
@Column
serverId: number
@BelongsTo(() => ServerModel, {
foreignKey: {
allowNull: true
},
onDelete: 'cascade'
})
Server: ServerModel
2017-12-14 17:38:41 +01:00
@HasOne(() => AccountModel, {
foreignKey: {
allowNull: true
},
onDelete: 'cascade',
hooks: true
2017-12-14 17:38:41 +01:00
})
Account: AccountModel
@HasOne(() => VideoChannelModel, {
foreignKey: {
allowNull: true
},
onDelete: 'cascade',
hooks: true
2017-12-14 17:38:41 +01:00
})
VideoChannel: VideoChannelModel
2020-12-08 14:30:29 +01:00
static load (id: number): Promise<MActor> {
2019-02-21 14:28:06 +01:00
return ActorModel.unscoped().findByPk(id)
2017-12-14 17:38:41 +01:00
}
2020-12-08 14:30:29 +01:00
static loadFull (id: number): Promise<MActorFull> {
2019-08-15 11:53:26 +02:00
return ActorModel.scope(ScopeNames.FULL).findByPk(id)
}
2020-12-08 14:30:29 +01:00
static loadFromAccountByVideoId (videoId: number, transaction: Transaction): Promise<MActor> {
const query = {
include: [
{
attributes: [ 'id' ],
model: AccountModel.unscoped(),
required: true,
include: [
{
attributes: [ 'id' ],
model: VideoChannelModel.unscoped(),
required: true,
2019-04-23 09:50:57 +02:00
include: [
{
attributes: [ 'id' ],
model: VideoModel.unscoped(),
required: true,
where: {
id: videoId
}
}
2019-04-23 09:50:57 +02:00
]
}
]
}
],
transaction
}
2019-04-23 09:50:57 +02:00
return ActorModel.unscoped().findOne(query)
}
2018-09-19 11:41:21 +02:00
static isActorUrlExist (url: string) {
const query = {
raw: true,
where: {
url
}
}
return ActorModel.unscoped().findOne(query)
.then(a => !!a)
}
2020-12-08 14:30:29 +01:00
static listByFollowersUrls (followersUrls: string[], transaction?: Transaction): Promise<MActorFull[]> {
2017-12-14 11:18:49 +01:00
const query = {
where: {
followersUrl: {
2020-01-31 16:56:52 +01:00
[Op.in]: followersUrls
2017-12-14 11:18:49 +01:00
}
},
transaction
}
2017-12-14 17:38:41 +01:00
return ActorModel.scope(ScopeNames.FULL).findAll(query)
}
2020-12-08 14:30:29 +01:00
static loadLocalByName (preferredUsername: string, transaction?: Transaction): Promise<MActorFull> {
2020-02-04 11:26:51 +01:00
const fun = () => {
const query = {
where: {
preferredUsername,
serverId: null
},
transaction
}
2019-12-27 13:33:16 +01:00
2020-02-04 11:26:51 +01:00
return ActorModel.scope(ScopeNames.FULL)
.findOne(query)
2017-12-14 17:38:41 +01:00
}
2020-02-04 11:26:51 +01:00
return ModelCache.Instance.doCache({
cacheType: 'local-actor-name',
key: preferredUsername,
// The server actor never change, so we can easily cache it
whitelist: () => preferredUsername === SERVER_ACTOR_NAME,
fun
})
2020-01-28 14:45:17 +01:00
}
2020-12-08 14:30:29 +01:00
static loadLocalUrlByName (preferredUsername: string, transaction?: Transaction): Promise<MActorUrl> {
2020-02-04 11:26:51 +01:00
const fun = () => {
const query = {
attributes: [ 'url' ],
where: {
preferredUsername,
serverId: null
},
transaction
}
2020-01-28 14:45:17 +01:00
2020-02-04 11:26:51 +01:00
return ActorModel.unscoped()
.findOne(query)
2020-01-28 14:45:17 +01:00
}
2020-02-04 11:26:51 +01:00
return ModelCache.Instance.doCache({
cacheType: 'local-actor-name',
key: preferredUsername,
// The server actor never change, so we can easily cache it
whitelist: () => preferredUsername === SERVER_ACTOR_NAME,
fun
})
2017-12-14 17:38:41 +01:00
}
2020-12-08 14:30:29 +01:00
static loadByNameAndHost (preferredUsername: string, host: string): Promise<MActorFull> {
2017-12-14 17:38:41 +01:00
const query = {
where: {
2017-12-19 10:34:56 +01:00
preferredUsername
2017-12-14 17:38:41 +01:00
},
include: [
{
model: ServerModel,
required: true,
where: {
host
}
}
]
}
return ActorModel.scope(ScopeNames.FULL).findOne(query)
}
2020-12-08 14:30:29 +01:00
static loadByUrl (url: string, transaction?: Transaction): Promise<MActorAccountChannelId> {
const query = {
where: {
url
},
transaction,
include: [
{
attributes: [ 'id' ],
model: AccountModel.unscoped(),
required: false
},
{
attributes: [ 'id' ],
model: VideoChannelModel.unscoped(),
required: false
}
]
}
return ActorModel.unscoped().findOne(query)
}
2020-12-08 14:30:29 +01:00
static loadByUrlAndPopulateAccountAndChannel (url: string, transaction?: Transaction): Promise<MActorFull> {
2017-12-14 17:38:41 +01:00
const query = {
where: {
url
},
transaction
}
return ActorModel.scope(ScopeNames.FULL).findOne(query)
2017-12-14 11:18:49 +01:00
}
static rebuildFollowsCount (ofId: number, type: 'followers' | 'following', transaction?: Transaction) {
const sanitizedOfId = parseInt(ofId + '', 10)
const where = { id: sanitizedOfId }
let columnToUpdate: string
let columnOfCount: string
if (type === 'followers') {
columnToUpdate = 'followersCount'
columnOfCount = 'targetActorId'
} else {
columnToUpdate = 'followingCount'
columnOfCount = 'actorId'
}
return ActorModel.update({
[columnToUpdate]: literal(`(SELECT COUNT(*) FROM "actorFollow" WHERE "${columnOfCount}" = ${sanitizedOfId})`)
}, { where, transaction })
2018-01-12 11:47:45 +01:00
}
2020-12-08 14:30:29 +01:00
static loadAccountActorByVideoId (videoId: number): Promise<MActor> {
2020-02-04 16:14:33 +01:00
const query = {
include: [
{
attributes: [ 'id' ],
model: AccountModel.unscoped(),
required: true,
include: [
{
attributes: [ 'id', 'accountId' ],
model: VideoChannelModel.unscoped(),
required: true,
include: [
{
attributes: [ 'id', 'channelId' ],
model: VideoModel.unscoped(),
where: {
id: videoId
}
}
]
}
]
}
]
}
return ActorModel.unscoped().findOne(query)
}
getSharedInbox (this: MActorWithInboxes) {
return this.sharedInboxUrl || this.inboxUrl
}
2019-08-20 19:05:31 +02:00
toFormattedSummaryJSON (this: MActorSummaryFormattable) {
2021-04-06 11:35:56 +02:00
let avatar: ActorImage = null
2017-12-14 11:18:49 +01:00
if (this.Avatar) {
2017-12-29 19:10:13 +01:00
avatar = this.Avatar.toFormattedJSON()
2017-12-14 11:18:49 +01:00
}
return {
2018-01-04 11:19:16 +01:00
url: this.url,
name: this.preferredUsername,
2017-12-19 10:34:56 +01:00
host: this.getHost(),
2019-08-20 19:05:31 +02:00
avatar
}
}
toFormattedJSON (this: MActorFormattable) {
const base = this.toFormattedSummaryJSON()
2021-04-06 17:01:35 +02:00
let banner: ActorImage = null
2021-04-13 09:40:20 +02:00
if (this.Banner) {
2021-04-06 17:01:35 +02:00
banner = this.Banner.toFormattedJSON()
}
2019-08-20 19:05:31 +02:00
return Object.assign(base, {
id: this.id,
2018-09-11 16:27:07 +02:00
hostRedundancyAllowed: this.getRedundancyAllowed(),
2017-12-14 11:18:49 +01:00
followingCount: this.followingCount,
followersCount: this.followersCount,
2021-04-06 17:01:35 +02:00
banner,
createdAt: this.createdAt,
updatedAt: this.updatedAt
2019-08-20 19:05:31 +02:00
})
2017-12-14 11:18:49 +01:00
}
2021-04-06 17:01:35 +02:00
toActivityPubObject (this: MActorAPChannel | MActorAPAccount, name: string) {
2020-01-31 16:56:52 +01:00
let icon: ActivityIconObject
2021-04-06 17:01:35 +02:00
let image: ActivityIconObject
2020-01-31 16:56:52 +01:00
2017-12-29 19:10:13 +01:00
if (this.avatarId) {
const extension = extname(this.Avatar.filename)
2020-01-31 16:56:52 +01:00
2017-12-29 19:10:13 +01:00
icon = {
type: 'Image',
2021-04-06 17:01:35 +02:00
mediaType: MIMETYPES.IMAGE.EXT_MIMETYPE[extension],
2021-04-08 11:23:45 +02:00
height: this.Avatar.height,
width: this.Avatar.width,
2017-12-29 19:10:13 +01:00
url: this.getAvatarUrl()
}
}
2021-04-06 17:01:35 +02:00
if (this.bannerId) {
2021-04-08 11:23:45 +02:00
const banner = (this as MActorAPChannel).Banner
const extension = extname(banner.filename)
2021-04-06 17:01:35 +02:00
image = {
type: 'Image',
mediaType: MIMETYPES.IMAGE.EXT_MIMETYPE[extension],
2021-04-08 11:23:45 +02:00
height: banner.height,
width: banner.width,
2021-04-06 17:01:35 +02:00
url: this.getBannerUrl()
}
}
2017-12-14 11:18:49 +01:00
const json = {
type: this.type,
2017-12-14 11:18:49 +01:00
id: this.url,
following: this.getFollowingUrl(),
followers: this.getFollowersUrl(),
2019-02-26 10:55:40 +01:00
playlists: this.getPlaylistsUrl(),
2017-12-14 11:18:49 +01:00
inbox: this.inboxUrl,
outbox: this.outboxUrl,
2017-12-19 10:34:56 +01:00
preferredUsername: this.preferredUsername,
2017-12-14 11:18:49 +01:00
url: this.url,
2017-12-19 10:34:56 +01:00
name,
2017-12-14 11:18:49 +01:00
endpoints: {
sharedInbox: this.sharedInboxUrl
},
publicKey: {
id: this.getPublicKeyUrl(),
owner: this.url,
publicKeyPem: this.publicKey
2017-12-29 19:10:13 +01:00
},
2021-04-06 17:01:35 +02:00
icon,
image
2017-12-14 11:18:49 +01:00
}
return activityPubContextify(json)
}
2019-12-06 09:55:36 +01:00
getFollowerSharedInboxUrls (t: Transaction) {
2017-12-14 11:18:49 +01:00
const query = {
attributes: [ 'sharedInboxUrl' ],
include: [
{
attribute: [],
model: ActorFollowModel.unscoped(),
2017-12-14 11:18:49 +01:00
required: true,
2018-01-26 11:44:08 +01:00
as: 'ActorFollowing',
2017-12-14 11:18:49 +01:00
where: {
state: 'accepted',
2017-12-14 17:38:41 +01:00
targetActorId: this.id
2017-12-14 11:18:49 +01:00
}
}
],
transaction: t
}
return ActorModel.findAll(query)
.then(accounts => accounts.map(a => a.sharedInboxUrl))
}
getFollowingUrl () {
return this.url + '/following'
}
getFollowersUrl () {
return this.url + '/followers'
}
2019-02-26 10:55:40 +01:00
getPlaylistsUrl () {
return this.url + '/playlists'
}
2017-12-14 11:18:49 +01:00
getPublicKeyUrl () {
return this.url + '#main-key'
}
isOwned () {
return this.serverId === null
}
2017-12-19 10:34:56 +01:00
2019-08-20 19:05:31 +02:00
getWebfingerUrl (this: MActorServer) {
2017-12-19 10:34:56 +01:00
return 'acct:' + this.preferredUsername + '@' + this.getHost()
}
getIdentifier () {
return this.Server ? `${this.preferredUsername}@${this.Server.host}` : this.preferredUsername
}
2019-08-20 19:05:31 +02:00
getHost (this: MActorHost) {
2019-04-11 11:33:44 +02:00
return this.Server ? this.Server.host : WEBSERVER.HOST
2017-12-19 10:34:56 +01:00
}
2017-12-29 19:10:13 +01:00
2019-08-21 14:31:57 +02:00
getRedundancyAllowed () {
2018-09-11 16:27:07 +02:00
return this.Server ? this.Server.redundancyAllowed : false
}
2017-12-29 19:10:13 +01:00
getAvatarUrl () {
if (!this.avatarId) return undefined
2019-08-09 11:32:40 +02:00
return WEBSERVER.URL + this.Avatar.getStaticPath()
2017-12-29 19:10:13 +01:00
}
2018-01-04 14:04:02 +01:00
2021-04-06 17:01:35 +02:00
getBannerUrl () {
if (!this.bannerId) return undefined
return WEBSERVER.URL + this.Banner.getStaticPath()
}
2018-01-04 14:04:02 +01:00
isOutdated () {
if (this.isOwned()) return false
2019-03-19 14:13:53 +01:00
return isOutdated(this, ACTIVITY_PUB.ACTOR_REFRESH_INTERVAL)
2018-01-04 14:04:02 +01:00
}
2017-12-14 11:18:49 +01:00
}