mirror of
https://github.com/grafana/grafana.git
synced 2025-01-02 12:17:01 -06:00
64 lines
1.9 KiB
Go
64 lines
1.9 KiB
Go
package setting
|
|
|
|
import (
|
|
"errors"
|
|
|
|
sdkproxy "github.com/grafana/grafana-plugin-sdk-go/backend/proxy"
|
|
"gopkg.in/ini.v1"
|
|
)
|
|
|
|
type SecureSocksDSProxySettings struct {
|
|
Enabled bool
|
|
ShowUI bool
|
|
ClientCert string
|
|
ClientKey string
|
|
RootCA string
|
|
ProxyAddress string
|
|
ServerName string
|
|
}
|
|
|
|
func readSecureSocksDSProxySettings(iniFile *ini.File) (SecureSocksDSProxySettings, error) {
|
|
s := SecureSocksDSProxySettings{}
|
|
secureSocksProxySection := iniFile.Section("secure_socks_datasource_proxy")
|
|
s.Enabled = secureSocksProxySection.Key("enabled").MustBool(false)
|
|
s.ClientCert = secureSocksProxySection.Key("client_cert").MustString("")
|
|
s.ClientKey = secureSocksProxySection.Key("client_key").MustString("")
|
|
s.RootCA = secureSocksProxySection.Key("root_ca_cert").MustString("")
|
|
s.ProxyAddress = secureSocksProxySection.Key("proxy_address").MustString("")
|
|
s.ServerName = secureSocksProxySection.Key("server_name").MustString("")
|
|
s.ShowUI = secureSocksProxySection.Key("show_ui").MustBool(true)
|
|
|
|
if !s.Enabled {
|
|
return s, nil
|
|
}
|
|
|
|
// all fields must be specified to use the proxy
|
|
if s.RootCA == "" {
|
|
return s, errors.New("rootCA required")
|
|
} else if s.ClientCert == "" || s.ClientKey == "" {
|
|
return s, errors.New("client key pair required")
|
|
} else if s.ServerName == "" {
|
|
return s, errors.New("server name required")
|
|
} else if s.ProxyAddress == "" {
|
|
return s, errors.New("proxy address required")
|
|
}
|
|
|
|
setDefaultProxyCli(s)
|
|
|
|
return s, nil
|
|
}
|
|
|
|
// setDefaultProxyCli overrides the default proxy cli for the sdk
|
|
//
|
|
// Note: Not optimal changing global state, but hard to not do in this case.
|
|
func setDefaultProxyCli(cfg SecureSocksDSProxySettings) {
|
|
sdkproxy.Cli = sdkproxy.NewWithCfg(&sdkproxy.ClientCfg{
|
|
Enabled: cfg.Enabled,
|
|
ClientCert: cfg.ClientCert,
|
|
ClientKey: cfg.ClientKey,
|
|
ServerName: cfg.ServerName,
|
|
RootCA: cfg.RootCA,
|
|
ProxyAddress: cfg.ProxyAddress,
|
|
})
|
|
}
|