blob: 7524ef8296a6cf164a8d242d7b31ecee2d33791b [file]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import {
DataQueryRequest,
DataQueryResponse,
DataSourceApi,
DataSourceInstanceSettings,
MetricFindValue,
toDataFrame,
} from '@grafana/data';
import { IoTDBOptions, IoTDBQuery } from './types';
import { toMetricFindValue } from './functions';
import { getBackendSrv, getTemplateSrv } from '@grafana/runtime';
export class DataSource extends DataSourceApi<IoTDBQuery, IoTDBOptions> {
username: string;
password: string;
url: string;
constructor(instanceSettings: DataSourceInstanceSettings<IoTDBOptions>) {
super(instanceSettings);
this.url = instanceSettings.jsonData.url;
this.password = instanceSettings.jsonData.password;
this.username = instanceSettings.jsonData.username;
}
async query(options: DataQueryRequest<IoTDBQuery>): Promise<DataQueryResponse> {
const { range } = options;
const dataFrames = options.targets.map((target) => {
target.startTime = range!.from.valueOf();
target.endTime = range!.to.valueOf();
if (options) {
target.prefixPath.map(
(_, index) =>
(target.prefixPath[index] = getTemplateSrv().replace(target.prefixPath[index], options.scopedVars))
);
target.expression.map(
(_, index) =>
(target.expression[index] = getTemplateSrv().replace(target.expression[index], options.scopedVars))
);
if (target.condition) {
target.condition = getTemplateSrv().replace(target.condition, options.scopedVars);
}
if (target.control) {
target.control = getTemplateSrv().replace(target.control, options.scopedVars);
}
}
//target.paths = ['root', ...target.paths];
return this.doRequest(target);
});
return Promise.all(dataFrames)
.then((a) => a.reduce((accumulator, value) => accumulator.concat(value), []))
.then((data) => ({ data }));
}
async doRequest(query: IoTDBQuery) {
const myHeader = new Headers();
let reqURL = '/grafana/v1/query/expression';
myHeader.append('Content-Type', 'application/json');
const Authorization = 'Basic ' + Buffer.from(this.username + ':' + this.password).toString('base64');
myHeader.append('Authorization', Authorization);
return await getBackendSrv()
.datasourceRequest({
method: 'POST',
url: this.url + reqURL,
data: JSON.stringify(query),
headers: myHeader,
})
.then((response) => response.data)
.then((a) => {
if (a.hasOwnProperty('expressions') && a.expressions !== null) {
let dataframes: any = [];
a.expressions.map((v: any, index: any) => {
let datapoints: any = [];
if (a.timestamps !== null) {
a.timestamps.map((time: any, i: any) => {
datapoints[i] = [a.values[index][i], time];
});
dataframes[index] = { target: v, datapoints: datapoints };
}
dataframes[index] = { target: v, datapoints: datapoints };
});
return dataframes.map(toDataFrame);
} else if (a.hasOwnProperty('expressions')) {
let dataframes: any = [];
return dataframes.map(toDataFrame);
} else if (a.hasOwnProperty('code')) {
throw a.message;
} else {
throw 'the result is not object';
}
});
}
metricFindQuery(query: any, options?: any): Promise<MetricFindValue[]> {
query = getTemplateSrv().replace(query, options.scopedVars);
const sql = { sql: query };
return this.getVariablesResult(sql);
}
async getVariablesResult(sql: object) {
const myHeader = new Headers();
myHeader.append('Content-Type', 'application/json');
const Authorization = 'Basic ' + Buffer.from(this.username + ':' + this.password).toString('base64');
myHeader.append('Authorization', Authorization);
return await getBackendSrv()
.datasourceRequest({
method: 'POST',
url: this.url + '/grafana/v1/variable',
data: sql,
headers: myHeader,
})
.then((response) => {
if (response.data instanceof Array) {
return response.data;
} else {
throw 'the result is not array';
}
})
.then((data) => data.map(toMetricFindValue));
}
async testDatasource() {
const myHeader = new Headers();
myHeader.append('Content-Type', 'application/json');
const Authorization = 'Basic ' + Buffer.from(this.username + ':' + this.password).toString('base64');
myHeader.append('Authorization', Authorization);
const response = getBackendSrv().datasourceRequest({
url: this.url + '/grafana/v1/login',
method: 'GET',
headers: myHeader,
});
let status = '';
let message = '';
await response.then((res) => {
if (res.data.code === 200) {
status = 'success';
message = 'Success';
} else {
status = 'error';
message = res.data.message;
}
});
return {
status: status,
message: message,
};
}
}