197 lines
3.8 KiB
TypeScript
197 lines
3.8 KiB
TypeScript
import * as Sequelize from 'sequelize'
|
|
import {
|
|
AfterDestroy, AllowNull, BelongsTo, Column, CreatedAt, DefaultScope, ForeignKey, HasMany, Model, Table,
|
|
UpdatedAt
|
|
} from 'sequelize-typescript'
|
|
import { Account } from '../../../shared/models/actors'
|
|
import { sendDeleteActor } from '../../lib/activitypub/send'
|
|
import { ActorModel } from '../activitypub/actor'
|
|
import { ApplicationModel } from '../application/application'
|
|
import { AvatarModel } from '../avatar/avatar'
|
|
import { ServerModel } from '../server/server'
|
|
import { getSort } from '../utils'
|
|
import { VideoChannelModel } from '../video/video-channel'
|
|
import { UserModel } from './user'
|
|
|
|
@DefaultScope({
|
|
include: [
|
|
{
|
|
model: () => ActorModel,
|
|
required: true,
|
|
include: [
|
|
{
|
|
model: () => ServerModel,
|
|
required: false
|
|
},
|
|
{
|
|
model: () => AvatarModel,
|
|
required: false
|
|
}
|
|
]
|
|
}
|
|
]
|
|
})
|
|
@Table({
|
|
tableName: 'account'
|
|
})
|
|
export class AccountModel extends Model<AccountModel> {
|
|
|
|
@AllowNull(false)
|
|
@Column
|
|
name: string
|
|
|
|
@CreatedAt
|
|
createdAt: Date
|
|
|
|
@UpdatedAt
|
|
updatedAt: Date
|
|
|
|
@ForeignKey(() => ActorModel)
|
|
@Column
|
|
actorId: number
|
|
|
|
@BelongsTo(() => ActorModel, {
|
|
foreignKey: {
|
|
allowNull: false
|
|
},
|
|
onDelete: 'cascade'
|
|
})
|
|
Actor: ActorModel
|
|
|
|
@ForeignKey(() => UserModel)
|
|
@Column
|
|
userId: number
|
|
|
|
@BelongsTo(() => UserModel, {
|
|
foreignKey: {
|
|
allowNull: true
|
|
},
|
|
onDelete: 'cascade'
|
|
})
|
|
User: UserModel
|
|
|
|
@ForeignKey(() => ApplicationModel)
|
|
@Column
|
|
applicationId: number
|
|
|
|
@BelongsTo(() => ApplicationModel, {
|
|
foreignKey: {
|
|
allowNull: true
|
|
},
|
|
onDelete: 'cascade'
|
|
})
|
|
Account: ApplicationModel
|
|
|
|
@HasMany(() => VideoChannelModel, {
|
|
foreignKey: {
|
|
allowNull: false
|
|
},
|
|
onDelete: 'cascade',
|
|
hooks: true
|
|
})
|
|
VideoChannels: VideoChannelModel[]
|
|
|
|
@AfterDestroy
|
|
static sendDeleteIfOwned (instance: AccountModel) {
|
|
if (instance.isOwned()) {
|
|
return sendDeleteActor(instance.Actor, undefined)
|
|
}
|
|
|
|
return undefined
|
|
}
|
|
|
|
static load (id: number) {
|
|
return AccountModel.findById(id)
|
|
}
|
|
|
|
static loadByUUID (uuid: string) {
|
|
const query = {
|
|
include: [
|
|
{
|
|
model: ActorModel,
|
|
required: true,
|
|
where: {
|
|
uuid
|
|
}
|
|
}
|
|
]
|
|
}
|
|
|
|
return AccountModel.findOne(query)
|
|
}
|
|
|
|
static loadLocalByName (name: string) {
|
|
const query = {
|
|
where: {
|
|
name,
|
|
[ Sequelize.Op.or ]: [
|
|
{
|
|
userId: {
|
|
[ Sequelize.Op.ne ]: null
|
|
}
|
|
},
|
|
{
|
|
applicationId: {
|
|
[ Sequelize.Op.ne ]: null
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|
|
|
|
return AccountModel.findOne(query)
|
|
}
|
|
|
|
static loadByUrl (url: string, transaction?: Sequelize.Transaction) {
|
|
const query = {
|
|
include: [
|
|
{
|
|
model: ActorModel,
|
|
required: true,
|
|
where: {
|
|
url
|
|
}
|
|
}
|
|
],
|
|
transaction
|
|
}
|
|
|
|
return AccountModel.findOne(query)
|
|
}
|
|
|
|
static listForApi (start: number, count: number, sort: string) {
|
|
const query = {
|
|
offset: start,
|
|
limit: count,
|
|
order: [ getSort(sort) ]
|
|
}
|
|
|
|
return AccountModel.findAndCountAll(query)
|
|
.then(({ rows, count }) => {
|
|
return {
|
|
data: rows,
|
|
total: count
|
|
}
|
|
})
|
|
}
|
|
|
|
toFormattedJSON (): Account {
|
|
const actor = this.Actor.toFormattedJSON()
|
|
const account = {
|
|
id: this.id,
|
|
displayName: this.name,
|
|
createdAt: this.createdAt,
|
|
updatedAt: this.updatedAt
|
|
}
|
|
|
|
return Object.assign(actor, account)
|
|
}
|
|
|
|
toActivityPubObject () {
|
|
return this.Actor.toActivityPubObject(this.name, 'Account')
|
|
}
|
|
|
|
isOwned () {
|
|
return this.Actor.isOwned()
|
|
}
|
|
}
|