2017-11-13 17:39:41 +01:00
|
|
|
import { values } from 'lodash'
|
2017-11-09 17:51:58 +01:00
|
|
|
import * as Sequelize from 'sequelize'
|
|
|
|
|
2017-11-15 10:10:41 +01:00
|
|
|
import { addMethodsToModel, getSort } from '../utils'
|
2017-11-13 17:39:41 +01:00
|
|
|
import { AccountFollowAttributes, AccountFollowInstance, AccountFollowMethods } from './account-follow-interface'
|
|
|
|
import { FOLLOW_STATES } from '../../initializers/constants'
|
2017-11-09 17:51:58 +01:00
|
|
|
|
|
|
|
let AccountFollow: Sequelize.Model<AccountFollowInstance, AccountFollowAttributes>
|
2017-11-13 17:39:41 +01:00
|
|
|
let loadByAccountAndTarget: AccountFollowMethods.LoadByAccountAndTarget
|
2017-11-15 10:10:41 +01:00
|
|
|
let listFollowingForApi: AccountFollowMethods.ListFollowingForApi
|
|
|
|
let listFollowersForApi: AccountFollowMethods.ListFollowersForApi
|
|
|
|
let listAcceptedFollowerUrlsForApi: AccountFollowMethods.ListAcceptedFollowerUrlsForApi
|
|
|
|
let listAcceptedFollowingUrlsForApi: AccountFollowMethods.ListAcceptedFollowingUrlsForApi
|
2017-11-16 11:08:25 +01:00
|
|
|
let listAcceptedFollowerSharedInboxUrls: AccountFollowMethods.ListAcceptedFollowerSharedInboxUrls
|
2017-11-09 17:51:58 +01:00
|
|
|
|
|
|
|
export default function (sequelize: Sequelize.Sequelize, DataTypes: Sequelize.DataTypes) {
|
|
|
|
AccountFollow = sequelize.define<AccountFollowInstance, AccountFollowAttributes>('AccountFollow',
|
2017-11-13 17:39:41 +01:00
|
|
|
{
|
|
|
|
state: {
|
|
|
|
type: DataTypes.ENUM(values(FOLLOW_STATES)),
|
|
|
|
allowNull: false
|
|
|
|
}
|
|
|
|
},
|
2017-11-09 17:51:58 +01:00
|
|
|
{
|
|
|
|
indexes: [
|
|
|
|
{
|
2017-11-14 17:31:26 +01:00
|
|
|
fields: [ 'accountId' ]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
fields: [ 'targetAccountId' ]
|
2017-11-09 17:51:58 +01:00
|
|
|
},
|
|
|
|
{
|
2017-11-14 17:31:26 +01:00
|
|
|
fields: [ 'accountId', 'targetAccountId' ],
|
2017-11-09 17:51:58 +01:00
|
|
|
unique: true
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
const classMethods = [
|
2017-11-14 17:31:26 +01:00
|
|
|
associate,
|
2017-11-15 10:10:41 +01:00
|
|
|
loadByAccountAndTarget,
|
|
|
|
listFollowingForApi,
|
|
|
|
listFollowersForApi,
|
|
|
|
listAcceptedFollowerUrlsForApi,
|
2017-11-16 11:08:25 +01:00
|
|
|
listAcceptedFollowingUrlsForApi,
|
|
|
|
listAcceptedFollowerSharedInboxUrls
|
2017-11-09 17:51:58 +01:00
|
|
|
]
|
|
|
|
addMethodsToModel(AccountFollow, classMethods)
|
|
|
|
|
|
|
|
return AccountFollow
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------ STATICS ------------------------------
|
|
|
|
|
|
|
|
function associate (models) {
|
|
|
|
AccountFollow.belongsTo(models.Account, {
|
|
|
|
foreignKey: {
|
|
|
|
name: 'accountId',
|
|
|
|
allowNull: false
|
|
|
|
},
|
2017-11-15 10:10:41 +01:00
|
|
|
as: 'AccountFollower',
|
2017-11-09 17:51:58 +01:00
|
|
|
onDelete: 'CASCADE'
|
|
|
|
})
|
|
|
|
|
|
|
|
AccountFollow.belongsTo(models.Account, {
|
|
|
|
foreignKey: {
|
|
|
|
name: 'targetAccountId',
|
|
|
|
allowNull: false
|
|
|
|
},
|
2017-11-15 10:10:41 +01:00
|
|
|
as: 'AccountFollowing',
|
2017-11-09 17:51:58 +01:00
|
|
|
onDelete: 'CASCADE'
|
|
|
|
})
|
|
|
|
}
|
2017-11-13 17:39:41 +01:00
|
|
|
|
|
|
|
loadByAccountAndTarget = function (accountId: number, targetAccountId: number) {
|
|
|
|
const query = {
|
|
|
|
where: {
|
|
|
|
accountId,
|
|
|
|
targetAccountId
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return AccountFollow.findOne(query)
|
|
|
|
}
|
2017-11-15 10:10: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: AccountFollow[ 'sequelize' ].models.Account,
|
|
|
|
required: true,
|
|
|
|
as: 'AccountFollower',
|
|
|
|
where: {
|
|
|
|
id
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
model: AccountFollow['sequelize'].models.Account,
|
|
|
|
as: 'AccountFollowing',
|
|
|
|
required: true,
|
2017-11-15 11:00:25 +01:00
|
|
|
include: [ AccountFollow['sequelize'].models.Server ]
|
2017-11-15 10:10:41 +01:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
return AccountFollow.findAndCountAll(query).then(({ rows, count }) => {
|
|
|
|
return {
|
|
|
|
data: rows.map(r => r.AccountFollowing),
|
|
|
|
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: AccountFollow[ 'sequelize' ].models.Account,
|
|
|
|
required: true,
|
|
|
|
as: 'AccountFollower',
|
2017-11-15 11:00:25 +01:00
|
|
|
include: [ AccountFollow['sequelize'].models.Server ]
|
2017-11-15 10:10:41 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
model: AccountFollow['sequelize'].models.Account,
|
|
|
|
as: 'AccountFollowing',
|
|
|
|
required: true,
|
|
|
|
where: {
|
|
|
|
id
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
return AccountFollow.findAndCountAll(query).then(({ rows, count }) => {
|
|
|
|
return {
|
|
|
|
data: rows.map(r => r.AccountFollower),
|
|
|
|
total: count
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-11-16 11:08:25 +01:00
|
|
|
listAcceptedFollowerUrlsForApi = function (accountIds: number[], start?: number, count?: number) {
|
|
|
|
return createListAcceptedFollowForApiQuery('followers', accountIds, start, count)
|
2017-11-15 10:10:41 +01:00
|
|
|
}
|
|
|
|
|
2017-11-16 11:08:25 +01:00
|
|
|
listAcceptedFollowerSharedInboxUrls = function (accountIds: number[]) {
|
|
|
|
return createListAcceptedFollowForApiQuery('followers', accountIds, undefined, undefined, 'sharedInboxUrl')
|
|
|
|
}
|
|
|
|
|
|
|
|
listAcceptedFollowingUrlsForApi = function (accountIds: number[], start?: number, count?: number) {
|
|
|
|
return createListAcceptedFollowForApiQuery('following', accountIds, start, count)
|
2017-11-15 10:10:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------ UTILS ------------------------------
|
|
|
|
|
2017-11-16 11:08:25 +01:00
|
|
|
async function createListAcceptedFollowForApiQuery (
|
|
|
|
type: 'followers' | 'following',
|
|
|
|
accountIds: number[],
|
|
|
|
start?: number,
|
|
|
|
count?: number,
|
|
|
|
columnUrl = 'url'
|
|
|
|
) {
|
2017-11-15 10:10:41 +01:00
|
|
|
let firstJoin: string
|
|
|
|
let secondJoin: string
|
|
|
|
|
|
|
|
if (type === 'followers') {
|
|
|
|
firstJoin = 'targetAccountId'
|
|
|
|
secondJoin = 'accountId'
|
|
|
|
} else {
|
|
|
|
firstJoin = 'accountId'
|
|
|
|
secondJoin = 'targetAccountId'
|
|
|
|
}
|
|
|
|
|
2017-11-16 11:08:25 +01:00
|
|
|
const selections = [ '"Follows"."' + columnUrl + '" AS "url"', 'COUNT(*) AS "total"' ]
|
2017-11-15 10:10:41 +01:00
|
|
|
const tasks: Promise<any>[] = []
|
|
|
|
|
|
|
|
for (const selection of selections) {
|
2017-11-15 16:28:35 +01:00
|
|
|
let query = 'SELECT ' + selection + ' FROM "Accounts" ' +
|
|
|
|
'INNER JOIN "AccountFollows" ON "AccountFollows"."' + firstJoin + '" = "Accounts"."id" ' +
|
|
|
|
'INNER JOIN "Accounts" AS "Follows" ON "AccountFollows"."' + secondJoin + '" = "Follows"."id" ' +
|
2017-11-16 15:55:01 +01:00
|
|
|
'WHERE "Accounts"."id" = ANY ($accountIds) AND "AccountFollows"."state" = \'accepted\' '
|
2017-11-15 10:10:41 +01:00
|
|
|
|
2017-11-15 16:28:35 +01:00
|
|
|
if (start !== undefined) query += 'LIMIT ' + start
|
2017-11-15 10:10:41 +01:00
|
|
|
if (count !== undefined) query += ', ' + count
|
|
|
|
|
|
|
|
const options = {
|
2017-11-16 15:55:01 +01:00
|
|
|
bind: { accountIds },
|
2017-11-15 10:10:41 +01:00
|
|
|
type: Sequelize.QueryTypes.SELECT
|
|
|
|
}
|
|
|
|
tasks.push(AccountFollow['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)
|
|
|
|
}
|
|
|
|
}
|