import { map as _map } from 'lodash'; import { lastValueFrom, of } from 'rxjs'; import { catchError, map, mapTo } from 'rxjs/operators'; import { AnnotationEvent, DataSourceInstanceSettings, MetricFindValue, ScopedVars } from '@grafana/data'; import { BackendDataSourceResponse, DataSourceWithBackend, FetchResponse, getBackendSrv } from '@grafana/runtime'; import { toTestingStatus } from '@grafana/runtime/src/utils/queryResponse'; import { getTemplateSrv, TemplateSrv } from 'app/features/templating/template_srv'; import MySQLQueryModel from 'app/plugins/datasource/mysql/mysql_query_model'; import { getSearchFilterScopedVar } from '../../../features/variables/utils'; import ResponseParser from './response_parser'; import { MySQLOptions, MySQLQuery, MysqlQueryForInterpolation } from './types'; export class MysqlDatasource extends DataSourceWithBackend { id: any; name: any; responseParser: ResponseParser; queryModel: MySQLQueryModel; interval: string; constructor( instanceSettings: DataSourceInstanceSettings, private readonly templateSrv: TemplateSrv = getTemplateSrv() ) { super(instanceSettings); this.name = instanceSettings.name; this.id = instanceSettings.id; this.responseParser = new ResponseParser(); this.queryModel = new MySQLQueryModel({}); const settingsData = instanceSettings.jsonData || ({} as MySQLOptions); this.interval = settingsData.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.getRef(), rawSql: this.templateSrv.replace(query.rawSql, scopedVars, this.interpolateVariable), rawQuery: true, }; return expandedQuery; }); } return expandedQueries; } filterQuery(query: MySQLQuery): boolean { return !query.hide; } applyTemplateVariables(target: MySQLQuery, scopedVars: ScopedVars): Record { const queryModel = new MySQLQueryModel(target, this.templateSrv, scopedVars); return { refId: target.refId, datasource: this.getRef(), rawSql: queryModel.render(this.interpolateVariable as any), format: target.format, }; } async annotationQuery(options: any): Promise { if (!options.annotation.rawQuery) { return Promise.reject({ message: 'Query missing in annotation definition', }); } const query = { refId: options.annotation.name, datasource: this.getRef(), rawSql: this.templateSrv.replace(options.annotation.rawQuery, options.scopedVars, this.interpolateVariable), format: 'table', }; return lastValueFrom( getBackendSrv() .fetch({ url: '/api/ds/query', method: 'POST', data: { from: options.range.from.valueOf().toString(), to: options.range.to.valueOf().toString(), queries: [query], }, requestId: options.annotation.name, }) .pipe( map( async (res: FetchResponse) => await this.responseParser.transformAnnotationResponse(options, res.data) ) ) ); } 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, datasource: this.getRef(), rawSql, format: 'table', }; const range = optionalOptions?.range; return lastValueFrom( getBackendSrv() .fetch({ url: '/api/ds/query', method: 'POST', data: { from: range?.from?.valueOf()?.toString(), to: range?.to?.valueOf()?.toString(), queries: [interpolatedQuery], }, requestId: refId, }) .pipe( map((rsp) => { return this.responseParser.transformMetricFindResponse(rsp); }), catchError((err) => { return of([]); }) ) ); } testDatasource(): Promise { return lastValueFrom( getBackendSrv() .fetch({ url: '/api/ds/query', method: 'POST', data: { from: '5m', to: 'now', queries: [ { refId: 'A', intervalMs: 1, maxDataPoints: 1, datasource: this.getRef(), rawSql: 'SELECT 1', format: 'table', }, ], }, }) .pipe( mapTo({ status: 'success', message: 'Database Connection OK' }), catchError((err) => { return of(toTestingStatus(err)); }) ) ); } targetContainsTemplate(target: any) { let rawSql = ''; if (target.rawQuery) { rawSql = target.rawSql; } else { const query = new MySQLQueryModel(target); rawSql = query.buildQuery(); } rawSql = rawSql.replace('$__', ''); return this.templateSrv.containsTemplate(rawSql); } }