1
0
Fork 0
peertube/server/models/activitypub/actor.ts

506 lines
11 KiB
TypeScript
Raw Normal View History

2017-12-14 16:38:41 +00:00
import { values } from 'lodash'
2018-01-03 09:12:36 +00:00
import { extname } from 'path'
2017-12-14 10:18:49 +00:00
import * as Sequelize from 'sequelize'
import {
AllowNull,
BelongsTo,
Column,
CreatedAt,
DataType,
Default,
DefaultScope,
ForeignKey,
HasMany,
HasOne,
Is,
IsUUID,
Model,
Scopes,
Table,
UpdatedAt
2017-12-14 10:18:49 +00:00
} from 'sequelize-typescript'
2017-12-14 16:38:41 +00:00
import { ActivityPubActorType } from '../../../shared/models/activitypub'
2017-12-14 10:18:49 +00:00
import { Avatar } from '../../../shared/models/avatars/avatar.model'
2017-12-28 10:16:08 +00:00
import { activityPubContextify } from '../../helpers/activitypub'
2017-12-14 10:18:49 +00:00
import {
isActorFollowersCountValid,
isActorFollowingCountValid,
isActorPreferredUsernameValid,
isActorPrivateKeyValid,
2017-12-28 10:16:08 +00:00
isActorPublicKeyValid
} from '../../helpers/custom-validators/activitypub/actor'
import { isActivityPubUrlValid } from '../../helpers/custom-validators/activitypub/misc'
2018-01-04 13:04:02 +00:00
import { ACTIVITY_PUB, ACTIVITY_PUB_ACTOR_TYPES, CONFIG, CONSTRAINTS_FIELDS } from '../../initializers'
2017-12-14 16:38:41 +00:00
import { AccountModel } from '../account/account'
2017-12-14 10:18:49 +00:00
import { AvatarModel } from '../avatar/avatar'
import { ServerModel } from '../server/server'
import { throwIfNotValid } from '../utils'
2017-12-14 16:38:41 +00:00
import { VideoChannelModel } from '../video/video-channel'
import { ActorFollowModel } from './actor-follow'
2017-12-14 10:18:49 +00:00
2017-12-14 16:38:41 +00:00
enum ScopeNames {
FULL = 'FULL'
}
2018-08-23 15:58:39 +00:00
export const unusedActorAttributesForAPI = [
'publicKey',
'privateKey',
'inboxUrl',
'outboxUrl',
'sharedInboxUrl',
'followersUrl',
'followingUrl',
2018-08-24 09:04:02 +00:00
'url',
'createdAt',
'updatedAt'
2018-08-23 15:58:39 +00:00
]
2017-12-18 10:53:04 +00:00
@DefaultScope({
include: [
{
model: () => ServerModel,
required: false
2017-12-29 18:10:13 +00:00
},
{
model: () => AvatarModel,
required: false
2017-12-18 10:53:04 +00:00
}
]
})
2017-12-14 16:38:41 +00:00
@Scopes({
[ScopeNames.FULL]: {
include: [
{
2018-01-11 10:40:18 +00:00
model: () => AccountModel.unscoped(),
2017-12-14 16:38:41 +00:00
required: false
},
{
2018-01-11 10:40:18 +00:00
model: () => VideoChannelModel.unscoped(),
2018-09-11 14:27:07 +00:00
required: false,
include: [
{
model: () => AccountModel,
required: true
}
]
2017-12-18 10:53:04 +00:00
},
{
model: () => ServerModel,
required: false
2017-12-29 18:10:13 +00:00
},
{
model: () => AvatarModel,
required: false
2017-12-14 16:38:41 +00:00
}
]
}
})
2017-12-14 10:18:49 +00:00
@Table({
2017-12-14 16:38:41 +00:00
tableName: 'actor',
indexes: [
2018-01-10 16:18:12 +00:00
{
2018-07-23 18:13:30 +00:00
fields: [ 'url' ],
unique: true
2018-01-10 16:18:12 +00:00
},
2017-12-14 16:38:41 +00:00
{
2017-12-19 09:34:56 +00:00
fields: [ 'preferredUsername', 'serverId' ],
2017-12-14 16:38:41 +00:00
unique: true
},
{
fields: [ 'inboxUrl', 'sharedInboxUrl' ]
2018-07-19 14:17:54 +00:00
},
2018-07-31 16:04:45 +00:00
{
fields: [ 'sharedInboxUrl' ]
},
2018-07-19 14:17:54 +00:00
{
fields: [ 'serverId' ]
},
{
fields: [ 'avatarId' ]
2018-07-23 18:13:30 +00:00
},
{
fields: [ 'uuid' ],
unique: true
},
{
fields: [ 'followersUrl' ]
2017-12-14 16:38:41 +00:00
}
]
2017-12-14 10:18:49 +00:00
})
export class ActorModel extends Model<ActorModel> {
2017-12-14 16:38:41 +00:00
@AllowNull(false)
@Column(DataType.ENUM(values(ACTIVITY_PUB_ACTOR_TYPES)))
type: ActivityPubActorType
2017-12-14 10:18:49 +00:00
@AllowNull(false)
@Default(DataType.UUIDV4)
@IsUUID(4)
@Column(DataType.UUID)
uuid: string
@AllowNull(false)
2017-12-19 09:34:56 +00:00
@Is('ActorPreferredUsername', value => throwIfNotValid(value, isActorPreferredUsernameValid, 'actor preferred username'))
2017-12-14 10:18:49 +00:00
@Column
2017-12-19 09:34:56 +00:00
preferredUsername: string
2017-12-14 10:18:49 +00:00
@AllowNull(false)
@Is('ActorUrl', value => throwIfNotValid(value, isActivityPubUrlValid, 'url'))
2018-01-03 10:10:40 +00:00
@Column(DataType.STRING(CONSTRAINTS_FIELDS.ACTORS.URL.max))
2017-12-14 10:18:49 +00:00
url: string
@AllowNull(true)
@Is('ActorPublicKey', value => throwIfNotValid(value, isActorPublicKeyValid, 'public key'))
2018-01-03 10:10:40 +00:00
@Column(DataType.STRING(CONSTRAINTS_FIELDS.ACTORS.PUBLIC_KEY.max))
2017-12-14 10:18:49 +00:00
publicKey: string
@AllowNull(true)
@Is('ActorPublicKey', value => throwIfNotValid(value, isActorPrivateKeyValid, 'private key'))
2018-01-03 10:10:40 +00:00
@Column(DataType.STRING(CONSTRAINTS_FIELDS.ACTORS.PRIVATE_KEY.max))
2017-12-14 10:18:49 +00: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 10:10:40 +00:00
@Column(DataType.STRING(CONSTRAINTS_FIELDS.ACTORS.URL.max))
2017-12-14 10:18:49 +00:00
inboxUrl: string
@AllowNull(false)
@Is('ActorOutboxUrl', value => throwIfNotValid(value, isActivityPubUrlValid, 'outbox url'))
2018-01-03 10:10:40 +00:00
@Column(DataType.STRING(CONSTRAINTS_FIELDS.ACTORS.URL.max))
2017-12-14 10:18:49 +00:00
outboxUrl: string
@AllowNull(false)
@Is('ActorSharedInboxUrl', value => throwIfNotValid(value, isActivityPubUrlValid, 'shared inbox url'))
2018-01-03 10:10:40 +00:00
@Column(DataType.STRING(CONSTRAINTS_FIELDS.ACTORS.URL.max))
2017-12-14 10:18:49 +00:00
sharedInboxUrl: string
@AllowNull(false)
@Is('ActorFollowersUrl', value => throwIfNotValid(value, isActivityPubUrlValid, 'followers url'))
2018-01-03 10:10:40 +00:00
@Column(DataType.STRING(CONSTRAINTS_FIELDS.ACTORS.URL.max))
2017-12-14 10:18:49 +00:00
followersUrl: string
@AllowNull(false)
@Is('ActorFollowingUrl', value => throwIfNotValid(value, isActivityPubUrlValid, 'following url'))
2018-01-03 10:10:40 +00:00
@Column(DataType.STRING(CONSTRAINTS_FIELDS.ACTORS.URL.max))
2017-12-14 10:18:49 +00:00
followingUrl: string
@CreatedAt
createdAt: Date
@UpdatedAt
updatedAt: Date
@ForeignKey(() => AvatarModel)
@Column
avatarId: number
@BelongsTo(() => AvatarModel, {
foreignKey: {
allowNull: true
},
onDelete: 'set null',
hooks: true
2017-12-14 10:18:49 +00:00
})
Avatar: AvatarModel
2017-12-14 16:38:41 +00:00
@HasMany(() => ActorFollowModel, {
2017-12-14 10:18:49 +00:00
foreignKey: {
2017-12-14 16:38:41 +00:00
name: 'actorId',
2017-12-14 10:18:49 +00:00
allowNull: false
},
onDelete: 'cascade'
})
ActorFollowing: ActorFollowModel[]
2017-12-14 10:18:49 +00:00
2017-12-14 16:38:41 +00:00
@HasMany(() => ActorFollowModel, {
2017-12-14 10:18:49 +00:00
foreignKey: {
2017-12-14 16:38:41 +00:00
name: 'targetActorId',
2017-12-14 10:18:49 +00:00
allowNull: false
},
as: 'ActorFollowers',
2017-12-14 10:18:49 +00:00
onDelete: 'cascade'
})
ActorFollowers: ActorFollowModel[]
2017-12-14 10:18:49 +00:00
@ForeignKey(() => ServerModel)
@Column
serverId: number
@BelongsTo(() => ServerModel, {
foreignKey: {
allowNull: true
},
onDelete: 'cascade'
})
Server: ServerModel
2017-12-14 16:38:41 +00:00
@HasOne(() => AccountModel, {
foreignKey: {
allowNull: true
},
onDelete: 'cascade',
hooks: true
2017-12-14 16:38:41 +00:00
})
Account: AccountModel
@HasOne(() => VideoChannelModel, {
foreignKey: {
allowNull: true
},
onDelete: 'cascade',
hooks: true
2017-12-14 16:38:41 +00:00
})
VideoChannel: VideoChannelModel
static load (id: number) {
return ActorModel.unscoped().findById(id)
2017-12-14 16:38:41 +00:00
}
2018-09-19 09:41:21 +00:00
static isActorUrlExist (url: string) {
const query = {
raw: true,
where: {
url
}
}
return ActorModel.unscoped().findOne(query)
.then(a => !!a)
}
2017-12-14 10:18:49 +00:00
static listByFollowersUrls (followersUrls: string[], transaction?: Sequelize.Transaction) {
const query = {
where: {
followersUrl: {
[ Sequelize.Op.in ]: followersUrls
}
},
transaction
}
2017-12-14 16:38:41 +00:00
return ActorModel.scope(ScopeNames.FULL).findAll(query)
}
2018-08-17 13:45:42 +00:00
static loadLocalByName (preferredUsername: string, transaction?: Sequelize.Transaction) {
2017-12-14 16:38:41 +00:00
const query = {
where: {
2017-12-19 09:34:56 +00:00
preferredUsername,
2017-12-14 16:38:41 +00:00
serverId: null
2018-08-17 13:45:42 +00:00
},
transaction
2017-12-14 16:38:41 +00:00
}
return ActorModel.scope(ScopeNames.FULL).findOne(query)
}
2017-12-19 09:34:56 +00:00
static loadByNameAndHost (preferredUsername: string, host: string) {
2017-12-14 16:38:41 +00:00
const query = {
where: {
2017-12-19 09:34:56 +00:00
preferredUsername
2017-12-14 16:38:41 +00:00
},
include: [
{
model: ServerModel,
required: true,
where: {
host
}
}
]
}
return ActorModel.scope(ScopeNames.FULL).findOne(query)
}
static loadByUrl (url: string, transaction?: Sequelize.Transaction) {
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)
}
static loadByUrlAndPopulateAccountAndChannel (url: string, transaction?: Sequelize.Transaction) {
2017-12-14 16:38:41 +00:00
const query = {
where: {
url
},
transaction
}
return ActorModel.scope(ScopeNames.FULL).findOne(query)
2017-12-14 10:18:49 +00:00
}
2018-01-12 10:47:45 +00:00
static incrementFollows (id: number, column: 'followersCount' | 'followingCount', by: number) {
// FIXME: typings
return (ActorModel as any).increment(column, {
by,
where: {
id
}
})
}
2017-12-14 10:18:49 +00:00
toFormattedJSON () {
let avatar: Avatar = null
if (this.Avatar) {
2017-12-29 18:10:13 +00:00
avatar = this.Avatar.toFormattedJSON()
2017-12-14 10:18:49 +00:00
}
return {
id: this.id,
2018-01-04 10:19:16 +00:00
url: this.url,
2017-12-14 16:38:41 +00:00
uuid: this.uuid,
name: this.preferredUsername,
2017-12-19 09:34:56 +00:00
host: this.getHost(),
2018-09-11 14:27:07 +00:00
hostRedundancyAllowed: this.getRedundancyAllowed(),
2017-12-14 10:18:49 +00:00
followingCount: this.followingCount,
followersCount: this.followersCount,
avatar,
createdAt: this.createdAt,
updatedAt: this.updatedAt
2017-12-14 10:18:49 +00:00
}
}
2017-12-19 09:34:56 +00:00
toActivityPubObject (name: string, type: 'Account' | 'Application' | 'VideoChannel') {
2017-12-14 10:18:49 +00:00
let activityPubType
if (type === 'Account') {
2017-12-14 16:38:41 +00:00
activityPubType = 'Person' as 'Person'
} else if (type === 'Application') {
activityPubType = 'Application' as 'Application'
2017-12-14 10:18:49 +00:00
} else { // VideoChannel
2017-12-14 16:38:41 +00:00
activityPubType = 'Group' as 'Group'
2017-12-14 10:18:49 +00:00
}
2017-12-29 18:10:13 +00:00
let icon = undefined
if (this.avatarId) {
const extension = extname(this.Avatar.filename)
icon = {
type: 'Image',
mediaType: extension === '.png' ? 'image/png' : 'image/jpeg',
url: this.getAvatarUrl()
}
}
2017-12-14 10:18:49 +00:00
const json = {
2017-12-14 16:38:41 +00:00
type: activityPubType,
2017-12-14 10:18:49 +00:00
id: this.url,
following: this.getFollowingUrl(),
followers: this.getFollowersUrl(),
inbox: this.inboxUrl,
outbox: this.outboxUrl,
2017-12-19 09:34:56 +00:00
preferredUsername: this.preferredUsername,
2017-12-14 10:18:49 +00:00
url: this.url,
2017-12-19 09:34:56 +00:00
name,
2017-12-14 10:18:49 +00:00
endpoints: {
sharedInbox: this.sharedInboxUrl
},
2017-12-14 16:38:41 +00:00
uuid: this.uuid,
2017-12-14 10:18:49 +00:00
publicKey: {
id: this.getPublicKeyUrl(),
owner: this.url,
publicKeyPem: this.publicKey
2017-12-29 18:10:13 +00:00
},
icon
2017-12-14 10:18:49 +00:00
}
return activityPubContextify(json)
}
getFollowerSharedInboxUrls (t: Sequelize.Transaction) {
const query = {
attributes: [ 'sharedInboxUrl' ],
include: [
{
attribute: [],
model: ActorFollowModel.unscoped(),
2017-12-14 10:18:49 +00:00
required: true,
2018-01-26 10:44:08 +00:00
as: 'ActorFollowing',
2017-12-14 10:18:49 +00:00
where: {
state: 'accepted',
2017-12-14 16:38:41 +00:00
targetActorId: this.id
2017-12-14 10:18:49 +00:00
}
}
],
transaction: t
}
return ActorModel.findAll(query)
.then(accounts => accounts.map(a => a.sharedInboxUrl))
}
getFollowingUrl () {
return this.url + '/following'
}
getFollowersUrl () {
return this.url + '/followers'
}
getPublicKeyUrl () {
return this.url + '#main-key'
}
isOwned () {
return this.serverId === null
}
2017-12-19 09:34:56 +00:00
getWebfingerUrl () {
return 'acct:' + this.preferredUsername + '@' + this.getHost()
}
getIdentifier () {
return this.Server ? `${this.preferredUsername}@${this.Server.host}` : this.preferredUsername
}
2017-12-19 09:34:56 +00:00
getHost () {
return this.Server ? this.Server.host : CONFIG.WEBSERVER.HOST
}
2017-12-29 18:10:13 +00:00
2018-09-11 14:27:07 +00:00
getRedundancyAllowed () {
return this.Server ? this.Server.redundancyAllowed : false
}
2017-12-29 18:10:13 +00:00
getAvatarUrl () {
if (!this.avatarId) return undefined
2018-01-03 15:38:50 +00:00
return CONFIG.WEBSERVER.URL + this.Avatar.getWebserverPath()
2017-12-29 18:10:13 +00:00
}
2018-01-04 13:04:02 +00:00
isOutdated () {
if (this.isOwned()) return false
const now = Date.now()
const createdAtTime = this.createdAt.getTime()
const updatedAtTime = this.updatedAt.getTime()
return (now - createdAtTime) > ACTIVITY_PUB.ACTOR_REFRESH_INTERVAL &&
(now - updatedAtTime) > ACTIVITY_PUB.ACTOR_REFRESH_INTERVAL
}
2017-12-14 10:18:49 +00:00
}