forked from grafana.jool/grafana-jool
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.
36 lines
1.4 KiB
36 lines
1.4 KiB
import {
|
|
createChangeHandler,
|
|
createResetHandler,
|
|
PasswordFieldEnum,
|
|
} from '../../../features/datasources/utils/passwordHandlers';
|
|
|
|
export class MssqlConfigCtrl {
|
|
static templateUrl = 'partials/config.html';
|
|
|
|
// Set through angular bindings
|
|
declare current: any;
|
|
|
|
onPasswordReset: ReturnType<typeof createResetHandler>;
|
|
onPasswordChange: ReturnType<typeof createChangeHandler>;
|
|
showUserCredentials: boolean;
|
|
|
|
/** @ngInject */
|
|
constructor($scope: any) {
|
|
this.current = $scope.ctrl.current;
|
|
this.current.jsonData.encrypt = this.current.jsonData.encrypt || 'false';
|
|
this.current.jsonData.authenticationType = this.current.jsonData.authenticationType || 'SQL Server Authentication';
|
|
this.onPasswordReset = createResetHandler(this, PasswordFieldEnum.Password);
|
|
this.onPasswordChange = createChangeHandler(this, PasswordFieldEnum.Password);
|
|
this.showUserCredentials = this.current.jsonData.authenticationType !== 'Windows Authentication';
|
|
}
|
|
|
|
onAuthenticationTypeChange() {
|
|
// This is using the fallback in https://github.com/denisenkom/go-mssqldb to use Windows Auth if login/user id is empty.
|
|
if (this.current.jsonData.authenticationType === 'Windows Authentication') {
|
|
this.current.user = '';
|
|
this.current.password = '';
|
|
}
|
|
|
|
this.showUserCredentials = this.current.jsonData.authenticationType !== 'Windows Authentication';
|
|
}
|
|
}
|
|
|