mirror of
https://github.com/grafana/grafana.git
synced 2025-01-06 14:13:11 -06:00
185442115c
* Chore: Remove angular dependency from data sources * Removes default export for time and template srvs Also uses @grafana/runtime versions of the interfaces where possible * Replace usage of internal templateSrv where possible * Use runtime templateSrv in a couple more places
236 lines
5.7 KiB
TypeScript
236 lines
5.7 KiB
TypeScript
import _ from 'lodash';
|
|
import { TemplateSrv } from '@grafana/runtime';
|
|
import { ScopedVars } from '@grafana/data';
|
|
|
|
export default class MysqlQuery {
|
|
target: any;
|
|
templateSrv: any;
|
|
scopedVars: any;
|
|
|
|
/** @ngInject */
|
|
constructor(target: any, templateSrv?: TemplateSrv, scopedVars?: ScopedVars) {
|
|
this.target = target;
|
|
this.templateSrv = templateSrv;
|
|
this.scopedVars = scopedVars;
|
|
|
|
target.format = target.format || 'time_series';
|
|
target.timeColumn = target.timeColumn || 'time';
|
|
target.metricColumn = target.metricColumn || 'none';
|
|
|
|
target.group = target.group || [];
|
|
target.where = target.where || [{ type: 'macro', name: '$__timeFilter', params: [] }];
|
|
target.select = target.select || [[{ type: 'column', params: ['value'] }]];
|
|
|
|
// handle pre query gui panels gracefully
|
|
if (!('rawQuery' in this.target)) {
|
|
if ('rawSql' in target) {
|
|
// pre query gui panel
|
|
target.rawQuery = true;
|
|
} else {
|
|
// new panel
|
|
target.rawQuery = false;
|
|
}
|
|
}
|
|
|
|
// give interpolateQueryStr access to this
|
|
this.interpolateQueryStr = this.interpolateQueryStr.bind(this);
|
|
}
|
|
|
|
// remove identifier quoting from identifier to use in metadata queries
|
|
unquoteIdentifier(value: string) {
|
|
if (value[0] === '"' && value[value.length - 1] === '"') {
|
|
return value.substring(1, value.length - 1).replace(/""/g, '"');
|
|
} else {
|
|
return value;
|
|
}
|
|
}
|
|
|
|
quoteIdentifier(value: string) {
|
|
return '"' + value.replace(/"/g, '""') + '"';
|
|
}
|
|
|
|
quoteLiteral(value: string) {
|
|
return "'" + value.replace(/'/g, "''") + "'";
|
|
}
|
|
|
|
escapeLiteral(value: any) {
|
|
return String(value).replace(/'/g, "''");
|
|
}
|
|
|
|
hasTimeGroup() {
|
|
return _.find(this.target.group, (g: any) => g.type === 'time');
|
|
}
|
|
|
|
hasMetricColumn() {
|
|
return this.target.metricColumn !== 'none';
|
|
}
|
|
|
|
interpolateQueryStr(value: string, variable: { multi: any; includeAll: any }, defaultFormatFn: any) {
|
|
// if no multi or include all do not regexEscape
|
|
if (!variable.multi && !variable.includeAll) {
|
|
return this.escapeLiteral(value);
|
|
}
|
|
|
|
if (typeof value === 'string') {
|
|
return this.quoteLiteral(value);
|
|
}
|
|
|
|
const escapedValues = _.map(value, this.quoteLiteral);
|
|
return escapedValues.join(',');
|
|
}
|
|
|
|
render(interpolate?: boolean) {
|
|
const target = this.target;
|
|
|
|
// new query with no table set yet
|
|
if (!this.target.rawQuery && !('table' in this.target)) {
|
|
return '';
|
|
}
|
|
|
|
if (!target.rawQuery) {
|
|
target.rawSql = this.buildQuery();
|
|
}
|
|
|
|
if (interpolate) {
|
|
return this.templateSrv.replace(target.rawSql, this.scopedVars, this.interpolateQueryStr);
|
|
} else {
|
|
return target.rawSql;
|
|
}
|
|
}
|
|
|
|
hasUnixEpochTimecolumn() {
|
|
return ['int', 'bigint', 'double'].indexOf(this.target.timeColumnType) > -1;
|
|
}
|
|
|
|
buildTimeColumn(alias = true) {
|
|
const timeGroup = this.hasTimeGroup();
|
|
let query;
|
|
let macro = '$__timeGroup';
|
|
|
|
if (timeGroup) {
|
|
let args;
|
|
if (timeGroup.params.length > 1 && timeGroup.params[1] !== 'none') {
|
|
args = timeGroup.params.join(',');
|
|
} else {
|
|
args = timeGroup.params[0];
|
|
}
|
|
if (this.hasUnixEpochTimecolumn()) {
|
|
macro = '$__unixEpochGroup';
|
|
}
|
|
if (alias) {
|
|
macro += 'Alias';
|
|
}
|
|
query = macro + '(' + this.target.timeColumn + ',' + args + ')';
|
|
} else {
|
|
query = this.target.timeColumn;
|
|
if (alias) {
|
|
query += ' AS "time"';
|
|
}
|
|
}
|
|
|
|
return query;
|
|
}
|
|
|
|
buildMetricColumn() {
|
|
if (this.hasMetricColumn()) {
|
|
return this.target.metricColumn + ' AS metric';
|
|
}
|
|
|
|
return '';
|
|
}
|
|
|
|
buildValueColumns() {
|
|
let query = '';
|
|
for (const column of this.target.select) {
|
|
query += ',\n ' + this.buildValueColumn(column);
|
|
}
|
|
|
|
return query;
|
|
}
|
|
|
|
buildValueColumn(column: any) {
|
|
let query = '';
|
|
|
|
const columnName: any = _.find(column, (g: any) => g.type === 'column');
|
|
query = columnName.params[0];
|
|
|
|
const aggregate: any = _.find(column, (g: any) => g.type === 'aggregate');
|
|
|
|
if (aggregate) {
|
|
const func = aggregate.params[0];
|
|
query = func + '(' + query + ')';
|
|
}
|
|
|
|
const alias: any = _.find(column, (g: any) => g.type === 'alias');
|
|
if (alias) {
|
|
query += ' AS ' + this.quoteIdentifier(alias.params[0]);
|
|
}
|
|
|
|
return query;
|
|
}
|
|
|
|
buildWhereClause() {
|
|
let query = '';
|
|
const conditions = _.map(this.target.where, (tag, index) => {
|
|
switch (tag.type) {
|
|
case 'macro':
|
|
return tag.name + '(' + this.target.timeColumn + ')';
|
|
break;
|
|
case 'expression':
|
|
return tag.params.join(' ');
|
|
break;
|
|
}
|
|
});
|
|
|
|
if (conditions.length > 0) {
|
|
query = '\nWHERE\n ' + conditions.join(' AND\n ');
|
|
}
|
|
|
|
return query;
|
|
}
|
|
|
|
buildGroupClause() {
|
|
let query = '';
|
|
let groupSection = '';
|
|
|
|
for (let i = 0; i < this.target.group.length; i++) {
|
|
const part = this.target.group[i];
|
|
if (i > 0) {
|
|
groupSection += ', ';
|
|
}
|
|
if (part.type === 'time') {
|
|
groupSection += '1';
|
|
} else {
|
|
groupSection += part.params[0];
|
|
}
|
|
}
|
|
|
|
if (groupSection.length) {
|
|
query = '\nGROUP BY ' + groupSection;
|
|
if (this.hasMetricColumn()) {
|
|
query += ',2';
|
|
}
|
|
}
|
|
return query;
|
|
}
|
|
|
|
buildQuery() {
|
|
let query = 'SELECT';
|
|
|
|
query += '\n ' + this.buildTimeColumn();
|
|
if (this.hasMetricColumn()) {
|
|
query += ',\n ' + this.buildMetricColumn();
|
|
}
|
|
query += this.buildValueColumns();
|
|
|
|
query += '\nFROM ' + this.target.table;
|
|
|
|
query += this.buildWhereClause();
|
|
query += this.buildGroupClause();
|
|
|
|
query += '\nORDER BY ' + this.buildTimeColumn(false);
|
|
|
|
return query;
|
|
}
|
|
}
|