]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/models/account/account-blocklist.ts
Correctly fix octet stream fallback for video ext
[github/Chocobozzz/PeerTube.git] / server / models / account / account-blocklist.ts
1 import { BelongsTo, Column, CreatedAt, ForeignKey, Model, Scopes, Table, UpdatedAt } from 'sequelize-typescript'
2 import { AccountModel } from './account'
3 import { getSort } from '../utils'
4 import { AccountBlock } from '../../../shared/models/blocklist'
5 import { Op } from 'sequelize'
6 import * as Bluebird from 'bluebird'
7 import { MAccountBlocklist, MAccountBlocklistAccounts, MAccountBlocklistFormattable } from '@server/typings/models'
8
9 enum ScopeNames {
10 WITH_ACCOUNTS = 'WITH_ACCOUNTS'
11 }
12
13 @Scopes(() => ({
14 [ScopeNames.WITH_ACCOUNTS]: {
15 include: [
16 {
17 model: AccountModel,
18 required: true,
19 as: 'ByAccount'
20 },
21 {
22 model: AccountModel,
23 required: true,
24 as: 'BlockedAccount'
25 }
26 ]
27 }
28 }))
29
30 @Table({
31 tableName: 'accountBlocklist',
32 indexes: [
33 {
34 fields: [ 'accountId', 'targetAccountId' ],
35 unique: true
36 },
37 {
38 fields: [ 'targetAccountId' ]
39 }
40 ]
41 })
42 export class AccountBlocklistModel extends Model<AccountBlocklistModel> {
43
44 @CreatedAt
45 createdAt: Date
46
47 @UpdatedAt
48 updatedAt: Date
49
50 @ForeignKey(() => AccountModel)
51 @Column
52 accountId: number
53
54 @BelongsTo(() => AccountModel, {
55 foreignKey: {
56 name: 'accountId',
57 allowNull: false
58 },
59 as: 'ByAccount',
60 onDelete: 'CASCADE'
61 })
62 ByAccount: AccountModel
63
64 @ForeignKey(() => AccountModel)
65 @Column
66 targetAccountId: number
67
68 @BelongsTo(() => AccountModel, {
69 foreignKey: {
70 name: 'targetAccountId',
71 allowNull: false
72 },
73 as: 'BlockedAccount',
74 onDelete: 'CASCADE'
75 })
76 BlockedAccount: AccountModel
77
78 static isAccountMutedByMulti (accountIds: number[], targetAccountId: number) {
79 const query = {
80 attributes: [ 'accountId', 'id' ],
81 where: {
82 accountId: {
83 [Op.in]: accountIds // FIXME: sequelize ANY seems broken
84 },
85 targetAccountId
86 },
87 raw: true
88 }
89
90 return AccountBlocklistModel.unscoped()
91 .findAll(query)
92 .then(rows => {
93 const result: { [accountId: number]: boolean } = {}
94
95 for (const accountId of accountIds) {
96 result[accountId] = !!rows.find(r => r.accountId === accountId)
97 }
98
99 return result
100 })
101 }
102
103 static loadByAccountAndTarget (accountId: number, targetAccountId: number): Bluebird<MAccountBlocklist> {
104 const query = {
105 where: {
106 accountId,
107 targetAccountId
108 }
109 }
110
111 return AccountBlocklistModel.findOne(query)
112 }
113
114 static listForApi (accountId: number, start: number, count: number, sort: string) {
115 const query = {
116 offset: start,
117 limit: count,
118 order: getSort(sort),
119 where: {
120 accountId
121 }
122 }
123
124 return AccountBlocklistModel
125 .scope([ ScopeNames.WITH_ACCOUNTS ])
126 .findAndCountAll<MAccountBlocklistAccounts>(query)
127 .then(({ rows, count }) => {
128 return { total: count, data: rows }
129 })
130 }
131
132 toFormattedJSON (this: MAccountBlocklistFormattable): AccountBlock {
133 return {
134 byAccount: this.ByAccount.toFormattedJSON(),
135 blockedAccount: this.BlockedAccount.toFormattedJSON(),
136 createdAt: this.createdAt
137 }
138 }
139 }