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