2020-12-08 08:30:29 -05:00
|
|
|
import { FindOptions, Includeable, IncludeOptions, Op, Transaction, WhereOptions } from 'sequelize'
|
2017-12-12 11:53:50 -05:00
|
|
|
import {
|
2018-02-15 08:46:26 -05:00
|
|
|
AllowNull,
|
|
|
|
BeforeDestroy,
|
|
|
|
BelongsTo,
|
|
|
|
Column,
|
2019-08-15 05:53:26 -04:00
|
|
|
CreatedAt,
|
|
|
|
DataType,
|
2018-02-15 08:46:26 -05:00
|
|
|
Default,
|
|
|
|
DefaultScope,
|
|
|
|
ForeignKey,
|
|
|
|
HasMany,
|
|
|
|
Is,
|
2019-03-05 05:30:43 -05:00
|
|
|
Model,
|
|
|
|
Scopes,
|
2018-02-15 08:46:26 -05:00
|
|
|
Table,
|
2017-12-12 11:53:50 -05:00
|
|
|
UpdatedAt
|
|
|
|
} from 'sequelize-typescript'
|
2020-12-08 04:53:41 -05:00
|
|
|
import { ModelCache } from '@server/models/model-cache'
|
2021-05-12 08:09:04 -04:00
|
|
|
import { AttributesOnly } from '@shared/core-utils'
|
2019-02-26 04:55:40 -05:00
|
|
|
import { Account, AccountSummary } from '../../../shared/models/actors'
|
2018-02-15 08:46:26 -05:00
|
|
|
import { isAccountDescriptionValid } from '../../helpers/custom-validators/accounts'
|
2020-12-08 04:53:41 -05:00
|
|
|
import { CONSTRAINTS_FIELDS, SERVER_ACTOR_NAME, WEBSERVER } from '../../initializers/constants'
|
2021-05-12 08:51:17 -04:00
|
|
|
import { sendDeleteActor } from '../../lib/activitypub/send/send-delete'
|
2020-12-08 04:53:41 -05:00
|
|
|
import {
|
|
|
|
MAccount,
|
|
|
|
MAccountActor,
|
|
|
|
MAccountAP,
|
|
|
|
MAccountDefault,
|
|
|
|
MAccountFormattable,
|
|
|
|
MAccountSummaryFormattable,
|
|
|
|
MChannelActor
|
|
|
|
} from '../../types/models'
|
2021-05-11 05:15:29 -04:00
|
|
|
import { ActorModel } from '../actor/actor'
|
|
|
|
import { ActorFollowModel } from '../actor/actor-follow'
|
|
|
|
import { ActorImageModel } from '../actor/actor-image'
|
2017-12-12 11:53:50 -05:00
|
|
|
import { ApplicationModel } from '../application/application'
|
|
|
|
import { ServerModel } from '../server/server'
|
2020-12-08 04:53:41 -05:00
|
|
|
import { ServerBlocklistModel } from '../server/server-blocklist'
|
2021-05-11 05:15:29 -04:00
|
|
|
import { UserModel } from '../user/user'
|
2018-02-15 08:46:26 -05:00
|
|
|
import { getSort, throwIfNotValid } from '../utils'
|
2020-12-08 04:53:41 -05:00
|
|
|
import { VideoModel } from '../video/video'
|
2017-12-12 11:53:50 -05:00
|
|
|
import { VideoChannelModel } from '../video/video-channel'
|
2018-01-18 04:53:54 -05:00
|
|
|
import { VideoCommentModel } from '../video/video-comment'
|
2019-02-26 04:55:40 -05:00
|
|
|
import { VideoPlaylistModel } from '../video/video-playlist'
|
2019-07-31 09:57:32 -04:00
|
|
|
import { AccountBlocklistModel } from './account-blocklist'
|
2019-02-26 04:55:40 -05:00
|
|
|
|
|
|
|
export enum ScopeNames {
|
|
|
|
SUMMARY = 'SUMMARY'
|
|
|
|
}
|
2017-12-12 11:53:50 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
export type SummaryOptions = {
|
2020-07-07 08:34:16 -04:00
|
|
|
actorRequired?: boolean // Default: true
|
2019-07-31 09:57:32 -04:00
|
|
|
whereActor?: WhereOptions
|
2021-07-28 04:32:40 -04:00
|
|
|
whereServer?: WhereOptions
|
2019-07-31 09:57:32 -04:00
|
|
|
withAccountBlockerIds?: number[]
|
|
|
|
}
|
|
|
|
|
2019-04-23 03:50:57 -04:00
|
|
|
@DefaultScope(() => ({
|
2017-12-14 11:38:41 -05:00
|
|
|
include: [
|
2017-12-12 11:53:50 -05:00
|
|
|
{
|
2019-04-23 03:50:57 -04:00
|
|
|
model: ActorModel, // Default scope includes avatar and server
|
2018-08-23 11:58:39 -04:00
|
|
|
required: true
|
2017-11-09 11:51:58 -05:00
|
|
|
}
|
|
|
|
]
|
2019-04-23 03:50:57 -04:00
|
|
|
}))
|
|
|
|
@Scopes(() => ({
|
2020-01-31 10:56:52 -05:00
|
|
|
[ScopeNames.SUMMARY]: (options: SummaryOptions = {}) => {
|
2019-07-31 09:57:32 -04:00
|
|
|
const serverInclude: IncludeOptions = {
|
|
|
|
attributes: [ 'host' ],
|
|
|
|
model: ServerModel.unscoped(),
|
2021-07-28 04:32:40 -04:00
|
|
|
required: !!options.whereServer,
|
|
|
|
where: options.whereServer
|
2019-07-31 09:57:32 -04:00
|
|
|
}
|
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
const queryInclude: Includeable[] = [
|
|
|
|
{
|
|
|
|
attributes: [ 'id', 'preferredUsername', 'url', 'serverId', 'avatarId' ],
|
|
|
|
model: ActorModel.unscoped(),
|
|
|
|
required: options.actorRequired ?? true,
|
2021-07-28 04:32:40 -04:00
|
|
|
where: options.whereActor,
|
2020-12-08 08:30:29 -05:00
|
|
|
include: [
|
|
|
|
serverInclude,
|
2019-07-31 09:57:32 -04:00
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
{
|
2021-04-06 05:35:56 -04:00
|
|
|
model: ActorImageModel.unscoped(),
|
|
|
|
as: 'Avatar',
|
2020-12-08 08:30:29 -05:00
|
|
|
required: false
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
const query: FindOptions = {
|
|
|
|
attributes: [ 'id', 'name', 'actorId' ]
|
2019-02-26 04:55:40 -05:00
|
|
|
}
|
2019-07-31 09:57:32 -04:00
|
|
|
|
|
|
|
if (options.withAccountBlockerIds) {
|
2020-12-08 08:30:29 -05:00
|
|
|
queryInclude.push({
|
2019-07-31 09:57:32 -04:00
|
|
|
attributes: [ 'id' ],
|
|
|
|
model: AccountBlocklistModel.unscoped(),
|
2021-10-29 04:54:27 -04:00
|
|
|
as: 'BlockedBy',
|
2019-07-31 09:57:32 -04:00
|
|
|
required: false,
|
|
|
|
where: {
|
|
|
|
accountId: {
|
|
|
|
[Op.in]: options.withAccountBlockerIds
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
serverInclude.include = [
|
|
|
|
{
|
|
|
|
attributes: [ 'id' ],
|
|
|
|
model: ServerBlocklistModel.unscoped(),
|
|
|
|
required: false,
|
|
|
|
where: {
|
|
|
|
accountId: {
|
|
|
|
[Op.in]: options.withAccountBlockerIds
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
query.include = queryInclude
|
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
return query
|
2019-02-26 04:55:40 -05:00
|
|
|
}
|
2019-04-23 03:50:57 -04:00
|
|
|
}))
|
2017-12-14 11:38:41 -05:00
|
|
|
@Table({
|
2018-07-23 14:13:30 -04:00
|
|
|
tableName: 'account',
|
|
|
|
indexes: [
|
|
|
|
{
|
|
|
|
fields: [ 'actorId' ],
|
|
|
|
unique: true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
fields: [ 'applicationId' ]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
fields: [ 'userId' ]
|
|
|
|
}
|
|
|
|
]
|
2017-12-14 11:38:41 -05:00
|
|
|
})
|
2021-05-12 08:09:04 -04:00
|
|
|
export class AccountModel extends Model<Partial<AttributesOnly<AccountModel>>> {
|
2017-12-12 11:53:50 -05:00
|
|
|
|
2017-12-14 11:38:41 -05:00
|
|
|
@AllowNull(false)
|
|
|
|
@Column
|
|
|
|
name: string
|
|
|
|
|
2018-02-15 08:46:26 -05:00
|
|
|
@AllowNull(true)
|
|
|
|
@Default(null)
|
2019-04-18 05:28:17 -04:00
|
|
|
@Is('AccountDescription', value => throwIfNotValid(value, isAccountDescriptionValid, 'description', true))
|
2019-05-13 08:37:30 -04:00
|
|
|
@Column(DataType.STRING(CONSTRAINTS_FIELDS.USERS.DESCRIPTION.max))
|
2018-02-15 08:46:26 -05:00
|
|
|
description: string
|
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
@CreatedAt
|
|
|
|
createdAt: Date
|
|
|
|
|
|
|
|
@UpdatedAt
|
|
|
|
updatedAt: Date
|
|
|
|
|
2017-12-14 05:18:49 -05:00
|
|
|
@ForeignKey(() => ActorModel)
|
2017-12-12 11:53:50 -05:00
|
|
|
@Column
|
2017-12-14 05:18:49 -05:00
|
|
|
actorId: number
|
2017-11-09 11:51:58 -05:00
|
|
|
|
2017-12-14 05:18:49 -05:00
|
|
|
@BelongsTo(() => ActorModel, {
|
2017-11-09 11:51:58 -05:00
|
|
|
foreignKey: {
|
2017-12-14 05:18:49 -05:00
|
|
|
allowNull: false
|
2017-11-09 11:51:58 -05:00
|
|
|
},
|
|
|
|
onDelete: 'cascade'
|
|
|
|
})
|
2017-12-14 05:18:49 -05:00
|
|
|
Actor: ActorModel
|
2017-11-09 11:51:58 -05:00
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
@ForeignKey(() => UserModel)
|
|
|
|
@Column
|
|
|
|
userId: number
|
|
|
|
|
|
|
|
@BelongsTo(() => UserModel, {
|
2017-11-09 11:51:58 -05:00
|
|
|
foreignKey: {
|
|
|
|
allowNull: true
|
|
|
|
},
|
|
|
|
onDelete: 'cascade'
|
|
|
|
})
|
2017-12-12 11:53:50 -05:00
|
|
|
User: UserModel
|
|
|
|
|
|
|
|
@ForeignKey(() => ApplicationModel)
|
|
|
|
@Column
|
|
|
|
applicationId: number
|
2017-11-09 11:51:58 -05:00
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
@BelongsTo(() => ApplicationModel, {
|
2017-11-09 11:51:58 -05:00
|
|
|
foreignKey: {
|
|
|
|
allowNull: true
|
|
|
|
},
|
|
|
|
onDelete: 'cascade'
|
|
|
|
})
|
2018-01-18 04:53:54 -05:00
|
|
|
Application: ApplicationModel
|
2017-11-09 11:51:58 -05:00
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
@HasMany(() => VideoChannelModel, {
|
2017-11-09 11:51:58 -05:00
|
|
|
foreignKey: {
|
|
|
|
allowNull: false
|
|
|
|
},
|
|
|
|
onDelete: 'cascade',
|
|
|
|
hooks: true
|
|
|
|
})
|
2017-12-12 11:53:50 -05:00
|
|
|
VideoChannels: VideoChannelModel[]
|
2017-11-09 11:51:58 -05:00
|
|
|
|
2019-02-26 04:55:40 -05:00
|
|
|
@HasMany(() => VideoPlaylistModel, {
|
|
|
|
foreignKey: {
|
|
|
|
allowNull: false
|
|
|
|
},
|
|
|
|
onDelete: 'cascade',
|
|
|
|
hooks: true
|
|
|
|
})
|
|
|
|
VideoPlaylists: VideoPlaylistModel[]
|
|
|
|
|
2018-01-18 04:53:54 -05:00
|
|
|
@HasMany(() => VideoCommentModel, {
|
|
|
|
foreignKey: {
|
2019-11-15 13:05:08 -05:00
|
|
|
allowNull: true
|
2018-01-18 04:53:54 -05:00
|
|
|
},
|
|
|
|
onDelete: 'cascade',
|
|
|
|
hooks: true
|
|
|
|
})
|
|
|
|
VideoComments: VideoCommentModel[]
|
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
@HasMany(() => AccountBlocklistModel, {
|
|
|
|
foreignKey: {
|
|
|
|
name: 'targetAccountId',
|
|
|
|
allowNull: false
|
|
|
|
},
|
2021-10-27 08:37:04 -04:00
|
|
|
as: 'BlockedBy',
|
2019-07-31 09:57:32 -04:00
|
|
|
onDelete: 'CASCADE'
|
|
|
|
})
|
2021-10-27 08:37:04 -04:00
|
|
|
BlockedBy: AccountBlocklistModel[]
|
2019-07-31 09:57:32 -04:00
|
|
|
|
2018-01-18 04:53:54 -05:00
|
|
|
@BeforeDestroy
|
|
|
|
static async sendDeleteIfOwned (instance: AccountModel, options) {
|
|
|
|
if (!instance.Actor) {
|
2020-01-08 09:11:38 -05:00
|
|
|
instance.Actor = await instance.$get('Actor', { transaction: options.transaction })
|
2018-01-18 04:53:54 -05:00
|
|
|
}
|
|
|
|
|
2019-08-02 03:46:48 -04:00
|
|
|
await ActorFollowModel.removeFollowsOf(instance.Actor.id, options.transaction)
|
2020-11-10 10:29:35 -05:00
|
|
|
|
2018-07-30 07:39:20 -04:00
|
|
|
if (instance.isOwned()) {
|
|
|
|
return sendDeleteActor(instance.Actor, options.transaction)
|
|
|
|
}
|
|
|
|
|
|
|
|
return undefined
|
2017-11-09 11:51:58 -05:00
|
|
|
}
|
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
static load (id: number, transaction?: Transaction): Promise<MAccountDefault> {
|
2019-02-21 08:28:06 -05:00
|
|
|
return AccountModel.findByPk(id, { transaction })
|
2017-12-12 11:53:50 -05:00
|
|
|
}
|
2017-12-04 04:34:40 -05:00
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
static loadByNameWithHost (nameWithHost: string): Promise<MAccountDefault> {
|
2019-02-21 08:06:10 -05:00
|
|
|
const [ accountName, host ] = nameWithHost.split('@')
|
|
|
|
|
2019-04-11 05:33:44 -04:00
|
|
|
if (!host || host === WEBSERVER.HOST) return AccountModel.loadLocalByName(accountName)
|
2019-02-21 08:06:10 -05:00
|
|
|
|
|
|
|
return AccountModel.loadByNameAndHost(accountName, host)
|
|
|
|
}
|
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
static loadLocalByName (name: string): Promise<MAccountDefault> {
|
2020-02-04 05:26:51 -05:00
|
|
|
const fun = () => {
|
|
|
|
const query = {
|
|
|
|
where: {
|
|
|
|
[Op.or]: [
|
|
|
|
{
|
|
|
|
userId: {
|
|
|
|
[Op.ne]: null
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
applicationId: {
|
|
|
|
[Op.ne]: null
|
|
|
|
}
|
2017-12-12 11:53:50 -05:00
|
|
|
}
|
2020-02-04 05:26:51 -05:00
|
|
|
]
|
|
|
|
},
|
|
|
|
include: [
|
2017-12-12 11:53:50 -05:00
|
|
|
{
|
2020-02-04 05:26:51 -05:00
|
|
|
model: ActorModel,
|
|
|
|
required: true,
|
|
|
|
where: {
|
|
|
|
preferredUsername: name
|
2017-12-12 11:53:50 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
2020-02-04 05:26:51 -05:00
|
|
|
}
|
2018-02-21 10:44:18 -05:00
|
|
|
|
2020-02-04 05:26:51 -05:00
|
|
|
return AccountModel.findOne(query)
|
|
|
|
}
|
2019-12-27 07:33:16 -05:00
|
|
|
|
2020-02-04 05:26:51 -05:00
|
|
|
return ModelCache.Instance.doCache({
|
|
|
|
cacheType: 'local-account-name',
|
|
|
|
key: name,
|
|
|
|
fun,
|
|
|
|
// The server actor never change, so we can easily cache it
|
|
|
|
whitelist: () => name === SERVER_ACTOR_NAME
|
|
|
|
})
|
2018-02-21 10:44:18 -05:00
|
|
|
}
|
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
static loadByNameAndHost (name: string, host: string): Promise<MAccountDefault> {
|
2018-02-21 10:44:18 -05:00
|
|
|
const query = {
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
model: ActorModel,
|
|
|
|
required: true,
|
|
|
|
where: {
|
|
|
|
preferredUsername: name
|
|
|
|
},
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
model: ServerModel,
|
|
|
|
required: true,
|
|
|
|
where: {
|
|
|
|
host
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
2017-12-12 11:53:50 -05:00
|
|
|
}
|
2017-11-13 11:39:41 -05:00
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
return AccountModel.findOne(query)
|
|
|
|
}
|
2017-11-13 11:39:41 -05:00
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
static loadByUrl (url: string, transaction?: Transaction): Promise<MAccountDefault> {
|
2017-12-12 11:53:50 -05:00
|
|
|
const query = {
|
2017-12-14 05:18:49 -05:00
|
|
|
include: [
|
|
|
|
{
|
|
|
|
model: ActorModel,
|
|
|
|
required: true,
|
|
|
|
where: {
|
|
|
|
url
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
2017-12-12 11:53:50 -05:00
|
|
|
transaction
|
|
|
|
}
|
2017-11-09 11:51:58 -05:00
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
return AccountModel.findOne(query)
|
|
|
|
}
|
2017-11-09 11:51:58 -05:00
|
|
|
|
2018-01-03 10:38:50 -05:00
|
|
|
static listForApi (start: number, count: number, sort: string) {
|
|
|
|
const query = {
|
|
|
|
offset: start,
|
|
|
|
limit: count,
|
2018-02-19 05:31:50 -05:00
|
|
|
order: getSort(sort)
|
2018-01-03 10:38:50 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return AccountModel.findAndCountAll(query)
|
2018-07-30 07:39:20 -04:00
|
|
|
.then(({ rows, count }) => {
|
|
|
|
return {
|
|
|
|
data: rows,
|
|
|
|
total: count
|
|
|
|
}
|
|
|
|
})
|
2018-01-03 10:38:50 -05:00
|
|
|
}
|
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
static loadAccountIdFromVideo (videoId: number): Promise<MAccount> {
|
2020-05-22 11:06:26 -04:00
|
|
|
const query = {
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
attributes: [ 'id', 'accountId' ],
|
|
|
|
model: VideoChannelModel.unscoped(),
|
|
|
|
required: true,
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
attributes: [ 'id', 'channelId' ],
|
|
|
|
model: VideoModel.unscoped(),
|
|
|
|
where: {
|
|
|
|
id: videoId
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
return AccountModel.findOne(query)
|
|
|
|
}
|
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
static listLocalsForSitemap (sort: string): Promise<MAccountActor[]> {
|
2018-12-05 11:27:24 -05:00
|
|
|
const query = {
|
|
|
|
attributes: [ ],
|
|
|
|
offset: 0,
|
|
|
|
order: getSort(sort),
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
attributes: [ 'preferredUsername', 'serverId' ],
|
|
|
|
model: ActorModel.unscoped(),
|
|
|
|
where: {
|
|
|
|
serverId: null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
return AccountModel
|
|
|
|
.unscoped()
|
|
|
|
.findAll(query)
|
|
|
|
}
|
|
|
|
|
2020-07-01 10:05:30 -04:00
|
|
|
getClientUrl () {
|
|
|
|
return WEBSERVER.URL + '/accounts/' + this.Actor.getIdentifier()
|
|
|
|
}
|
|
|
|
|
2019-08-20 13:05:31 -04:00
|
|
|
toFormattedJSON (this: MAccountFormattable): Account {
|
2017-12-14 05:18:49 -05:00
|
|
|
const actor = this.Actor.toFormattedJSON()
|
|
|
|
const account = {
|
2017-12-12 11:53:50 -05:00
|
|
|
id: this.id,
|
2018-04-16 18:49:04 -04:00
|
|
|
displayName: this.getDisplayName(),
|
2018-02-15 08:46:26 -05:00
|
|
|
description: this.description,
|
2021-05-07 11:14:39 -04:00
|
|
|
updatedAt: this.updatedAt,
|
2018-10-05 10:56:14 -04:00
|
|
|
userId: this.userId ? this.userId : undefined
|
2017-12-12 11:53:50 -05:00
|
|
|
}
|
2017-12-14 05:18:49 -05:00
|
|
|
|
|
|
|
return Object.assign(actor, account)
|
2017-12-12 11:53:50 -05:00
|
|
|
}
|
2017-11-09 11:51:58 -05:00
|
|
|
|
2019-08-20 13:05:31 -04:00
|
|
|
toFormattedSummaryJSON (this: MAccountSummaryFormattable): AccountSummary {
|
|
|
|
const actor = this.Actor.toFormattedSummaryJSON()
|
2019-02-26 04:55:40 -05:00
|
|
|
|
|
|
|
return {
|
|
|
|
id: this.id,
|
|
|
|
name: actor.name,
|
|
|
|
displayName: this.getDisplayName(),
|
|
|
|
url: actor.url,
|
|
|
|
host: actor.host,
|
|
|
|
avatar: actor.avatar
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-21 08:31:57 -04:00
|
|
|
toActivityPubObject (this: MAccountAP) {
|
2019-08-30 10:50:12 -04:00
|
|
|
const obj = this.Actor.toActivityPubObject(this.name)
|
2018-02-15 08:46:26 -05:00
|
|
|
|
|
|
|
return Object.assign(obj, {
|
|
|
|
summary: this.description
|
|
|
|
})
|
2017-11-09 11:51:58 -05:00
|
|
|
}
|
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
isOwned () {
|
2017-12-14 05:18:49 -05:00
|
|
|
return this.Actor.isOwned()
|
2017-12-12 11:53:50 -05:00
|
|
|
}
|
2018-04-16 18:49:04 -04:00
|
|
|
|
2019-01-14 05:30:15 -05:00
|
|
|
isOutdated () {
|
|
|
|
return this.Actor.isOutdated()
|
|
|
|
}
|
|
|
|
|
2018-04-16 18:49:04 -04:00
|
|
|
getDisplayName () {
|
|
|
|
return this.name
|
|
|
|
}
|
2019-07-31 09:57:32 -04:00
|
|
|
|
2020-12-08 04:53:41 -05:00
|
|
|
getLocalUrl (this: MAccountActor | MChannelActor) {
|
|
|
|
return WEBSERVER.URL + `/accounts/` + this.Actor.preferredUsername
|
|
|
|
}
|
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
isBlocked () {
|
2021-10-27 08:37:04 -04:00
|
|
|
return this.BlockedBy && this.BlockedBy.length !== 0
|
2019-07-31 09:57:32 -04:00
|
|
|
}
|
2017-11-24 07:41:10 -05:00
|
|
|
}
|