diff options
author | Chocobozzz <me@florianbigard.com> | 2019-12-19 10:35:47 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-12-19 11:34:00 +0100 |
commit | dddc8b1fe0c875f41c88f395b0d55cfea69add2c (patch) | |
tree | 06b84dc99f78d8422fc8eeda8a3372291660aed0 /server/models | |
parent | 96f6278f3e5b35d6e812176c799088f88729a0b0 (diff) | |
download | PeerTube-dddc8b1fe0c875f41c88f395b0d55cfea69add2c.tar.gz PeerTube-dddc8b1fe0c875f41c88f395b0d55cfea69add2c.tar.zst PeerTube-dddc8b1fe0c875f41c88f395b0d55cfea69add2c.zip |
Don't notify on muted instance
Diffstat (limited to 'server/models')
-rw-r--r-- | server/models/account/account-blocklist.ts | 5 | ||||
-rw-r--r-- | server/models/server/server-blocklist.ts | 26 |
2 files changed, 26 insertions, 5 deletions
diff --git a/server/models/account/account-blocklist.ts b/server/models/account/account-blocklist.ts index 8bcaca828..6ebe32556 100644 --- a/server/models/account/account-blocklist.ts +++ b/server/models/account/account-blocklist.ts | |||
@@ -75,11 +75,6 @@ export class AccountBlocklistModel extends Model<AccountBlocklistModel> { | |||
75 | }) | 75 | }) |
76 | BlockedAccount: AccountModel | 76 | BlockedAccount: AccountModel |
77 | 77 | ||
78 | static isAccountMutedBy (accountId: number, targetAccountId: number) { | ||
79 | return AccountBlocklistModel.isAccountMutedByMulti([ accountId ], targetAccountId) | ||
80 | .then(result => result[accountId]) | ||
81 | } | ||
82 | |||
83 | static isAccountMutedByMulti (accountIds: number[], targetAccountId: number) { | 78 | static isAccountMutedByMulti (accountIds: number[], targetAccountId: number) { |
84 | const query = { | 79 | const query = { |
85 | attributes: [ 'accountId', 'id' ], | 80 | attributes: [ 'accountId', 'id' ], |
diff --git a/server/models/server/server-blocklist.ts b/server/models/server/server-blocklist.ts index 3e9687191..b88df4fd5 100644 --- a/server/models/server/server-blocklist.ts +++ b/server/models/server/server-blocklist.ts | |||
@@ -5,6 +5,7 @@ import { ServerBlock } from '../../../shared/models/blocklist' | |||
5 | import { getSort } from '../utils' | 5 | import { getSort } from '../utils' |
6 | import * as Bluebird from 'bluebird' | 6 | import * as Bluebird from 'bluebird' |
7 | import { MServerBlocklist, MServerBlocklistAccountServer, MServerBlocklistFormattable } from '@server/typings/models' | 7 | import { MServerBlocklist, MServerBlocklistAccountServer, MServerBlocklistFormattable } from '@server/typings/models' |
8 | import { Op } from 'sequelize' | ||
8 | 9 | ||
9 | enum ScopeNames { | 10 | enum ScopeNames { |
10 | WITH_ACCOUNT = 'WITH_ACCOUNT', | 11 | WITH_ACCOUNT = 'WITH_ACCOUNT', |
@@ -75,6 +76,31 @@ export class ServerBlocklistModel extends Model<ServerBlocklistModel> { | |||
75 | }) | 76 | }) |
76 | BlockedServer: ServerModel | 77 | BlockedServer: ServerModel |
77 | 78 | ||
79 | static isServerMutedByMulti (accountIds: number[], targetServerId: number) { | ||
80 | const query = { | ||
81 | attributes: [ 'accountId', 'id' ], | ||
82 | where: { | ||
83 | accountId: { | ||
84 | [Op.in]: accountIds // FIXME: sequelize ANY seems broken | ||
85 | }, | ||
86 | targetServerId | ||
87 | }, | ||
88 | raw: true | ||
89 | } | ||
90 | |||
91 | return ServerBlocklistModel.unscoped() | ||
92 | .findAll(query) | ||
93 | .then(rows => { | ||
94 | const result: { [accountId: number]: boolean } = {} | ||
95 | |||
96 | for (const accountId of accountIds) { | ||
97 | result[accountId] = !!rows.find(r => r.accountId === accountId) | ||
98 | } | ||
99 | |||
100 | return result | ||
101 | }) | ||
102 | } | ||
103 | |||
78 | static loadByAccountAndHost (accountId: number, host: string): Bluebird<MServerBlocklist> { | 104 | static loadByAccountAndHost (accountId: number, host: string): Bluebird<MServerBlocklist> { |
79 | const query = { | 105 | const query = { |
80 | where: { | 106 | where: { |