1
0
Fork 0
peertube/server/models/shared/abstract-run-query.ts

33 lines
782 B
TypeScript
Raw Normal View History

2021-06-10 12:43:55 +00:00
import { QueryTypes, Sequelize, Transaction } from 'sequelize'
2021-06-10 14:57:13 +00:00
/**
*
* Abstract builder to run video SQL queries
2021-06-10 14:57:13 +00:00
*
*/
2021-11-02 10:00:40 +00:00
export class AbstractRunQuery {
2021-06-10 12:43:55 +00:00
protected query: string
protected replacements: any = {}
2022-03-03 09:23:44 +00:00
constructor (protected readonly sequelize: Sequelize) {
}
protected runQuery (options: { nest?: boolean, transaction?: Transaction, logging?: boolean } = {}) {
2021-06-11 12:09:33 +00:00
const queryOptions = {
transaction: options.transaction,
logging: options.logging,
2021-06-10 12:43:55 +00:00
replacements: this.replacements,
type: QueryTypes.SELECT as QueryTypes.SELECT,
2022-03-03 09:23:44 +00:00
nest: options.nest ?? false
2021-06-10 12:43:55 +00:00
}
2021-06-11 12:09:33 +00:00
return this.sequelize.query<any>(this.query, queryOptions)
2021-06-10 12:43:55 +00:00
}
protected buildSelect (entities: string[]) {
return `SELECT ${entities.join(', ')} `
}
2021-06-10 12:43:55 +00:00
}