2021-06-10 08:43:55 -04:00
|
|
|
import { QueryTypes, Sequelize, Transaction } from 'sequelize'
|
|
|
|
|
2021-06-10 10:57:13 -04:00
|
|
|
/**
|
|
|
|
*
|
Fix various typos
Found via `codespell -q 3 -S ./CREDITS.md,./CHANGELOG.md,./client/src/locale,./yarn.lock,./client/yarn.lock -L doubleclick,followings,nd,ot,ro,serie,splitted,tread,truthy`
2022-06-07 09:45:06 -04:00
|
|
|
* Abstract builder to run video SQL queries
|
2021-06-10 10:57:13 -04:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2021-11-02 06:00:40 -04:00
|
|
|
export class AbstractRunQuery {
|
2021-06-10 08:43:55 -04:00
|
|
|
protected query: string
|
|
|
|
protected replacements: any = {}
|
|
|
|
|
2022-03-03 04:23:44 -05:00
|
|
|
constructor (protected readonly sequelize: Sequelize) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
protected runQuery (options: { nest?: boolean, transaction?: Transaction, logging?: boolean } = {}) {
|
2021-06-11 08:09:33 -04:00
|
|
|
const queryOptions = {
|
|
|
|
transaction: options.transaction,
|
|
|
|
logging: options.logging,
|
2021-06-10 08:43:55 -04:00
|
|
|
replacements: this.replacements,
|
|
|
|
type: QueryTypes.SELECT as QueryTypes.SELECT,
|
2022-03-03 04:23:44 -05:00
|
|
|
nest: options.nest ?? false
|
2021-06-10 08:43:55 -04:00
|
|
|
}
|
|
|
|
|
2021-06-11 08:09:33 -04:00
|
|
|
return this.sequelize.query<any>(this.query, queryOptions)
|
2021-06-10 08:43:55 -04:00
|
|
|
}
|
2022-05-05 04:29:35 -04:00
|
|
|
|
|
|
|
protected buildSelect (entities: string[]) {
|
|
|
|
return `SELECT ${entities.join(', ')} `
|
|
|
|
}
|
2021-06-10 08:43:55 -04:00
|
|
|
}
|