import _ from 'lodash'; import { Observable, of } from 'rxjs'; import { catchError, map, mapTo } from 'rxjs/operators'; import { getBackendSrv } from '@grafana/runtime'; import { ScopedVars } from '@grafana/data'; import { TemplateSrv } from 'app/features/templating/template_srv'; import { TimeSrv } from 'app/features/dashboard/services/TimeSrv'; import MysqlQuery from 'app/plugins/datasource/mysql/mysql_query'; import ResponseParser, { MysqlResponse } from './response_parser'; import { MysqlMetricFindValue, MysqlQueryForInterpolation } from './types'; import { getSearchFilterScopedVar } from '../../../features/variables/utils'; export class MysqlDatasource { id: any; name: any; responseParser: ResponseParser; queryModel: MysqlQuery; interval: string; /** @ngInject */ constructor(instanceSettings: any, private templateSrv: TemplateSrv, private timeSrv: TimeSrv) { this.name = instanceSettings.name; this.id = instanceSettings.id; this.responseParser = new ResponseParser(); this.queryModel = new MysqlQuery({}); this.interval = (instanceSettings.jsonData || {}).timeInterval || '1m'; } interpolateVariable = (value: string | string[] | number, variable: any) => { if (typeof value === 'string') { if (variable.multi || variable.includeAll) { const result = this.queryModel.quoteLiteral(value); return result; } else { return value; } } if (typeof value === 'number') { return value; } const quotedValues = _.map(value, (v: any) => { return this.queryModel.quoteLiteral(v); }); return quotedValues.join(','); }; interpolateVariablesInQueries( queries: MysqlQueryForInterpolation[], scopedVars: ScopedVars ): MysqlQueryForInterpolation[] { let expandedQueries = queries; if (queries && queries.length > 0) { expandedQueries = queries.map(query => { const expandedQuery = { ...query, datasource: this.name, rawSql: this.templateSrv.replace(query.rawSql, scopedVars, this.interpolateVariable), rawQuery: true, }; return expandedQuery; }); } return expandedQueries; } query(options: any): Observable { const queries = _.filter(options.targets, target => { return target.hide !== true; }).map(target => { const queryModel = new MysqlQuery(target, this.templateSrv, options.scopedVars); return { refId: target.refId, intervalMs: options.intervalMs, maxDataPoints: options.maxDataPoints, datasourceId: this.id, rawSql: queryModel.render(this.interpolateVariable as any), format: target.format, }; }); if (queries.length === 0) { return of({ data: [] }); } return getBackendSrv() .fetch({ url: '/api/tsdb/query', method: 'POST', data: { from: options.range.from.valueOf().toString(), to: options.range.to.valueOf().toString(), queries: queries, }, }) .pipe(map(this.responseParser.processQueryResult)); } annotationQuery(options: any) { if (!options.annotation.rawQuery) { return Promise.reject({ message: 'Query missing in annotation definition', }); } const query = { refId: options.annotation.name, datasourceId: this.id, rawSql: this.templateSrv.replace(options.annotation.rawQuery, options.scopedVars, this.interpolateVariable), format: 'table', }; return getBackendSrv() .fetch({ url: '/api/tsdb/query', method: 'POST', data: { from: options.range.from.valueOf().toString(), to: options.range.to.valueOf().toString(), queries: [query], }, }) .pipe(map((data: any) => this.responseParser.transformAnnotationResponse(options, data))) .toPromise(); } metricFindQuery(query: string, optionalOptions: any): Promise { let refId = 'tempvar'; if (optionalOptions && optionalOptions.variable && optionalOptions.variable.name) { refId = optionalOptions.variable.name; } const rawSql = this.templateSrv.replace( query, getSearchFilterScopedVar({ query, wildcardChar: '%', options: optionalOptions }), this.interpolateVariable ); const interpolatedQuery = { refId: refId, datasourceId: this.id, rawSql, format: 'table', }; const range = this.timeSrv.timeRange(); const data = { queries: [interpolatedQuery], from: range.from.valueOf().toString(), to: range.to.valueOf().toString(), }; if (optionalOptions && optionalOptions.range && optionalOptions.range.from) { data['from'] = optionalOptions.range.from.valueOf().toString(); } if (optionalOptions && optionalOptions.range && optionalOptions.range.to) { data['to'] = optionalOptions.range.to.valueOf().toString(); } return getBackendSrv() .fetch({ url: '/api/tsdb/query', method: 'POST', data: data, }) .pipe(map((data: any) => this.responseParser.parseMetricFindQueryResult(refId, data))) .toPromise(); } testDatasource() { return getBackendSrv() .fetch({ url: '/api/tsdb/query', method: 'POST', data: { from: '5m', to: 'now', queries: [ { refId: 'A', intervalMs: 1, maxDataPoints: 1, datasourceId: this.id, rawSql: 'SELECT 1', format: 'table', }, ], }, }) .pipe( mapTo({ status: 'success', message: 'Database Connection OK' }), catchError(err => { console.error(err); if (err.data && err.data.message) { return of({ status: 'error', message: err.data.message }); } else { return of({ status: 'error', message: err.status }); } }) ) .toPromise(); } targetContainsTemplate(target: any) { let rawSql = ''; if (target.rawQuery) { rawSql = target.rawSql; } else { const query = new MysqlQuery(target); rawSql = query.buildQuery(); } rawSql = rawSql.replace('$__', ''); return this.templateSrv.variableExists(rawSql); } }