2020-07-01 10:05:30 -04:00
|
|
|
import { Op } from 'sequelize'
|
|
|
|
import { BelongsTo, Column, CreatedAt, ForeignKey, Model, Scopes, Table, UpdatedAt } from 'sequelize-typescript'
|
2020-06-18 04:45:25 -04:00
|
|
|
import { MAccountBlocklist, MAccountBlocklistAccounts, MAccountBlocklistFormattable } from '@server/types/models'
|
2021-05-12 08:09:04 -04:00
|
|
|
import { AttributesOnly } from '@shared/core-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'
|
2020-07-01 10:05:30 -04:00
|
|
|
import { getSort, searchAttribute } from '../utils'
|
|
|
|
import { AccountModel } from './account'
|
2018-10-12 09:26:04 -04:00
|
|
|
|
|
|
|
enum ScopeNames {
|
|
|
|
WITH_ACCOUNTS = 'WITH_ACCOUNTS'
|
|
|
|
}
|
|
|
|
|
2019-04-23 03:50:57 -04:00
|
|
|
@Scopes(() => ({
|
2018-10-12 09:26:04 -04:00
|
|
|
[ScopeNames.WITH_ACCOUNTS]: {
|
|
|
|
include: [
|
|
|
|
{
|
2019-04-23 03:50:57 -04:00
|
|
|
model: AccountModel,
|
2018-10-12 09:26:04 -04:00
|
|
|
required: true,
|
|
|
|
as: 'ByAccount'
|
|
|
|
},
|
|
|
|
{
|
2019-04-23 03:50:57 -04:00
|
|
|
model: AccountModel,
|
2018-10-12 09:26:04 -04:00
|
|
|
required: true,
|
2018-10-12 11:26:40 -04:00
|
|
|
as: 'BlockedAccount'
|
2018-10-12 09:26:04 -04:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2019-04-23 03:50:57 -04:00
|
|
|
}))
|
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
|
|
|
|
2019-01-04 02:56:20 -05:00
|
|
|
static isAccountMutedByMulti (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
|
|
|
|
|
2018-10-12 09:26:04 -04:00
|
|
|
const query = {
|
|
|
|
offset: start,
|
|
|
|
limit: count,
|
2020-04-19 08:11:40 -04:00
|
|
|
order: getSort(sort)
|
|
|
|
}
|
|
|
|
|
|
|
|
const where = {
|
|
|
|
accountId
|
2018-10-12 09:26:04 -04:00
|
|
|
}
|
|
|
|
|
2020-04-19 08:11:40 -04:00
|
|
|
if (search) {
|
|
|
|
Object.assign(where, {
|
|
|
|
[Op.or]: [
|
2020-04-20 05:20:12 -04:00
|
|
|
searchAttribute(search, '$BlockedAccount.name$'),
|
|
|
|
searchAttribute(search, '$BlockedAccount.Actor.url$')
|
2020-04-19 08:11:40 -04:00
|
|
|
]
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
Object.assign(query, { where })
|
|
|
|
|
2018-10-12 09:26:04 -04:00
|
|
|
return AccountBlocklistModel
|
|
|
|
.scope([ ScopeNames.WITH_ACCOUNTS ])
|
2019-08-15 05:53:26 -04:00
|
|
|
.findAndCountAll<MAccountBlocklistAccounts>(query)
|
2018-10-12 09:26:04 -04:00
|
|
|
.then(({ rows, count }) => {
|
|
|
|
return { total: count, data: rows }
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
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}`))
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|