mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* Store passwords in secureJsonData * Revert unnecessary refactors * Fix for nil jsonSecureData value * Remove copied encryption code from migration * Fix wrong field reference * Remove migration and provisioning changes * Use password getters in datasource proxy * Refactor password handling in datasource configs * Add provisioning warnings * Update documentation * Remove migration command, moved to separate PR * Remove unused code * Set the upgrade version * Remove unused code * Remove double reference
73 lines
2.2 KiB
TypeScript
73 lines
2.2 KiB
TypeScript
import _ from 'lodash';
|
|
import {
|
|
createChangeHandler,
|
|
createResetHandler,
|
|
PasswordFieldEnum,
|
|
} from '../../../features/datasources/utils/passwordHandlers';
|
|
|
|
export class PostgresConfigCtrl {
|
|
static templateUrl = 'partials/config.html';
|
|
|
|
current: any;
|
|
datasourceSrv: any;
|
|
showTimescaleDBHelp: boolean;
|
|
onPasswordReset: ReturnType<typeof createResetHandler>;
|
|
onPasswordChange: ReturnType<typeof createChangeHandler>;
|
|
|
|
/** @ngInject */
|
|
constructor($scope, datasourceSrv) {
|
|
this.datasourceSrv = datasourceSrv;
|
|
this.current.jsonData.sslmode = this.current.jsonData.sslmode || 'verify-full';
|
|
this.current.jsonData.postgresVersion = this.current.jsonData.postgresVersion || 903;
|
|
this.showTimescaleDBHelp = false;
|
|
this.autoDetectFeatures();
|
|
this.onPasswordReset = createResetHandler(this, PasswordFieldEnum.Password);
|
|
this.onPasswordChange = createChangeHandler(this, PasswordFieldEnum.Password);
|
|
}
|
|
|
|
autoDetectFeatures() {
|
|
if (!this.current.id) {
|
|
return;
|
|
}
|
|
|
|
this.datasourceSrv.loadDatasource(this.current.name).then(ds => {
|
|
return ds.getVersion().then(version => {
|
|
version = Number(version[0].text);
|
|
|
|
// timescaledb is only available for 9.6+
|
|
if (version >= 906) {
|
|
ds.getTimescaleDBVersion().then(version => {
|
|
if (version.length === 1) {
|
|
this.current.jsonData.timescaledb = true;
|
|
}
|
|
});
|
|
}
|
|
|
|
const major = Math.trunc(version / 100);
|
|
const minor = version % 100;
|
|
let name = String(major);
|
|
if (version < 1000) {
|
|
name = String(major) + '.' + String(minor);
|
|
}
|
|
if (!_.find(this.postgresVersions, (p: any) => p.value === version)) {
|
|
this.postgresVersions.push({ name: name, value: version });
|
|
}
|
|
this.current.jsonData.postgresVersion = version;
|
|
});
|
|
});
|
|
}
|
|
|
|
toggleTimescaleDBHelp() {
|
|
this.showTimescaleDBHelp = !this.showTimescaleDBHelp;
|
|
}
|
|
|
|
// the value portion is derived from postgres server_version_num/100
|
|
postgresVersions = [
|
|
{ name: '9.3', value: 903 },
|
|
{ name: '9.4', value: 904 },
|
|
{ name: '9.5', value: 905 },
|
|
{ name: '9.6', value: 906 },
|
|
{ name: '10', value: 1000 },
|
|
];
|
|
}
|