The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
grafana/public/app/features/manage-dashboards/utils/validation.ts

59 lines
1.7 KiB

import { t } from 'i18next';
import { getBackendSrv } from '@grafana/runtime';
import { validationSrv } from '../services/ValidationSrv';
export const validateDashboardJson = (json: string) => {
let dashboard;
try {
dashboard = JSON.parse(json);
} catch (error) {
return t('dashboard.validation.invalid-json', 'Not valid JSON');
}
if (dashboard && dashboard.hasOwnProperty('tags')) {
if (Array.isArray(dashboard.tags)) {
const hasInvalidTag = dashboard.tags.some((tag: string) => typeof tag !== 'string');
if (hasInvalidTag) {
return t('dashboard.validation.tags-expected-strings', 'tags expected array of strings');
}
} else {
return t('dashboard.validation.tags-expected-array', 'tags expected array');
}
}
return true;
};
export const validateGcomDashboard = (gcomDashboard: string) => {
// From DashboardImportCtrl
const match = /(^\d+$)|dashboards\/(\d+)/.exec(gcomDashboard);
return match && (match[1] || match[2])
? true
: t('dashboard.validation.invalid-dashboard-id', 'Could not find a valid Grafana.com ID');
};
export const validateTitle = (newTitle: string, folderUid: string) => {
return validationSrv
.validateNewDashboardName(folderUid, newTitle)
.then(() => {
return true;
})
.catch((error) => {
if (error.type === 'EXISTING') {
return error.message;
}
});
};
export const validateUid = (value: string) => {
return getBackendSrv()
.get(`/api/dashboards/uid/${value}`)
.then((existingDashboard) => {
return `Dashboard named '${existingDashboard?.dashboard.title}' in folder '${existingDashboard?.meta.folderTitle}' has the same UID`;
})
.catch((error) => {
error.isHandled = true;
return true;
});
};