447 lines
11 KiB
TypeScript
447 lines
11 KiB
TypeScript
import * as Sequelize from 'sequelize'
|
|
|
|
import {
|
|
isUserUsernameValid,
|
|
isAccountPublicKeyValid,
|
|
isAccountUrlValid,
|
|
isAccountPrivateKeyValid,
|
|
isAccountFollowersCountValid,
|
|
isAccountFollowingCountValid,
|
|
isAccountInboxValid,
|
|
isAccountOutboxValid,
|
|
isAccountSharedInboxValid,
|
|
isAccountFollowersValid,
|
|
isAccountFollowingValid,
|
|
activityPubContextify
|
|
} from '../../helpers'
|
|
|
|
import { addMethodsToModel } from '../utils'
|
|
import {
|
|
AccountInstance,
|
|
AccountAttributes,
|
|
|
|
AccountMethods
|
|
} from './account-interface'
|
|
|
|
let Account: Sequelize.Model<AccountInstance, AccountAttributes>
|
|
let loadAccountByPodAndUUID: AccountMethods.LoadAccountByPodAndUUID
|
|
let load: AccountMethods.Load
|
|
let loadByUUID: AccountMethods.LoadByUUID
|
|
let loadByUrl: AccountMethods.LoadByUrl
|
|
let loadLocalAccountByName: AccountMethods.LoadLocalAccountByName
|
|
let listOwned: AccountMethods.ListOwned
|
|
let listFollowerUrlsForApi: AccountMethods.ListFollowerUrlsForApi
|
|
let listFollowingUrlsForApi: AccountMethods.ListFollowingUrlsForApi
|
|
let isOwned: AccountMethods.IsOwned
|
|
let toActivityPubObject: AccountMethods.ToActivityPubObject
|
|
let getFollowerSharedInboxUrls: AccountMethods.GetFollowerSharedInboxUrls
|
|
let getFollowingUrl: AccountMethods.GetFollowingUrl
|
|
let getFollowersUrl: AccountMethods.GetFollowersUrl
|
|
let getPublicKeyUrl: AccountMethods.GetPublicKeyUrl
|
|
|
|
export default function defineAccount (sequelize: Sequelize.Sequelize, DataTypes: Sequelize.DataTypes) {
|
|
Account = sequelize.define<AccountInstance, AccountAttributes>('Account',
|
|
{
|
|
uuid: {
|
|
type: DataTypes.UUID,
|
|
defaultValue: DataTypes.UUIDV4,
|
|
allowNull: false,
|
|
validate: {
|
|
isUUID: 4
|
|
}
|
|
},
|
|
name: {
|
|
type: DataTypes.STRING,
|
|
allowNull: false,
|
|
validate: {
|
|
usernameValid: value => {
|
|
const res = isUserUsernameValid(value)
|
|
if (res === false) throw new Error('Username is not valid.')
|
|
}
|
|
}
|
|
},
|
|
url: {
|
|
type: DataTypes.STRING,
|
|
allowNull: false,
|
|
validate: {
|
|
urlValid: value => {
|
|
const res = isAccountUrlValid(value)
|
|
if (res === false) throw new Error('URL is not valid.')
|
|
}
|
|
}
|
|
},
|
|
publicKey: {
|
|
type: DataTypes.STRING,
|
|
allowNull: false,
|
|
validate: {
|
|
publicKeyValid: value => {
|
|
const res = isAccountPublicKeyValid(value)
|
|
if (res === false) throw new Error('Public key is not valid.')
|
|
}
|
|
}
|
|
},
|
|
privateKey: {
|
|
type: DataTypes.STRING,
|
|
allowNull: false,
|
|
validate: {
|
|
privateKeyValid: value => {
|
|
const res = isAccountPrivateKeyValid(value)
|
|
if (res === false) throw new Error('Private key is not valid.')
|
|
}
|
|
}
|
|
},
|
|
followersCount: {
|
|
type: DataTypes.INTEGER,
|
|
allowNull: false,
|
|
validate: {
|
|
followersCountValid: value => {
|
|
const res = isAccountFollowersCountValid(value)
|
|
if (res === false) throw new Error('Followers count is not valid.')
|
|
}
|
|
}
|
|
},
|
|
followingCount: {
|
|
type: DataTypes.INTEGER,
|
|
allowNull: false,
|
|
validate: {
|
|
followersCountValid: value => {
|
|
const res = isAccountFollowingCountValid(value)
|
|
if (res === false) throw new Error('Following count is not valid.')
|
|
}
|
|
}
|
|
},
|
|
inboxUrl: {
|
|
type: DataTypes.STRING,
|
|
allowNull: false,
|
|
validate: {
|
|
inboxUrlValid: value => {
|
|
const res = isAccountInboxValid(value)
|
|
if (res === false) throw new Error('Inbox URL is not valid.')
|
|
}
|
|
}
|
|
},
|
|
outboxUrl: {
|
|
type: DataTypes.STRING,
|
|
allowNull: false,
|
|
validate: {
|
|
outboxUrlValid: value => {
|
|
const res = isAccountOutboxValid(value)
|
|
if (res === false) throw new Error('Outbox URL is not valid.')
|
|
}
|
|
}
|
|
},
|
|
sharedInboxUrl: {
|
|
type: DataTypes.STRING,
|
|
allowNull: false,
|
|
validate: {
|
|
sharedInboxUrlValid: value => {
|
|
const res = isAccountSharedInboxValid(value)
|
|
if (res === false) throw new Error('Shared inbox URL is not valid.')
|
|
}
|
|
}
|
|
},
|
|
followersUrl: {
|
|
type: DataTypes.STRING,
|
|
allowNull: false,
|
|
validate: {
|
|
followersUrlValid: value => {
|
|
const res = isAccountFollowersValid(value)
|
|
if (res === false) throw new Error('Followers URL is not valid.')
|
|
}
|
|
}
|
|
},
|
|
followingUrl: {
|
|
type: DataTypes.STRING,
|
|
allowNull: false,
|
|
validate: {
|
|
followingUrlValid: value => {
|
|
const res = isAccountFollowingValid(value)
|
|
if (res === false) throw new Error('Following URL is not valid.')
|
|
}
|
|
}
|
|
}
|
|
},
|
|
{
|
|
indexes: [
|
|
{
|
|
fields: [ 'name' ]
|
|
},
|
|
{
|
|
fields: [ 'podId' ]
|
|
},
|
|
{
|
|
fields: [ 'userId' ],
|
|
unique: true
|
|
},
|
|
{
|
|
fields: [ 'applicationId' ],
|
|
unique: true
|
|
},
|
|
{
|
|
fields: [ 'name', 'podId' ],
|
|
unique: true
|
|
}
|
|
],
|
|
hooks: { afterDestroy }
|
|
}
|
|
)
|
|
|
|
const classMethods = [
|
|
associate,
|
|
loadAccountByPodAndUUID,
|
|
load,
|
|
loadByUUID,
|
|
loadLocalAccountByName,
|
|
listOwned,
|
|
listFollowerUrlsForApi,
|
|
listFollowingUrlsForApi
|
|
]
|
|
const instanceMethods = [
|
|
isOwned,
|
|
toActivityPubObject,
|
|
getFollowerSharedInboxUrls,
|
|
getFollowingUrl,
|
|
getFollowersUrl,
|
|
getPublicKeyUrl
|
|
]
|
|
addMethodsToModel(Account, classMethods, instanceMethods)
|
|
|
|
return Account
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
function associate (models) {
|
|
Account.belongsTo(models.Pod, {
|
|
foreignKey: {
|
|
name: 'podId',
|
|
allowNull: true
|
|
},
|
|
onDelete: 'cascade'
|
|
})
|
|
|
|
Account.belongsTo(models.User, {
|
|
foreignKey: {
|
|
name: 'userId',
|
|
allowNull: true
|
|
},
|
|
onDelete: 'cascade'
|
|
})
|
|
|
|
Account.belongsTo(models.Application, {
|
|
foreignKey: {
|
|
name: 'userId',
|
|
allowNull: true
|
|
},
|
|
onDelete: 'cascade'
|
|
})
|
|
|
|
Account.hasMany(models.VideoChannel, {
|
|
foreignKey: {
|
|
name: 'accountId',
|
|
allowNull: false
|
|
},
|
|
onDelete: 'cascade',
|
|
hooks: true
|
|
})
|
|
|
|
Account.hasMany(models.AccountFollower, {
|
|
foreignKey: {
|
|
name: 'accountId',
|
|
allowNull: false
|
|
},
|
|
onDelete: 'cascade'
|
|
})
|
|
|
|
Account.hasMany(models.AccountFollower, {
|
|
foreignKey: {
|
|
name: 'targetAccountId',
|
|
allowNull: false
|
|
},
|
|
onDelete: 'cascade'
|
|
})
|
|
}
|
|
|
|
function afterDestroy (account: AccountInstance) {
|
|
if (account.isOwned()) {
|
|
const removeVideoAccountToFriendsParams = {
|
|
uuid: account.uuid
|
|
}
|
|
|
|
// FIXME: remove account in followers
|
|
// return removeVideoAccountToFriends(removeVideoAccountToFriendsParams)
|
|
}
|
|
|
|
return undefined
|
|
}
|
|
|
|
toActivityPubObject = function (this: AccountInstance) {
|
|
const type = this.podId ? 'Application' as 'Application' : 'Person' as 'Person'
|
|
|
|
const json = {
|
|
type,
|
|
id: this.url,
|
|
following: this.getFollowingUrl(),
|
|
followers: this.getFollowersUrl(),
|
|
inbox: this.inboxUrl,
|
|
outbox: this.outboxUrl,
|
|
preferredUsername: this.name,
|
|
url: this.url,
|
|
name: this.name,
|
|
endpoints: {
|
|
sharedInbox: this.sharedInboxUrl
|
|
},
|
|
uuid: this.uuid,
|
|
publicKey: {
|
|
id: this.getPublicKeyUrl(),
|
|
owner: this.url,
|
|
publicKeyPem: this.publicKey
|
|
}
|
|
}
|
|
|
|
return activityPubContextify(json)
|
|
}
|
|
|
|
isOwned = function (this: AccountInstance) {
|
|
return this.podId === null
|
|
}
|
|
|
|
getFollowerSharedInboxUrls = function (this: AccountInstance) {
|
|
const query: Sequelize.FindOptions<AccountAttributes> = {
|
|
attributes: [ 'sharedInboxUrl' ],
|
|
include: [
|
|
{
|
|
model: Account['sequelize'].models.AccountFollower,
|
|
where: {
|
|
targetAccountId: this.id
|
|
}
|
|
}
|
|
]
|
|
}
|
|
|
|
return Account.findAll(query)
|
|
.then(accounts => accounts.map(a => a.sharedInboxUrl))
|
|
}
|
|
|
|
getFollowingUrl = function (this: AccountInstance) {
|
|
return this.url + '/followers'
|
|
}
|
|
|
|
getFollowersUrl = function (this: AccountInstance) {
|
|
return this.url + '/followers'
|
|
}
|
|
|
|
getPublicKeyUrl = function (this: AccountInstance) {
|
|
return this.url + '#main-key'
|
|
}
|
|
|
|
// ------------------------------ STATICS ------------------------------
|
|
|
|
listOwned = function () {
|
|
const query: Sequelize.FindOptions<AccountAttributes> = {
|
|
where: {
|
|
podId: null
|
|
}
|
|
}
|
|
|
|
return Account.findAll(query)
|
|
}
|
|
|
|
listFollowerUrlsForApi = function (name: string, start: number, count?: number) {
|
|
return createListFollowForApiQuery('followers', name, start, count)
|
|
}
|
|
|
|
listFollowingUrlsForApi = function (name: string, start: number, count?: number) {
|
|
return createListFollowForApiQuery('following', name, start, count)
|
|
}
|
|
|
|
load = function (id: number) {
|
|
return Account.findById(id)
|
|
}
|
|
|
|
loadByUUID = function (uuid: string) {
|
|
const query: Sequelize.FindOptions<AccountAttributes> = {
|
|
where: {
|
|
uuid
|
|
}
|
|
}
|
|
|
|
return Account.findOne(query)
|
|
}
|
|
|
|
loadLocalAccountByName = function (name: string) {
|
|
const query: Sequelize.FindOptions<AccountAttributes> = {
|
|
where: {
|
|
name,
|
|
userId: {
|
|
[Sequelize.Op.ne]: null
|
|
}
|
|
}
|
|
}
|
|
|
|
return Account.findOne(query)
|
|
}
|
|
|
|
loadByUrl = function (url: string) {
|
|
const query: Sequelize.FindOptions<AccountAttributes> = {
|
|
where: {
|
|
url
|
|
}
|
|
}
|
|
|
|
return Account.findOne(query)
|
|
}
|
|
|
|
loadAccountByPodAndUUID = function (uuid: string, podId: number, transaction: Sequelize.Transaction) {
|
|
const query: Sequelize.FindOptions<AccountAttributes> = {
|
|
where: {
|
|
podId,
|
|
uuid
|
|
},
|
|
transaction
|
|
}
|
|
|
|
return Account.find(query)
|
|
}
|
|
|
|
// ------------------------------ UTILS ------------------------------
|
|
|
|
async function createListFollowForApiQuery (type: 'followers' | 'following', name: string, start: number, count?: number) {
|
|
let firstJoin: string
|
|
let secondJoin: string
|
|
|
|
if (type === 'followers') {
|
|
firstJoin = 'targetAccountId'
|
|
secondJoin = 'accountId'
|
|
} else {
|
|
firstJoin = 'accountId'
|
|
secondJoin = 'targetAccountId'
|
|
}
|
|
|
|
const selections = [ '"Followers"."url" AS "url"', 'COUNT(*) AS "total"' ]
|
|
const tasks: Promise<any>[] = []
|
|
|
|
for (const selection of selections) {
|
|
let query = 'SELECT ' + selection + ' FROM "Account" ' +
|
|
'INNER JOIN "AccountFollower" ON "AccountFollower"."' + firstJoin + '" = "Account"."id" ' +
|
|
'INNER JOIN "Account" AS "Followers" ON "Followers"."id" = "AccountFollower"."' + secondJoin + '" ' +
|
|
'WHERE "Account"."name" = \'$name\' ' +
|
|
'LIMIT ' + start
|
|
|
|
if (count !== undefined) query += ', ' + count
|
|
|
|
const options = {
|
|
bind: { name },
|
|
type: Sequelize.QueryTypes.SELECT
|
|
}
|
|
tasks.push(Account['sequelize'].query(query, options))
|
|
}
|
|
|
|
const [ followers, [ { total } ]] = await Promise.all(tasks)
|
|
const urls: string[] = followers.map(f => f.url)
|
|
|
|
return {
|
|
data: urls,
|
|
total: parseInt(total, 10)
|
|
}
|
|
}
|