]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/models/shared/abstract-run-query.ts
Merge branch 'release/4.1.0' into develop
[github/Chocobozzz/PeerTube.git] / server / models / shared / abstract-run-query.ts
1 import { QueryTypes, Sequelize, Transaction } from 'sequelize'
2
3 /**
4 *
5 * Abstact builder to run video SQL queries
6 *
7 */
8
9 export class AbstractRunQuery {
10 protected query: string
11 protected replacements: any = {}
12
13 constructor (protected readonly sequelize: Sequelize) {
14
15 }
16
17 protected runQuery (options: { nest?: boolean, transaction?: Transaction, logging?: boolean } = {}) {
18 const queryOptions = {
19 transaction: options.transaction,
20 logging: options.logging,
21 replacements: this.replacements,
22 type: QueryTypes.SELECT as QueryTypes.SELECT,
23 nest: options.nest ?? false
24 }
25
26 return this.sequelize.query<any>(this.query, queryOptions)
27 }
28 }