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

377 lines
8.4 KiB
TypeScript
Raw Normal View History

2017-12-14 16:38:41 +00:00
import { values } from 'lodash'
2017-12-14 10:18:49 +00:00
import { join } from 'path'
import * as Sequelize from 'sequelize'
import {
2017-12-14 16:38:41 +00:00
AllowNull,
BelongsTo,
Column,
CreatedAt,
DataType,
2017-12-18 10:53:04 +00:00
Default, DefaultScope,
2017-12-14 16:38:41 +00:00
ForeignKey,
HasMany,
HasOne,
Is,
IsUUID,
Model,
Scopes,
Table,
2017-12-14 10:18:49 +00:00
UpdatedAt
} 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'
import { activityPubContextify } from '../../helpers'
import {
isActivityPubUrlValid,
isActorFollowersCountValid,
2017-12-14 16:38:41 +00:00
isActorFollowingCountValid,
isActorNameValid,
2017-12-14 10:18:49 +00:00
isActorPrivateKeyValid,
isActorPublicKeyValid
} from '../../helpers/custom-validators/activitypub'
2017-12-14 16:38:41 +00:00
import { ACTIVITY_PUB_ACTOR_TYPES, AVATARS_DIR, CONFIG, CONSTRAINTS_FIELDS } from '../../initializers'
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'
}
2017-12-18 10:53:04 +00:00
@DefaultScope({
include: [
{
model: () => ServerModel,
required: false
}
]
})
2017-12-14 16:38:41 +00:00
@Scopes({
[ScopeNames.FULL]: {
include: [
{
model: () => AccountModel,
required: false
},
{
model: () => VideoChannelModel,
required: false
2017-12-18 10:53:04 +00:00
},
{
model: () => ServerModel,
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: [
{
fields: [ 'name', 'serverId' ],
unique: true
}
]
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-14 16:38:41 +00:00
@Is('ActorName', value => throwIfNotValid(value, isActorNameValid, 'actor name'))
2017-12-14 10:18:49 +00:00
@Column
name: string
@AllowNull(false)
@Is('ActorUrl', value => throwIfNotValid(value, isActivityPubUrlValid, 'url'))
@Column(DataType.STRING(CONSTRAINTS_FIELDS.ACTOR.URL.max))
url: string
@AllowNull(true)
@Is('ActorPublicKey', value => throwIfNotValid(value, isActorPublicKeyValid, 'public key'))
@Column(DataType.STRING(CONSTRAINTS_FIELDS.ACTOR.PUBLIC_KEY.max))
publicKey: string
@AllowNull(true)
@Is('ActorPublicKey', value => throwIfNotValid(value, isActorPrivateKeyValid, 'private key'))
@Column(DataType.STRING(CONSTRAINTS_FIELDS.ACTOR.PRIVATE_KEY.max))
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'))
@Column(DataType.STRING(CONSTRAINTS_FIELDS.ACTOR.URL.max))
inboxUrl: string
@AllowNull(false)
@Is('ActorOutboxUrl', value => throwIfNotValid(value, isActivityPubUrlValid, 'outbox url'))
@Column(DataType.STRING(CONSTRAINTS_FIELDS.ACTOR.URL.max))
outboxUrl: string
@AllowNull(false)
@Is('ActorSharedInboxUrl', value => throwIfNotValid(value, isActivityPubUrlValid, 'shared inbox url'))
@Column(DataType.STRING(CONSTRAINTS_FIELDS.ACTOR.URL.max))
sharedInboxUrl: string
@AllowNull(false)
@Is('ActorFollowersUrl', value => throwIfNotValid(value, isActivityPubUrlValid, 'followers url'))
@Column(DataType.STRING(CONSTRAINTS_FIELDS.ACTOR.URL.max))
followersUrl: string
@AllowNull(false)
@Is('ActorFollowingUrl', value => throwIfNotValid(value, isActivityPubUrlValid, 'following url'))
@Column(DataType.STRING(CONSTRAINTS_FIELDS.ACTOR.URL.max))
followingUrl: string
@CreatedAt
createdAt: Date
@UpdatedAt
updatedAt: Date
@ForeignKey(() => AvatarModel)
@Column
avatarId: number
@BelongsTo(() => AvatarModel, {
foreignKey: {
allowNull: true
},
onDelete: 'cascade'
})
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'
})
2017-12-14 16:38:41 +00:00
AccountFollowing: 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: 'followers',
onDelete: 'cascade'
})
2017-12-14 16:38:41 +00:00
AccountFollowers: 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'
})
Account: AccountModel
@HasOne(() => VideoChannelModel, {
foreignKey: {
allowNull: true
},
onDelete: 'cascade'
})
VideoChannel: VideoChannelModel
static load (id: number) {
return ActorModel.scope(ScopeNames.FULL).findById(id)
}
static loadByUUID (uuid: string) {
const query = {
where: {
uuid
}
}
return ActorModel.scope(ScopeNames.FULL).findOne(query)
}
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)
}
static loadLocalByName (name: string) {
const query = {
where: {
name,
serverId: null
}
}
return ActorModel.scope(ScopeNames.FULL).findOne(query)
}
static loadByNameAndHost (name: string, host: string) {
const query = {
where: {
name
},
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
}
return ActorModel.scope(ScopeNames.FULL).findOne(query)
2017-12-14 10:18:49 +00:00
}
toFormattedJSON () {
let avatar: Avatar = null
if (this.Avatar) {
avatar = {
path: join(AVATARS_DIR.ACCOUNT, this.Avatar.filename),
createdAt: this.Avatar.createdAt,
updatedAt: this.Avatar.updatedAt
}
}
let host = CONFIG.WEBSERVER.HOST
let score: number
if (this.Server) {
host = this.Server.host
score = this.Server.score
}
return {
id: this.id,
2017-12-14 16:38:41 +00:00
uuid: this.uuid,
2017-12-14 10:18:49 +00:00
host,
score,
followingCount: this.followingCount,
followersCount: this.followersCount,
avatar
}
}
2017-12-14 16:38:41 +00:00
toActivityPubObject (preferredUsername: 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
}
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-14 16:38:41 +00:00
preferredUsername,
2017-12-14 10:18:49 +00:00
url: this.url,
2017-12-14 16:38:41 +00:00
name: this.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
}
}
return activityPubContextify(json)
}
getFollowerSharedInboxUrls (t: Sequelize.Transaction) {
const query = {
attributes: [ 'sharedInboxUrl' ],
include: [
{
2017-12-14 16:38:41 +00:00
model: ActorFollowModel,
2017-12-14 10:18:49 +00:00
required: true,
as: 'followers',
where: {
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
}
}