]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/models/utils.ts
Fix socket io messages angular changes
[github/Chocobozzz/PeerTube.git] / server / models / utils.ts
CommitLineData
3caf77d3 1import { Model, Sequelize } from 'sequelize-typescript'
7cde3b9c 2import validator from 'validator'
1735c825 3import { Col } from 'sequelize/types/lib/utils'
e0a92917 4import { literal, OrderItem, Op } from 'sequelize'
57c36b27 5
95153292 6type SortType = { sortModel: string, sortValue: string }
06215f15 7
9a629c6e 8// Translate for example "-name" to [ [ 'name', 'DESC' ], [ 'id', 'ASC' ] ]
1735c825
C
9function getSort (value: string, lastSort: OrderItem = [ 'id', 'ASC' ]): OrderItem[] {
10 const { direction, field } = buildDirectionAndField(value)
11
12 let finalField: string | Col
4b54f136
C
13
14 if (field.toLowerCase() === 'match') { // Search
1735c825 15 finalField = Sequelize.col('similarity')
aa3796bd
C
16 } else if (field === 'videoQuotaUsed') { // Users list
17 finalField = Sequelize.col('videoQuotaUsed')
1735c825
C
18 } else {
19 finalField = field
4b54f136 20 }
5c39adb7 21
1735c825 22 return [ [ finalField, direction ], lastSort ]
9a629c6e
C
23}
24
c1125bca
RK
25function getCommentSort (value: string, lastSort: OrderItem = [ 'id', 'ASC' ]): OrderItem[] {
26 const { direction, field } = buildDirectionAndField(value)
27
28 if (field === 'totalReplies') {
29 return [
30 [ Sequelize.literal('"totalReplies"'), direction ],
31 lastSort
32 ]
33 }
34
35 return getSort(value, lastSort)
36}
37
1735c825
C
38function getVideoSort (value: string, lastSort: OrderItem = [ 'id', 'ASC' ]): OrderItem[] {
39 const { direction, field } = buildDirectionAndField(value)
5c39adb7 40
1735c825 41 if (field.toLowerCase() === 'trending') { // Sort by aggregation
9a629c6e
C
42 return [
43 [ Sequelize.fn('COALESCE', Sequelize.fn('SUM', Sequelize.col('VideoViews.views')), '0'), direction ],
44
45 [ Sequelize.col('VideoModel.views'), direction ],
46
47 lastSort
48 ]
49 }
50
1735c825
C
51 let finalField: string | Col
52
53 // Alias
54 if (field.toLowerCase() === 'match') { // Search
55 finalField = Sequelize.col('similarity')
56 } else {
57 finalField = field
58 }
59
60 const firstSort = typeof finalField === 'string'
61 ? finalField.split('.').concat([ direction ]) as any // FIXME: sequelize typings
62 : [ finalField, direction ]
afa4374a
C
63
64 return [ firstSort, lastSort ]
5c39adb7
C
65}
66
95153292 67function getBlacklistSort (model: any, value: string, lastSort: OrderItem = [ 'id', 'ASC' ]): OrderItem[] {
1735c825 68 const [ firstSort ] = getSort(value)
792dbaf0 69
a1587156 70 if (model) return [ [ literal(`"${model}.${firstSort[0]}" ${firstSort[1]}`) ], lastSort ] as any[] // FIXME: typings
3bb6c526 71 return [ firstSort, lastSort ]
792dbaf0
GS
72}
73
cb5ce4cb
C
74function getFollowsSort (value: string, lastSort: OrderItem = [ 'id', 'ASC' ]): OrderItem[] {
75 const { direction, field } = buildDirectionAndField(value)
76
77 if (field === 'redundancyAllowed') {
78 return [
79 [ 'ActorFollowing', 'Server', 'redundancyAllowed', direction ],
80 lastSort
81 ]
82 }
83
84 return getSort(value, lastSort)
85}
86
9f79ade6
C
87function isOutdated (model: { createdAt: Date, updatedAt: Date }, refreshInterval: number) {
88 const now = Date.now()
89 const createdAtTime = model.createdAt.getTime()
90 const updatedAtTime = model.updatedAt.getTime()
91
92 return (now - createdAtTime) > refreshInterval && (now - updatedAtTime) > refreshInterval
93}
94
1735c825
C
95function throwIfNotValid (value: any, validator: (value: any) => boolean, fieldName = 'value', nullable = false) {
96 if (nullable && (value === null || value === undefined)) return
97
3fd3ab2d
C
98 if (validator(value) === false) {
99 throw new Error(`"${value}" is not a valid ${fieldName}.`)
100 }
101}
102
57c36b27
C
103function buildTrigramSearchIndex (indexName: string, attribute: string) {
104 return {
105 name: indexName,
106 fields: [ Sequelize.literal('lower(immutable_unaccent(' + attribute + '))') as any ],
107 using: 'gin',
108 operator: 'gin_trgm_ops'
109 }
110}
111
112function createSimilarityAttribute (col: string, value: string) {
113 return Sequelize.fn(
114 'similarity',
115
116 searchTrigramNormalizeCol(col),
117
118 searchTrigramNormalizeValue(value)
119 )
120}
121
696d83fd 122function buildBlockedAccountSQL (blockerIds: number[]) {
7ad9b984
C
123 const blockerIdsString = blockerIds.join(', ')
124
418d092a 125 return 'SELECT "targetAccountId" AS "id" FROM "accountBlocklist" WHERE "accountId" IN (' + blockerIdsString + ')' +
7ad9b984 126 ' UNION ALL ' +
7ad9b984
C
127 'SELECT "account"."id" AS "id" FROM account INNER JOIN "actor" ON account."actorId" = actor.id ' +
128 'INNER JOIN "serverBlocklist" ON "actor"."serverId" = "serverBlocklist"."targetServerId" ' +
129 'WHERE "serverBlocklist"."accountId" IN (' + blockerIdsString + ')'
418d092a
C
130}
131
1c58423f
C
132function buildBlockedAccountSQLOptimized (columnNameJoin: string, blockerIds: number[]) {
133 const blockerIdsString = blockerIds.join(', ')
134
135 return [
136 literal(
137 `NOT EXISTS (` +
138 ` SELECT 1 FROM "accountBlocklist" ` +
139 ` WHERE "targetAccountId" = ${columnNameJoin} ` +
140 ` AND "accountId" IN (${blockerIdsString})` +
141 `)`
142 ),
143
144 literal(
145 `NOT EXISTS (` +
146 ` SELECT 1 FROM "account" ` +
147 ` INNER JOIN "actor" ON account."actorId" = actor.id ` +
148 ` INNER JOIN "serverBlocklist" ON "actor"."serverId" = "serverBlocklist"."targetServerId" ` +
149 ` WHERE "account"."id" = ${columnNameJoin} ` +
150 ` AND "serverBlocklist"."accountId" IN (${blockerIdsString})` +
151 `)`
152 )
153 ]
154}
155
418d092a
C
156function buildServerIdsFollowedBy (actorId: any) {
157 const actorIdNumber = parseInt(actorId + '', 10)
158
159 return '(' +
160 'SELECT "actor"."serverId" FROM "actorFollow" ' +
161 'INNER JOIN "actor" ON actor.id = "actorFollow"."targetActorId" ' +
162 'WHERE "actorFollow"."actorId" = ' + actorIdNumber +
a1587156 163 ')'
418d092a 164}
7ad9b984 165
418d092a
C
166function buildWhereIdOrUUID (id: number | string) {
167 return validator.isInt('' + id) ? { id } : { uuid: id }
7ad9b984
C
168}
169
3acc5084
C
170function parseAggregateResult (result: any) {
171 if (!result) return 0
172
173 const total = parseInt(result + '', 10)
174 if (isNaN(total)) return 0
175
176 return total
177}
178
6b9c966f 179const createSafeIn = (model: typeof Model, stringArr: (string | number)[]) => {
5f3e2425
C
180 return stringArr.map(t => {
181 return t === null
182 ? null
183 : model.sequelize.escape('' + t)
184 }).join(', ')
3caf77d3
C
185}
186
6b9c966f
C
187function buildLocalAccountIdsIn () {
188 return literal(
189 '(SELECT "account"."id" FROM "account" INNER JOIN "actor" ON "actor"."id" = "account"."actorId" AND "actor"."serverId" IS NULL)'
190 )
191}
192
193function buildLocalActorIdsIn () {
194 return literal(
195 '(SELECT "actor"."id" FROM "actor" WHERE "actor"."serverId" IS NULL)'
196 )
197}
198
5f3e2425
C
199function buildDirectionAndField (value: string) {
200 let field: string
201 let direction: 'ASC' | 'DESC'
202
203 if (value.substring(0, 1) === '-') {
204 direction = 'DESC'
205 field = value.substring(1)
206 } else {
207 direction = 'ASC'
208 field = value
209 }
210
211 return { direction, field }
212}
213
feb34f6b
C
214function searchAttribute (sourceField?: string, targetField?: string) {
215 if (!sourceField) return {}
0d3a2982
RK
216
217 return {
feb34f6b
C
218 [targetField]: {
219 [Op.iLike]: `%${sourceField}%`
220 }
0d3a2982
RK
221 }
222}
223
5c39adb7
C
224// ---------------------------------------------------------------------------
225
65fcc311 226export {
7ad9b984 227 buildBlockedAccountSQL,
1c58423f 228 buildBlockedAccountSQLOptimized,
6b9c966f 229 buildLocalActorIdsIn,
06215f15 230 SortType,
6b9c966f 231 buildLocalAccountIdsIn,
792dbaf0 232 getSort,
c1125bca 233 getCommentSort,
9a629c6e 234 getVideoSort,
95153292 235 getBlacklistSort,
57c36b27
C
236 createSimilarityAttribute,
237 throwIfNotValid,
418d092a
C
238 buildServerIdsFollowedBy,
239 buildTrigramSearchIndex,
9f79ade6 240 buildWhereIdOrUUID,
3acc5084 241 isOutdated,
3caf77d3 242 parseAggregateResult,
cb5ce4cb 243 getFollowsSort,
5f3e2425 244 buildDirectionAndField,
e0a92917 245 createSafeIn,
feb34f6b 246 searchAttribute
57c36b27
C
247}
248
249// ---------------------------------------------------------------------------
250
251function searchTrigramNormalizeValue (value: string) {
2cebd797 252 return Sequelize.fn('lower', Sequelize.fn('immutable_unaccent', value))
57c36b27
C
253}
254
255function searchTrigramNormalizeCol (col: string) {
256 return Sequelize.fn('lower', Sequelize.fn('immutable_unaccent', Sequelize.col(col)))
65fcc311 257}