2021-05-12 08:09:04 -04:00
|
|
|
import { literal, Op, OrderItem, Sequelize } from 'sequelize'
|
2019-04-18 05:28:17 -04:00
|
|
|
import { Col } from 'sequelize/types/lib/utils'
|
2020-12-01 09:08:59 -05:00
|
|
|
import validator from 'validator'
|
2018-07-19 10:17:54 -04:00
|
|
|
|
2019-09-04 10:23:37 -04:00
|
|
|
type SortType = { sortModel: string, sortValue: string }
|
2018-08-14 09:28:30 -04:00
|
|
|
|
2018-08-31 11:18:13 -04:00
|
|
|
// Translate for example "-name" to [ [ 'name', 'DESC' ], [ 'id', 'ASC' ] ]
|
2019-04-18 05:28:17 -04:00
|
|
|
function getSort (value: string, lastSort: OrderItem = [ 'id', 'ASC' ]): OrderItem[] {
|
|
|
|
const { direction, field } = buildDirectionAndField(value)
|
|
|
|
|
|
|
|
let finalField: string | Col
|
2018-08-31 11:32:35 -04:00
|
|
|
|
|
|
|
if (field.toLowerCase() === 'match') { // Search
|
2019-04-18 05:28:17 -04:00
|
|
|
finalField = Sequelize.col('similarity')
|
2019-07-25 05:15:03 -04:00
|
|
|
} else if (field === 'videoQuotaUsed') { // Users list
|
|
|
|
finalField = Sequelize.col('videoQuotaUsed')
|
2019-04-18 05:28:17 -04:00
|
|
|
} else {
|
|
|
|
finalField = field
|
2018-08-31 11:32:35 -04:00
|
|
|
}
|
2016-08-16 16:31:45 -04:00
|
|
|
|
2019-04-18 05:28:17 -04:00
|
|
|
return [ [ finalField, direction ], lastSort ]
|
2018-08-31 11:18:13 -04:00
|
|
|
}
|
|
|
|
|
2020-12-01 09:08:59 -05:00
|
|
|
function getPlaylistSort (value: string, lastSort: OrderItem = [ 'id', 'ASC' ]): OrderItem[] {
|
|
|
|
const { direction, field } = buildDirectionAndField(value)
|
|
|
|
|
|
|
|
if (field.toLowerCase() === 'name') {
|
|
|
|
return [ [ 'displayName', direction ], lastSort ]
|
|
|
|
}
|
|
|
|
|
|
|
|
return getSort(value, lastSort)
|
|
|
|
}
|
|
|
|
|
2019-12-27 11:02:34 -05:00
|
|
|
function getCommentSort (value: string, lastSort: OrderItem = [ 'id', 'ASC' ]): OrderItem[] {
|
|
|
|
const { direction, field } = buildDirectionAndField(value)
|
|
|
|
|
|
|
|
if (field === 'totalReplies') {
|
|
|
|
return [
|
|
|
|
[ Sequelize.literal('"totalReplies"'), direction ],
|
|
|
|
lastSort
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
return getSort(value, lastSort)
|
|
|
|
}
|
|
|
|
|
2019-04-18 05:28:17 -04:00
|
|
|
function getVideoSort (value: string, lastSort: OrderItem = [ 'id', 'ASC' ]): OrderItem[] {
|
|
|
|
const { direction, field } = buildDirectionAndField(value)
|
2016-08-16 16:31:45 -04:00
|
|
|
|
2019-04-18 05:28:17 -04:00
|
|
|
if (field.toLowerCase() === 'trending') { // Sort by aggregation
|
2018-08-31 11:18:13 -04:00
|
|
|
return [
|
|
|
|
[ Sequelize.fn('COALESCE', Sequelize.fn('SUM', Sequelize.col('VideoViews.views')), '0'), direction ],
|
|
|
|
|
|
|
|
[ Sequelize.col('VideoModel.views'), direction ],
|
|
|
|
|
2021-02-26 08:08:09 -05:00
|
|
|
lastSort
|
|
|
|
]
|
|
|
|
} else if (field === 'publishedAt') {
|
|
|
|
return [
|
|
|
|
[ 'ScheduleVideoUpdate', 'updateAt', direction + ' NULLS LAST' ],
|
|
|
|
|
|
|
|
[ Sequelize.col('VideoModel.publishedAt'), direction ],
|
|
|
|
|
2018-08-31 11:18:13 -04:00
|
|
|
lastSort
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2019-04-18 05:28:17 -04:00
|
|
|
let finalField: string | Col
|
|
|
|
|
|
|
|
// Alias
|
|
|
|
if (field.toLowerCase() === 'match') { // Search
|
|
|
|
finalField = Sequelize.col('similarity')
|
|
|
|
} else {
|
|
|
|
finalField = field
|
|
|
|
}
|
|
|
|
|
2021-10-22 10:39:37 -04:00
|
|
|
const firstSort: OrderItem = typeof finalField === 'string'
|
|
|
|
? finalField.split('.').concat([ direction ]) as OrderItem
|
2019-04-18 05:28:17 -04:00
|
|
|
: [ finalField, direction ]
|
2018-12-18 05:52:20 -05:00
|
|
|
|
|
|
|
return [ firstSort, lastSort ]
|
2016-08-16 16:31:45 -04:00
|
|
|
}
|
|
|
|
|
2019-09-04 10:23:37 -04:00
|
|
|
function getBlacklistSort (model: any, value: string, lastSort: OrderItem = [ 'id', 'ASC' ]): OrderItem[] {
|
2019-04-18 05:28:17 -04:00
|
|
|
const [ firstSort ] = getSort(value)
|
2017-09-22 03:13:43 -04:00
|
|
|
|
2021-10-22 10:39:37 -04:00
|
|
|
if (model) return [ [ literal(`"${model}.${firstSort[0]}" ${firstSort[1]}`) ], lastSort ] as OrderItem[]
|
2018-02-19 03:41:03 -05:00
|
|
|
return [ firstSort, lastSort ]
|
2017-09-22 03:13:43 -04:00
|
|
|
}
|
|
|
|
|
2019-11-29 05:16:43 -05:00
|
|
|
function getFollowsSort (value: string, lastSort: OrderItem = [ 'id', 'ASC' ]): OrderItem[] {
|
|
|
|
const { direction, field } = buildDirectionAndField(value)
|
|
|
|
|
|
|
|
if (field === 'redundancyAllowed') {
|
|
|
|
return [
|
|
|
|
[ 'ActorFollowing', 'Server', 'redundancyAllowed', direction ],
|
|
|
|
lastSort
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
return getSort(value, lastSort)
|
|
|
|
}
|
|
|
|
|
2019-03-19 09:13:53 -04:00
|
|
|
function isOutdated (model: { createdAt: Date, updatedAt: Date }, refreshInterval: number) {
|
2021-06-02 09:47:05 -04:00
|
|
|
if (!model.createdAt || !model.updatedAt) {
|
|
|
|
throw new Error('Miss createdAt & updatedAt attribuets to model')
|
|
|
|
}
|
|
|
|
|
2019-03-19 09:13:53 -04:00
|
|
|
const now = Date.now()
|
|
|
|
const createdAtTime = model.createdAt.getTime()
|
|
|
|
const updatedAtTime = model.updatedAt.getTime()
|
|
|
|
|
|
|
|
return (now - createdAtTime) > refreshInterval && (now - updatedAtTime) > refreshInterval
|
|
|
|
}
|
|
|
|
|
2019-04-18 05:28:17 -04:00
|
|
|
function throwIfNotValid (value: any, validator: (value: any) => boolean, fieldName = 'value', nullable = false) {
|
|
|
|
if (nullable && (value === null || value === undefined)) return
|
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
if (validator(value) === false) {
|
|
|
|
throw new Error(`"${value}" is not a valid ${fieldName}.`)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-19 10:17:54 -04:00
|
|
|
function buildTrigramSearchIndex (indexName: string, attribute: string) {
|
|
|
|
return {
|
|
|
|
name: indexName,
|
2020-12-08 08:30:29 -05:00
|
|
|
// FIXME: gin_trgm_ops is not taken into account in Sequelize 6, so adding it ourselves in the literal function
|
|
|
|
fields: [ Sequelize.literal('lower(immutable_unaccent(' + attribute + ')) gin_trgm_ops') as any ],
|
2018-07-19 10:17:54 -04:00
|
|
|
using: 'gin',
|
|
|
|
operator: 'gin_trgm_ops'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function createSimilarityAttribute (col: string, value: string) {
|
|
|
|
return Sequelize.fn(
|
|
|
|
'similarity',
|
|
|
|
|
|
|
|
searchTrigramNormalizeCol(col),
|
|
|
|
|
|
|
|
searchTrigramNormalizeValue(value)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-05-22 11:06:26 -04:00
|
|
|
function buildBlockedAccountSQL (blockerIds: number[]) {
|
2018-10-12 09:26:04 -04:00
|
|
|
const blockerIdsString = blockerIds.join(', ')
|
|
|
|
|
2019-02-26 04:55:40 -05:00
|
|
|
return 'SELECT "targetAccountId" AS "id" FROM "accountBlocklist" WHERE "accountId" IN (' + blockerIdsString + ')' +
|
2021-02-19 03:50:13 -05:00
|
|
|
' UNION ' +
|
2018-10-12 09:26:04 -04:00
|
|
|
'SELECT "account"."id" AS "id" FROM account INNER JOIN "actor" ON account."actorId" = actor.id ' +
|
|
|
|
'INNER JOIN "serverBlocklist" ON "actor"."serverId" = "serverBlocklist"."targetServerId" ' +
|
|
|
|
'WHERE "serverBlocklist"."accountId" IN (' + blockerIdsString + ')'
|
2019-02-26 04:55:40 -05:00
|
|
|
}
|
|
|
|
|
2020-08-20 02:52:16 -04:00
|
|
|
function buildBlockedAccountSQLOptimized (columnNameJoin: string, blockerIds: number[]) {
|
|
|
|
const blockerIdsString = blockerIds.join(', ')
|
|
|
|
|
|
|
|
return [
|
|
|
|
literal(
|
|
|
|
`NOT EXISTS (` +
|
|
|
|
` SELECT 1 FROM "accountBlocklist" ` +
|
|
|
|
` WHERE "targetAccountId" = ${columnNameJoin} ` +
|
|
|
|
` AND "accountId" IN (${blockerIdsString})` +
|
|
|
|
`)`
|
|
|
|
),
|
|
|
|
|
|
|
|
literal(
|
|
|
|
`NOT EXISTS (` +
|
|
|
|
` SELECT 1 FROM "account" ` +
|
|
|
|
` INNER JOIN "actor" ON account."actorId" = actor.id ` +
|
|
|
|
` INNER JOIN "serverBlocklist" ON "actor"."serverId" = "serverBlocklist"."targetServerId" ` +
|
|
|
|
` WHERE "account"."id" = ${columnNameJoin} ` +
|
|
|
|
` AND "serverBlocklist"."accountId" IN (${blockerIdsString})` +
|
|
|
|
`)`
|
|
|
|
)
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2019-02-26 04:55:40 -05:00
|
|
|
function buildServerIdsFollowedBy (actorId: any) {
|
|
|
|
const actorIdNumber = parseInt(actorId + '', 10)
|
|
|
|
|
|
|
|
return '(' +
|
|
|
|
'SELECT "actor"."serverId" FROM "actorFollow" ' +
|
|
|
|
'INNER JOIN "actor" ON actor.id = "actorFollow"."targetActorId" ' +
|
|
|
|
'WHERE "actorFollow"."actorId" = ' + actorIdNumber +
|
2020-01-31 10:56:52 -05:00
|
|
|
')'
|
2019-02-26 04:55:40 -05:00
|
|
|
}
|
2018-10-12 09:26:04 -04:00
|
|
|
|
2019-02-26 04:55:40 -05:00
|
|
|
function buildWhereIdOrUUID (id: number | string) {
|
|
|
|
return validator.isInt('' + id) ? { id } : { uuid: id }
|
2018-10-12 09:26:04 -04:00
|
|
|
}
|
|
|
|
|
2019-04-23 03:50:57 -04:00
|
|
|
function parseAggregateResult (result: any) {
|
|
|
|
if (!result) return 0
|
|
|
|
|
|
|
|
const total = parseInt(result + '', 10)
|
|
|
|
if (isNaN(total)) return 0
|
|
|
|
|
|
|
|
return total
|
|
|
|
}
|
|
|
|
|
2021-05-12 08:09:04 -04:00
|
|
|
function createSafeIn (sequelize: Sequelize, stringArr: (string | number)[]) {
|
2020-03-05 09:04:57 -05:00
|
|
|
return stringArr.map(t => {
|
|
|
|
return t === null
|
|
|
|
? null
|
2021-05-12 08:09:04 -04:00
|
|
|
: sequelize.escape('' + t)
|
2020-03-05 09:04:57 -05:00
|
|
|
}).join(', ')
|
2019-06-19 08:55:58 -04:00
|
|
|
}
|
|
|
|
|
2019-08-06 11:19:53 -04:00
|
|
|
function buildLocalAccountIdsIn () {
|
|
|
|
return literal(
|
|
|
|
'(SELECT "account"."id" FROM "account" INNER JOIN "actor" ON "actor"."id" = "account"."actorId" AND "actor"."serverId" IS NULL)'
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
function buildLocalActorIdsIn () {
|
|
|
|
return literal(
|
|
|
|
'(SELECT "actor"."id" FROM "actor" WHERE "actor"."serverId" IS NULL)'
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-03-05 09:04:57 -05:00
|
|
|
function buildDirectionAndField (value: string) {
|
|
|
|
let field: string
|
|
|
|
let direction: 'ASC' | 'DESC'
|
|
|
|
|
|
|
|
if (value.substring(0, 1) === '-') {
|
|
|
|
direction = 'DESC'
|
|
|
|
field = value.substring(1)
|
|
|
|
} else {
|
|
|
|
direction = 'ASC'
|
|
|
|
field = value
|
|
|
|
}
|
|
|
|
|
|
|
|
return { direction, field }
|
|
|
|
}
|
|
|
|
|
2020-05-06 11:39:07 -04:00
|
|
|
function searchAttribute (sourceField?: string, targetField?: string) {
|
|
|
|
if (!sourceField) return {}
|
2020-05-02 16:38:18 -04:00
|
|
|
|
|
|
|
return {
|
2020-05-06 11:39:07 -04:00
|
|
|
[targetField]: {
|
2022-01-14 08:15:23 -05:00
|
|
|
// FIXME: ts error
|
|
|
|
[Op.iLike as any]: `%${sourceField}%`
|
2020-05-06 11:39:07 -04:00
|
|
|
}
|
2020-05-02 16:38:18 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-16 16:31:45 -04:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
export {
|
2018-10-12 09:26:04 -04:00
|
|
|
buildBlockedAccountSQL,
|
2020-08-20 02:52:16 -04:00
|
|
|
buildBlockedAccountSQLOptimized,
|
2019-08-06 11:19:53 -04:00
|
|
|
buildLocalActorIdsIn,
|
2020-12-01 09:08:59 -05:00
|
|
|
getPlaylistSort,
|
2018-08-14 09:28:30 -04:00
|
|
|
SortType,
|
2019-08-06 11:19:53 -04:00
|
|
|
buildLocalAccountIdsIn,
|
2017-09-22 03:13:43 -04:00
|
|
|
getSort,
|
2019-12-27 11:02:34 -05:00
|
|
|
getCommentSort,
|
2018-08-31 11:18:13 -04:00
|
|
|
getVideoSort,
|
2019-09-04 10:23:37 -04:00
|
|
|
getBlacklistSort,
|
2018-07-19 10:17:54 -04:00
|
|
|
createSimilarityAttribute,
|
|
|
|
throwIfNotValid,
|
2019-02-26 04:55:40 -05:00
|
|
|
buildServerIdsFollowedBy,
|
|
|
|
buildTrigramSearchIndex,
|
2019-03-19 09:13:53 -04:00
|
|
|
buildWhereIdOrUUID,
|
2019-04-23 03:50:57 -04:00
|
|
|
isOutdated,
|
2019-06-19 08:55:58 -04:00
|
|
|
parseAggregateResult,
|
2019-11-29 05:16:43 -05:00
|
|
|
getFollowsSort,
|
2020-03-05 09:04:57 -05:00
|
|
|
buildDirectionAndField,
|
2020-04-19 08:11:40 -04:00
|
|
|
createSafeIn,
|
2020-05-06 11:39:07 -04:00
|
|
|
searchAttribute
|
2018-07-19 10:17:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
function searchTrigramNormalizeValue (value: string) {
|
2018-07-26 04:45:10 -04:00
|
|
|
return Sequelize.fn('lower', Sequelize.fn('immutable_unaccent', value))
|
2018-07-19 10:17:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function searchTrigramNormalizeCol (col: string) {
|
|
|
|
return Sequelize.fn('lower', Sequelize.fn('immutable_unaccent', Sequelize.col(col)))
|
2017-05-15 16:22:03 -04:00
|
|
|
}
|