PeerTube/server/models/account/account.ts

548 lines
14 KiB
TypeScript
Raw Normal View History

2017-11-09 17:51:58 +01:00
import * as Sequelize from 'sequelize'
import {
isUserUsernameValid,
isAccountPublicKeyValid,
isAccountUrlValid,
isAccountPrivateKeyValid,
isAccountFollowersCountValid,
isAccountFollowingCountValid,
isAccountInboxValid,
isAccountOutboxValid,
isAccountSharedInboxValid,
isAccountFollowersValid,
isAccountFollowingValid,
activityPubContextify
} from '../../helpers'
2017-11-13 17:39:41 +01:00
import { addMethodsToModel, getSort } from '../utils'
2017-11-09 17:51:58 +01:00
import {
AccountInstance,
AccountAttributes,
AccountMethods
} from './account-interface'
2017-11-13 17:39:41 +01:00
import { sendDeleteAccount } from '../../lib/activitypub/send-request'
2017-11-14 10:57:56 +01:00
import { CONSTRAINTS_FIELDS } from '../../initializers/constants'
2017-11-09 17:51:58 +01:00
let Account: Sequelize.Model<AccountInstance, AccountAttributes>
let loadAccountByPodAndUUID: AccountMethods.LoadAccountByPodAndUUID
let load: AccountMethods.Load
2017-11-13 17:39:41 +01:00
let loadApplication: AccountMethods.LoadApplication
2017-11-09 17:51:58 +01:00
let loadByUUID: AccountMethods.LoadByUUID
let loadByUrl: AccountMethods.LoadByUrl
2017-11-13 17:39:41 +01:00
let loadLocalAccountByNameAndPod: AccountMethods.LoadLocalAccountByNameAndPod
2017-11-09 17:51:58 +01:00
let listOwned: AccountMethods.ListOwned
2017-11-14 09:11:43 +01:00
let listAcceptedFollowerUrlsForApi: AccountMethods.ListAcceptedFollowerUrlsForApi
let listAcceptedFollowingUrlsForApi: AccountMethods.ListAcceptedFollowingUrlsForApi
2017-11-13 17:39:41 +01:00
let listFollowingForApi: AccountMethods.ListFollowingForApi
let listFollowersForApi: AccountMethods.ListFollowersForApi
2017-11-09 17:51:58 +01:00
let isOwned: AccountMethods.IsOwned
let toActivityPubObject: AccountMethods.ToActivityPubObject
2017-11-13 17:39:41 +01:00
let toFormattedJSON: AccountMethods.ToFormattedJSON
2017-11-09 17:51:58 +01:00
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: {
2017-11-14 10:57:56 +01:00
nameValid: value => {
2017-11-09 17:51:58 +01:00
const res = isUserUsernameValid(value)
2017-11-14 10:57:56 +01:00
if (res === false) throw new Error('Name is not valid.')
2017-11-09 17:51:58 +01:00
}
}
},
url: {
2017-11-14 10:57:56 +01:00
type: DataTypes.STRING(CONSTRAINTS_FIELDS.ACCOUNTS.URL.max),
2017-11-09 17:51:58 +01:00
allowNull: false,
validate: {
urlValid: value => {
const res = isAccountUrlValid(value)
if (res === false) throw new Error('URL is not valid.')
}
}
},
publicKey: {
2017-11-14 10:57:56 +01:00
type: DataTypes.STRING(CONSTRAINTS_FIELDS.ACCOUNTS.PUBLIC_KEY.max),
2017-11-09 17:51:58 +01:00
allowNull: false,
validate: {
publicKeyValid: value => {
const res = isAccountPublicKeyValid(value)
if (res === false) throw new Error('Public key is not valid.')
}
}
},
privateKey: {
2017-11-14 10:57:56 +01:00
type: DataTypes.STRING(CONSTRAINTS_FIELDS.ACCOUNTS.PRIVATE_KEY.max),
2017-11-09 17:51:58 +01:00
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: {
2017-11-14 10:57:56 +01:00
followingCountValid: value => {
2017-11-09 17:51:58 +01:00
const res = isAccountFollowingCountValid(value)
if (res === false) throw new Error('Following count is not valid.')
}
}
},
inboxUrl: {
2017-11-14 10:57:56 +01:00
type: DataTypes.STRING(CONSTRAINTS_FIELDS.ACCOUNTS.URL.max),
2017-11-09 17:51:58 +01:00
allowNull: false,
validate: {
inboxUrlValid: value => {
const res = isAccountInboxValid(value)
if (res === false) throw new Error('Inbox URL is not valid.')
}
}
},
outboxUrl: {
2017-11-14 10:57:56 +01:00
type: DataTypes.STRING(CONSTRAINTS_FIELDS.ACCOUNTS.URL.max),
2017-11-09 17:51:58 +01:00
allowNull: false,
validate: {
outboxUrlValid: value => {
const res = isAccountOutboxValid(value)
if (res === false) throw new Error('Outbox URL is not valid.')
}
}
},
sharedInboxUrl: {
2017-11-14 10:57:56 +01:00
type: DataTypes.STRING(CONSTRAINTS_FIELDS.ACCOUNTS.URL.max),
2017-11-09 17:51:58 +01:00
allowNull: false,
validate: {
sharedInboxUrlValid: value => {
const res = isAccountSharedInboxValid(value)
if (res === false) throw new Error('Shared inbox URL is not valid.')
}
}
},
followersUrl: {
2017-11-14 10:57:56 +01:00
type: DataTypes.STRING(CONSTRAINTS_FIELDS.ACCOUNTS.URL.max),
2017-11-09 17:51:58 +01:00
allowNull: false,
validate: {
followersUrlValid: value => {
const res = isAccountFollowersValid(value)
if (res === false) throw new Error('Followers URL is not valid.')
}
}
},
followingUrl: {
2017-11-14 10:57:56 +01:00
type: DataTypes.STRING(CONSTRAINTS_FIELDS.ACCOUNTS.URL.max),
2017-11-09 17:51:58 +01:00
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,
2017-11-13 17:39:41 +01:00
loadApplication,
2017-11-09 17:51:58 +01:00
load,
loadByUUID,
2017-11-13 18:48:28 +01:00
loadByUrl,
2017-11-13 17:39:41 +01:00
loadLocalAccountByNameAndPod,
2017-11-09 17:51:58 +01:00
listOwned,
2017-11-14 09:11:43 +01:00
listAcceptedFollowerUrlsForApi,
listAcceptedFollowingUrlsForApi,
2017-11-13 17:39:41 +01:00
listFollowingForApi,
listFollowersForApi
2017-11-09 17:51:58 +01:00
]
const instanceMethods = [
isOwned,
toActivityPubObject,
2017-11-13 17:39:41 +01:00
toFormattedJSON,
2017-11-09 17:51:58 +01:00
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: {
2017-11-14 10:57:56 +01:00
name: 'applicationId',
2017-11-09 17:51:58 +01:00
allowNull: true
},
onDelete: 'cascade'
})
Account.hasMany(models.VideoChannel, {
foreignKey: {
name: 'accountId',
allowNull: false
},
onDelete: 'cascade',
hooks: true
})
2017-11-14 10:57:56 +01:00
Account.hasMany(models.AccountFollow, {
2017-11-09 17:51:58 +01:00
foreignKey: {
name: 'accountId',
allowNull: false
},
2017-11-13 17:39:41 +01:00
as: 'following',
2017-11-09 17:51:58 +01:00
onDelete: 'cascade'
})
2017-11-14 10:57:56 +01:00
Account.hasMany(models.AccountFollow, {
2017-11-09 17:51:58 +01:00
foreignKey: {
name: 'targetAccountId',
allowNull: false
},
2017-11-13 17:39:41 +01:00
as: 'followers',
2017-11-09 17:51:58 +01:00
onDelete: 'cascade'
})
}
function afterDestroy (account: AccountInstance) {
if (account.isOwned()) {
2017-11-13 17:39:41 +01:00
return sendDeleteAccount(account, undefined)
2017-11-09 17:51:58 +01:00
}
return undefined
}
2017-11-13 17:39:41 +01:00
toFormattedJSON = function (this: AccountInstance) {
const json = {
id: this.id,
host: this.Pod.host,
name: this.name
}
return json
}
2017-11-09 17:51:58 +01:00
toActivityPubObject = function (this: AccountInstance) {
2017-11-10 17:27:49 +01:00
const type = this.podId ? 'Application' as 'Application' : 'Person' as 'Person'
2017-11-09 17:51:58 +01:00
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: [
{
2017-11-14 10:57:56 +01:00
model: Account['sequelize'].models.AccountFollow,
2017-11-09 17:51:58 +01:00
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)
}
2017-11-14 09:11:43 +01:00
listAcceptedFollowerUrlsForApi = function (id: number, start: number, count?: number) {
return createListAcceptedFollowForApiQuery('followers', id, start, count)
2017-11-13 17:39:41 +01:00
}
2017-11-14 09:11:43 +01:00
listAcceptedFollowingUrlsForApi = function (id: number, start: number, count?: number) {
return createListAcceptedFollowForApiQuery('following', id, start, count)
2017-11-13 17:39:41 +01:00
}
listFollowingForApi = function (id: number, start: number, count: number, sort: string) {
const query = {
distinct: true,
offset: start,
limit: count,
order: [ getSort(sort) ],
include: [
{
model: Account['sequelize'].models.AccountFollow,
required: true,
as: 'following',
include: [
{
model: Account['sequelize'].models.Account,
as: 'following',
required: true,
include: [ Account['sequelize'].models.Pod ]
}
]
}
]
}
return Account.findAndCountAll(query).then(({ rows, count }) => {
return {
data: rows,
total: count
}
})
}
listFollowersForApi = function (id: number, start: number, count: number, sort: string) {
const query = {
distinct: true,
offset: start,
limit: count,
order: [ getSort(sort) ],
include: [
{
model: Account['sequelize'].models.AccountFollow,
required: true,
as: 'followers',
include: [
{
model: Account['sequelize'].models.Account,
as: 'followers',
required: true,
include: [ Account['sequelize'].models.Pod ]
}
]
}
]
}
return Account.findAndCountAll(query).then(({ rows, count }) => {
return {
data: rows,
total: count
}
})
2017-11-09 17:51:58 +01:00
}
2017-11-13 17:39:41 +01:00
loadApplication = function () {
return Account.findOne({
include: [
{
model: Account['sequelize'].model.Application,
required: true
}
]
})
2017-11-09 17:51:58 +01:00
}
load = function (id: number) {
return Account.findById(id)
}
loadByUUID = function (uuid: string) {
const query: Sequelize.FindOptions<AccountAttributes> = {
where: {
uuid
}
}
return Account.findOne(query)
}
2017-11-13 17:39:41 +01:00
loadLocalAccountByNameAndPod = function (name: string, host: string) {
2017-11-09 17:51:58 +01:00
const query: Sequelize.FindOptions<AccountAttributes> = {
where: {
name,
userId: {
[Sequelize.Op.ne]: null
}
2017-11-13 17:39:41 +01:00
},
include: [
{
model: Account['sequelize'].models.Pod,
where: {
host
}
}
]
2017-11-09 17:51:58 +01:00
}
return Account.findOne(query)
}
2017-11-13 18:48:28 +01:00
loadByUrl = function (url: string, transaction?: Sequelize.Transaction) {
2017-11-09 17:51:58 +01:00
const query: Sequelize.FindOptions<AccountAttributes> = {
where: {
url
2017-11-13 18:48:28 +01:00
},
transaction
2017-11-09 17:51:58 +01:00
}
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 ------------------------------
2017-11-14 09:11:43 +01:00
async function createListAcceptedFollowForApiQuery (type: 'followers' | 'following', id: number, start: number, count?: number) {
2017-11-09 17:51:58 +01:00
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) {
2017-11-10 17:27:49 +01:00
let query = 'SELECT ' + selection + ' FROM "Account" ' +
2017-11-14 10:57:56 +01:00
'INNER JOIN "AccountFollow" ON "AccountFollow"."' + firstJoin + '" = "Account"."id" ' +
2017-11-13 17:39:41 +01:00
'INNER JOIN "Account" AS "Follows" ON "Followers"."id" = "Follows"."' + secondJoin + '" ' +
2017-11-14 10:57:56 +01:00
'WHERE "Account"."id" = $id AND "AccountFollow"."state" = \'accepted\' ' +
2017-11-10 17:27:49 +01:00
'LIMIT ' + start
if (count !== undefined) query += ', ' + count
2017-11-09 17:51:58 +01:00
const options = {
2017-11-13 17:39:41 +01:00
bind: { id },
2017-11-09 17:51:58 +01:00
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)
}
}