]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - server/models/utils.ts
Update client dependencies
[github/Chocobozzz/PeerTube.git] / server / models / utils.ts
... / ...
CommitLineData
1import { Model, Sequelize } from 'sequelize-typescript'
2import * as validator from 'validator'
3import { Col } from 'sequelize/types/lib/utils'
4import { OrderItem } from 'sequelize/types'
5
6type SortType = { sortModel: any, sortValue: string }
7
8// Translate for example "-name" to [ [ 'name', 'DESC' ], [ 'id', 'ASC' ] ]
9function getSort (value: string, lastSort: OrderItem = [ 'id', 'ASC' ]): OrderItem[] {
10 const { direction, field } = buildDirectionAndField(value)
11
12 let finalField: string | Col
13
14 if (field.toLowerCase() === 'match') { // Search
15 finalField = Sequelize.col('similarity')
16 } else {
17 finalField = field
18 }
19
20 return [ [ finalField, direction ], lastSort ]
21}
22
23function getVideoSort (value: string, lastSort: OrderItem = [ 'id', 'ASC' ]): OrderItem[] {
24 const { direction, field } = buildDirectionAndField(value)
25
26 if (field.toLowerCase() === 'trending') { // Sort by aggregation
27 return [
28 [ Sequelize.fn('COALESCE', Sequelize.fn('SUM', Sequelize.col('VideoViews.views')), '0'), direction ],
29
30 [ Sequelize.col('VideoModel.views'), direction ],
31
32 lastSort
33 ]
34 }
35
36 let finalField: string | Col
37
38 // Alias
39 if (field.toLowerCase() === 'match') { // Search
40 finalField = Sequelize.col('similarity')
41 } else {
42 finalField = field
43 }
44
45 const firstSort = typeof finalField === 'string'
46 ? finalField.split('.').concat([ direction ]) as any // FIXME: sequelize typings
47 : [ finalField, direction ]
48
49 return [ firstSort, lastSort ]
50}
51
52function getSortOnModel (model: any, value: string, lastSort: OrderItem = [ 'id', 'ASC' ]): OrderItem[] {
53 const [ firstSort ] = getSort(value)
54
55 if (model) return [ [ model, firstSort[0], firstSort[1] ], lastSort ]
56 return [ firstSort, lastSort ]
57}
58
59function isOutdated (model: { createdAt: Date, updatedAt: Date }, refreshInterval: number) {
60 const now = Date.now()
61 const createdAtTime = model.createdAt.getTime()
62 const updatedAtTime = model.updatedAt.getTime()
63
64 return (now - createdAtTime) > refreshInterval && (now - updatedAtTime) > refreshInterval
65}
66
67function throwIfNotValid (value: any, validator: (value: any) => boolean, fieldName = 'value', nullable = false) {
68 if (nullable && (value === null || value === undefined)) return
69
70 if (validator(value) === false) {
71 throw new Error(`"${value}" is not a valid ${fieldName}.`)
72 }
73}
74
75function buildTrigramSearchIndex (indexName: string, attribute: string) {
76 return {
77 name: indexName,
78 fields: [ Sequelize.literal('lower(immutable_unaccent(' + attribute + '))') as any ],
79 using: 'gin',
80 operator: 'gin_trgm_ops'
81 }
82}
83
84function createSimilarityAttribute (col: string, value: string) {
85 return Sequelize.fn(
86 'similarity',
87
88 searchTrigramNormalizeCol(col),
89
90 searchTrigramNormalizeValue(value)
91 )
92}
93
94function buildBlockedAccountSQL (serverAccountId: number, userAccountId?: number) {
95 const blockerIds = [ serverAccountId ]
96 if (userAccountId) blockerIds.push(userAccountId)
97
98 const blockerIdsString = blockerIds.join(', ')
99
100 return 'SELECT "targetAccountId" AS "id" FROM "accountBlocklist" WHERE "accountId" IN (' + blockerIdsString + ')' +
101 ' UNION ALL ' +
102 'SELECT "account"."id" AS "id" FROM account INNER JOIN "actor" ON account."actorId" = actor.id ' +
103 'INNER JOIN "serverBlocklist" ON "actor"."serverId" = "serverBlocklist"."targetServerId" ' +
104 'WHERE "serverBlocklist"."accountId" IN (' + blockerIdsString + ')'
105}
106
107function buildServerIdsFollowedBy (actorId: any) {
108 const actorIdNumber = parseInt(actorId + '', 10)
109
110 return '(' +
111 'SELECT "actor"."serverId" FROM "actorFollow" ' +
112 'INNER JOIN "actor" ON actor.id = "actorFollow"."targetActorId" ' +
113 'WHERE "actorFollow"."actorId" = ' + actorIdNumber +
114 ')'
115}
116
117function buildWhereIdOrUUID (id: number | string) {
118 return validator.isInt('' + id) ? { id } : { uuid: id }
119}
120
121function parseAggregateResult (result: any) {
122 if (!result) return 0
123
124 const total = parseInt(result + '', 10)
125 if (isNaN(total)) return 0
126
127 return total
128}
129
130const createSafeIn = (model: typeof Model, stringArr: string[]) => {
131 return stringArr.map(t => model.sequelize.escape(t))
132 .join(', ')
133}
134
135// ---------------------------------------------------------------------------
136
137export {
138 buildBlockedAccountSQL,
139 SortType,
140 getSort,
141 getVideoSort,
142 getSortOnModel,
143 createSimilarityAttribute,
144 throwIfNotValid,
145 buildServerIdsFollowedBy,
146 buildTrigramSearchIndex,
147 buildWhereIdOrUUID,
148 isOutdated,
149 parseAggregateResult,
150 createSafeIn
151}
152
153// ---------------------------------------------------------------------------
154
155function searchTrigramNormalizeValue (value: string) {
156 return Sequelize.fn('lower', Sequelize.fn('immutable_unaccent', value))
157}
158
159function searchTrigramNormalizeCol (col: string) {
160 return Sequelize.fn('lower', Sequelize.fn('immutable_unaccent', Sequelize.col(col)))
161}
162
163function buildDirectionAndField (value: string) {
164 let field: string
165 let direction: 'ASC' | 'DESC'
166
167 if (value.substring(0, 1) === '-') {
168 direction = 'DESC'
169 field = value.substring(1)
170 } else {
171 direction = 'ASC'
172 field = value
173 }
174
175 return { direction, field }
176}