2022-02-28 02:34:43 -05:00
|
|
|
import { FindOptions, Op, QueryTypes } from 'sequelize'
|
|
|
|
import { BelongsTo, Column, CreatedAt, ForeignKey, Model, Table, UpdatedAt } from 'sequelize-typescript'
|
2021-12-06 10:53:00 -05:00
|
|
|
import { handlesToNameAndHost } from '@server/helpers/actors'
|
2022-02-28 02:34:43 -05:00
|
|
|
import { MAccountBlocklist, MAccountBlocklistFormattable } from '@server/types/models'
|
2021-12-16 12:04:16 -05:00
|
|
|
import { AttributesOnly } from '@shared/typescript-utils'
|
2020-07-01 10:05:30 -04:00
|
|
|
import { AccountBlock } from '../../../shared/models'
|
2021-05-11 05:15:29 -04:00
|
|
|
import { ActorModel } from '../actor/actor'
|
2020-05-29 10:16:24 -04:00
|
|
|
import { ServerModel } from '../server/server'
|
2021-12-06 10:53:00 -05:00
|
|
|
import { createSafeIn, getSort, searchAttribute } from '../utils'
|
2020-07-01 10:05:30 -04:00
|
|
|
import { AccountModel } from './account'
|
2018-10-12 09:26:04 -04:00
|
|
|
|
|
|
|
@Table({
|
|
|
|
tableName: 'accountBlocklist',
|
|
|
|
indexes: [
|
|
|
|
{
|
|
|
|
fields: [ 'accountId', 'targetAccountId' ],
|
|
|
|
unique: true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
fields: [ 'targetAccountId' ]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
})
|
2021-05-12 08:09:04 -04:00
|
|
|
export class AccountBlocklistModel extends Model<Partial<AttributesOnly<AccountBlocklistModel>>> {
|
2018-10-12 09:26:04 -04:00
|
|
|
|
|
|
|
@CreatedAt
|
|
|
|
createdAt: Date
|
|
|
|
|
|
|
|
@UpdatedAt
|
|
|
|
updatedAt: Date
|
|
|
|
|
|
|
|
@ForeignKey(() => AccountModel)
|
|
|
|
@Column
|
|
|
|
accountId: number
|
|
|
|
|
|
|
|
@BelongsTo(() => AccountModel, {
|
|
|
|
foreignKey: {
|
|
|
|
name: 'accountId',
|
|
|
|
allowNull: false
|
|
|
|
},
|
|
|
|
as: 'ByAccount',
|
|
|
|
onDelete: 'CASCADE'
|
|
|
|
})
|
|
|
|
ByAccount: AccountModel
|
|
|
|
|
|
|
|
@ForeignKey(() => AccountModel)
|
|
|
|
@Column
|
|
|
|
targetAccountId: number
|
|
|
|
|
|
|
|
@BelongsTo(() => AccountModel, {
|
|
|
|
foreignKey: {
|
|
|
|
name: 'targetAccountId',
|
|
|
|
allowNull: false
|
|
|
|
},
|
2018-10-12 11:26:40 -04:00
|
|
|
as: 'BlockedAccount',
|
2018-10-12 09:26:04 -04:00
|
|
|
onDelete: 'CASCADE'
|
|
|
|
})
|
2018-10-12 11:26:40 -04:00
|
|
|
BlockedAccount: AccountModel
|
2018-10-12 09:26:04 -04:00
|
|
|
|
2021-12-06 10:53:00 -05:00
|
|
|
static isAccountMutedByAccounts (accountIds: number[], targetAccountId: number) {
|
2019-01-02 10:37:43 -05:00
|
|
|
const query = {
|
2019-01-04 02:56:20 -05:00
|
|
|
attributes: [ 'accountId', 'id' ],
|
2019-01-02 10:37:43 -05:00
|
|
|
where: {
|
2019-01-04 02:56:20 -05:00
|
|
|
accountId: {
|
2020-01-28 08:45:17 -05:00
|
|
|
[Op.in]: accountIds
|
2019-01-04 02:56:20 -05:00
|
|
|
},
|
2019-01-02 10:37:43 -05:00
|
|
|
targetAccountId
|
|
|
|
},
|
|
|
|
raw: true
|
|
|
|
}
|
|
|
|
|
|
|
|
return AccountBlocklistModel.unscoped()
|
2019-01-04 02:56:20 -05:00
|
|
|
.findAll(query)
|
|
|
|
.then(rows => {
|
|
|
|
const result: { [accountId: number]: boolean } = {}
|
|
|
|
|
|
|
|
for (const accountId of accountIds) {
|
|
|
|
result[accountId] = !!rows.find(r => r.accountId === accountId)
|
|
|
|
}
|
|
|
|
|
|
|
|
return result
|
|
|
|
})
|
2019-01-02 10:37:43 -05:00
|
|
|
}
|
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
static loadByAccountAndTarget (accountId: number, targetAccountId: number): Promise<MAccountBlocklist> {
|
2018-10-12 09:26:04 -04:00
|
|
|
const query = {
|
|
|
|
where: {
|
|
|
|
accountId,
|
|
|
|
targetAccountId
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return AccountBlocklistModel.findOne(query)
|
|
|
|
}
|
|
|
|
|
2020-04-19 08:11:40 -04:00
|
|
|
static listForApi (parameters: {
|
|
|
|
start: number
|
|
|
|
count: number
|
|
|
|
sort: string
|
|
|
|
search?: string
|
|
|
|
accountId: number
|
|
|
|
}) {
|
|
|
|
const { start, count, sort, search, accountId } = parameters
|
|
|
|
|
2022-02-28 02:34:43 -05:00
|
|
|
const getQuery = (forCount: boolean) => {
|
|
|
|
const query: FindOptions = {
|
|
|
|
offset: start,
|
|
|
|
limit: count,
|
|
|
|
order: getSort(sort),
|
|
|
|
where: { accountId }
|
|
|
|
}
|
2020-04-19 08:11:40 -04:00
|
|
|
|
2022-02-28 02:34:43 -05:00
|
|
|
if (search) {
|
|
|
|
Object.assign(query.where, {
|
|
|
|
[Op.or]: [
|
|
|
|
searchAttribute(search, '$BlockedAccount.name$'),
|
|
|
|
searchAttribute(search, '$BlockedAccount.Actor.url$')
|
|
|
|
]
|
|
|
|
})
|
|
|
|
}
|
2018-10-12 09:26:04 -04:00
|
|
|
|
2022-02-28 02:34:43 -05:00
|
|
|
if (forCount !== true) {
|
|
|
|
query.include = [
|
|
|
|
{
|
|
|
|
model: AccountModel,
|
|
|
|
required: true,
|
|
|
|
as: 'ByAccount'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
model: AccountModel,
|
|
|
|
required: true,
|
|
|
|
as: 'BlockedAccount'
|
|
|
|
}
|
2020-04-19 08:11:40 -04:00
|
|
|
]
|
2022-02-28 02:34:43 -05:00
|
|
|
}
|
2020-04-19 08:11:40 -04:00
|
|
|
|
2022-02-28 02:34:43 -05:00
|
|
|
return query
|
|
|
|
}
|
2020-04-19 08:11:40 -04:00
|
|
|
|
2022-02-28 02:34:43 -05:00
|
|
|
return Promise.all([
|
|
|
|
AccountBlocklistModel.count(getQuery(true)),
|
|
|
|
AccountBlocklistModel.findAll(getQuery(false))
|
|
|
|
]).then(([ total, data ]) => ({ total, data }))
|
2018-10-12 09:26:04 -04:00
|
|
|
}
|
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
static listHandlesBlockedBy (accountIds: number[]): Promise<string[]> {
|
2020-05-29 10:16:24 -04:00
|
|
|
const query = {
|
2020-12-08 08:30:29 -05:00
|
|
|
attributes: [ 'id' ],
|
2020-05-29 10:16:24 -04:00
|
|
|
where: {
|
|
|
|
accountId: {
|
|
|
|
[Op.in]: accountIds
|
|
|
|
}
|
|
|
|
},
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
attributes: [ 'id' ],
|
|
|
|
model: AccountModel.unscoped(),
|
|
|
|
required: true,
|
|
|
|
as: 'BlockedAccount',
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
attributes: [ 'preferredUsername' ],
|
|
|
|
model: ActorModel.unscoped(),
|
|
|
|
required: true,
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
attributes: [ 'host' ],
|
|
|
|
model: ServerModel.unscoped(),
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
return AccountBlocklistModel.findAll(query)
|
|
|
|
.then(entries => entries.map(e => `${e.BlockedAccount.Actor.preferredUsername}@${e.BlockedAccount.Actor.Server.host}`))
|
|
|
|
}
|
|
|
|
|
2021-12-06 10:53:00 -05:00
|
|
|
static getBlockStatus (byAccountIds: number[], handles: string[]): Promise<{ name: string, host: string, accountId: number }[]> {
|
|
|
|
const sanitizedHandles = handlesToNameAndHost(handles)
|
|
|
|
|
|
|
|
const localHandles = sanitizedHandles.filter(h => !h.host)
|
|
|
|
.map(h => h.name)
|
|
|
|
|
|
|
|
const remoteHandles = sanitizedHandles.filter(h => !!h.host)
|
|
|
|
.map(h => ([ h.name, h.host ]))
|
|
|
|
|
|
|
|
const handlesWhere: string[] = []
|
|
|
|
|
|
|
|
if (localHandles.length !== 0) {
|
|
|
|
handlesWhere.push(`("actor"."preferredUsername" IN (:localHandles) AND "server"."id" IS NULL)`)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (remoteHandles.length !== 0) {
|
|
|
|
handlesWhere.push(`(("actor"."preferredUsername", "server"."host") IN (:remoteHandles))`)
|
|
|
|
}
|
|
|
|
|
|
|
|
const rawQuery = `SELECT "accountBlocklist"."accountId", "actor"."preferredUsername" AS "name", "server"."host" ` +
|
|
|
|
`FROM "accountBlocklist" ` +
|
|
|
|
`INNER JOIN "account" ON "account"."id" = "accountBlocklist"."targetAccountId" ` +
|
|
|
|
`INNER JOIN "actor" ON "actor"."id" = "account"."actorId" ` +
|
|
|
|
`LEFT JOIN "server" ON "server"."id" = "actor"."serverId" ` +
|
|
|
|
`WHERE "accountBlocklist"."accountId" IN (${createSafeIn(AccountBlocklistModel.sequelize, byAccountIds)}) ` +
|
|
|
|
`AND (${handlesWhere.join(' OR ')})`
|
|
|
|
|
|
|
|
return AccountBlocklistModel.sequelize.query(rawQuery, {
|
|
|
|
type: QueryTypes.SELECT as QueryTypes.SELECT,
|
|
|
|
replacements: { byAccountIds, localHandles, remoteHandles }
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-08-20 13:05:31 -04:00
|
|
|
toFormattedJSON (this: MAccountBlocklistFormattable): AccountBlock {
|
2018-10-12 09:26:04 -04:00
|
|
|
return {
|
|
|
|
byAccount: this.ByAccount.toFormattedJSON(),
|
2018-10-12 11:26:40 -04:00
|
|
|
blockedAccount: this.BlockedAccount.toFormattedJSON(),
|
2018-10-12 09:26:04 -04:00
|
|
|
createdAt: this.createdAt
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|