2014-10-05 09:50:04 -05:00
// Copyright 2014 Unknwon
// Copyright 2014 Torkel Ödegaard
2014-10-04 06:33:20 -05:00
package setting
import (
2015-04-09 05:16:59 -05:00
"bytes"
2015-02-12 06:31:41 -06:00
"fmt"
2014-10-04 06:33:20 -05:00
"net/url"
"os"
"path"
"path/filepath"
2015-04-09 05:16:59 -05:00
"regexp"
2014-10-04 06:33:20 -05:00
"runtime"
"strings"
2015-01-27 03:09:54 -06:00
"gopkg.in/ini.v1"
2014-10-05 09:50:04 -05:00
2017-01-11 07:00:49 -06:00
"github.com/go-macaron/session"
2015-02-05 03:37:13 -06:00
"github.com/grafana/grafana/pkg/log"
2015-04-19 02:14:50 -05:00
"github.com/grafana/grafana/pkg/util"
2014-10-04 06:33:20 -05:00
)
type Scheme string
const (
2016-11-23 08:35:43 -06:00
HTTP Scheme = "http"
HTTPS Scheme = "https"
2017-04-27 01:54:21 -05:00
SOCKET Scheme = "socket"
2016-11-23 08:35:43 -06:00
DEFAULT_HTTP_ADDR string = "0.0.0.0"
2014-10-04 06:33:20 -05:00
)
2014-12-16 05:04:08 -06:00
const (
DEV string = "development"
PROD string = "production"
TEST string = "test"
)
2014-10-04 06:33:20 -05:00
var (
// App settings.
2016-06-02 07:32:17 -05:00
Env string = DEV
AppUrl string
AppSubUrl string
InstanceName string
2014-10-04 06:33:20 -05:00
2015-01-05 03:46:58 -06:00
// build
2018-04-27 06:41:58 -05:00
BuildVersion string
BuildCommit string
BuildStamp int64
Enterprise bool
ApplicationName string
2015-01-05 03:46:58 -06:00
2015-04-09 05:16:59 -05:00
// Paths
2017-12-07 08:14:57 -06:00
LogsPath string
HomePath string
DataPath string
PluginsPath string
ProvisioningPath string
CustomInitPath = "conf/custom.ini"
2015-04-09 05:16:59 -05:00
2014-10-04 06:33:20 -05:00
// Log settings.
2015-04-09 05:16:59 -05:00
LogModes [ ] string
2015-04-19 02:29:08 -05:00
LogConfigs [ ] util . DynMap
2014-10-04 06:33:20 -05:00
// Http server options
Protocol Scheme
Domain string
HttpAddr , HttpPort string
SshPort int
CertFile , KeyFile string
2017-04-27 01:54:21 -05:00
SocketPath string
2014-10-05 09:50:04 -05:00
RouterLogging bool
2017-01-11 09:51:46 -06:00
DataProxyLogging bool
2014-10-05 09:50:04 -05:00
StaticRootPath string
2015-01-14 03:34:14 -06:00
EnableGzip bool
2015-05-05 04:21:06 -05:00
EnforceDomain bool
2014-10-05 09:50:04 -05:00
2015-01-27 03:09:54 -06:00
// Security settings.
2018-01-26 03:41:41 -06:00
SecretKey string
LogInRememberDays int
CookieUserName string
CookieRememberName string
DisableGravatar bool
EmailCodeValidMinutes int
DataProxyWhiteList map [ string ] bool
DisableBruteForceLoginProtection bool
2015-01-27 03:09:54 -06:00
2015-10-14 09:39:57 -05:00
// Snapshots
2016-09-23 09:56:12 -05:00
ExternalSnapshotUrl string
ExternalSnapshotName string
ExternalEnabled bool
SnapShotRemoveExpired bool
2015-10-14 09:39:57 -05:00
2017-11-14 04:34:27 -06:00
// Dashboard history
DashboardVersionsToKeep int
2015-03-11 10:19:29 -05:00
// User settings
2017-07-31 07:39:33 -05:00
AllowUserSignUp bool
AllowUserOrgCreate bool
AutoAssignOrg bool
AutoAssignOrgRole string
VerifyEmailEnabled bool
LoginHint string
DefaultTheme string
DisableLoginForm bool
DisableSignoutMenu bool
ExternalUserMngLinkUrl string
ExternalUserMngLinkName string
ExternalUserMngInfo string
2017-12-13 11:53:42 -06:00
ViewersCanEdit bool
2015-01-27 08:14:53 -06:00
2015-01-07 09:37:24 -06:00
// Http auth
2015-01-27 08:45:27 -06:00
AdminUser string
AdminPassword string
2015-02-23 13:07:49 -06:00
AnonymousEnabled bool
AnonymousOrgName string
AnonymousOrgRole string
2015-01-07 09:37:24 -06:00
2015-05-01 04:55:59 -05:00
// Auth proxy settings
AuthProxyEnabled bool
AuthProxyHeaderName string
AuthProxyHeaderProperty string
AuthProxyAutoSignUp bool
2016-02-23 07:22:28 -06:00
AuthProxyLdapSyncTtl int
AuthProxyWhitelist string
2015-05-01 04:55:59 -05:00
2015-06-30 02:37:52 -05:00
// Basic Auth
BasicAuthEnabled bool
2017-09-28 05:10:59 -05:00
// Plugin settings
PluginAppsSkipVerifyTLS bool
2014-10-05 09:50:04 -05:00
// Session settings.
2018-03-15 15:23:33 -05:00
SessionOptions session . Options
SessionConnMaxLifetime int64
2014-10-04 06:33:20 -05:00
// Global setting objects.
2015-01-27 03:09:54 -06:00
Cfg * ini . File
2014-10-04 06:33:20 -05:00
ConfRootPath string
IsWindows bool
2014-10-06 14:31:54 -05:00
// PhantomJs Rendering
2016-09-28 14:06:00 -05:00
ImagesDir string
PhantomDir string
2015-03-03 03:18:24 -06:00
2015-04-09 05:16:59 -05:00
// for logging purposes
configFiles [ ] string
appliedCommandLineProperties [ ] string
appliedEnvOverrides [ ] string
2015-03-22 14:14:00 -05:00
2015-08-21 02:30:39 -05:00
ReportingEnabled bool
2016-04-11 11:21:48 -05:00
CheckForUpdates bool
2015-08-21 02:30:39 -05:00
GoogleAnalyticsId string
GoogleTagManagerId string
2015-06-04 02:34:42 -05:00
// LDAP
2016-10-07 01:49:58 -05:00
LdapEnabled bool
LdapConfigFile string
LdapAllowSignup bool = true
2015-07-10 04:10:48 -05:00
2015-06-04 07:29:39 -05:00
// SMTP email settings
Smtp SmtpSettings
2015-09-10 12:47:33 -05:00
// QUOTA
Quota QuotaSettings
2016-04-29 07:35:58 -05:00
// Alerting
2017-01-25 06:32:26 -06:00
AlertingEnabled bool
2017-01-20 09:43:29 -06:00
ExecuteAlerts bool
2016-06-07 06:31:56 -05:00
2018-04-27 04:39:14 -05:00
// Explore UI
ExploreEnabled bool
2016-06-07 02:29:47 -05:00
// logger
logger log . Logger
2016-06-16 01:06:43 -05:00
2016-05-27 06:52:19 -05:00
// Grafana.NET URL
2017-05-22 07:56:50 -05:00
GrafanaComUrl string
2016-07-30 06:36:21 -05:00
// S3 temp image store
S3TempImageStoreBucketUrl string
S3TempImageStoreAccessKey string
S3TempImageStoreSecretKey string
2016-08-10 10:27:39 -05:00
ImageUploadProvider string
2014-10-04 06:33:20 -05:00
)
2015-04-08 07:10:04 -05:00
type CommandLineArgs struct {
2015-04-12 02:15:49 -05:00
Config string
HomePath string
Args [ ] string
2015-04-08 07:10:04 -05:00
}
2014-10-04 06:33:20 -05:00
func init ( ) {
IsWindows = runtime . GOOS == "windows"
2016-06-07 02:29:47 -05:00
logger = log . New ( "settings" )
2015-01-01 08:29:10 -06:00
}
2014-10-04 06:33:20 -05:00
2015-01-27 03:09:54 -06:00
func parseAppUrlAndSubUrl ( section * ini . Section ) ( string , string ) {
appUrl := section . Key ( "root_url" ) . MustString ( "http://localhost:3000/" )
if appUrl [ len ( appUrl ) - 1 ] != '/' {
appUrl += "/"
}
// Check if has app suburl.
2015-01-30 07:21:32 -06:00
url , err := url . Parse ( appUrl )
2015-01-27 03:09:54 -06:00
if err != nil {
log . Fatal ( 4 , "Invalid root_url(%s): %s" , appUrl , err )
}
appSubUrl := strings . TrimSuffix ( url . Path , "/" )
return appUrl , appSubUrl
}
2015-02-06 07:17:40 -06:00
func ToAbsUrl ( relativeUrl string ) string {
2015-02-04 04:35:59 -06:00
return AppUrl + relativeUrl
}
2016-03-01 12:50:45 -06:00
func shouldRedactKey ( s string ) bool {
uppercased := strings . ToUpper ( s )
2016-08-27 02:50:35 -05:00
return strings . Contains ( uppercased , "PASSWORD" ) || strings . Contains ( uppercased , "SECRET" ) || strings . Contains ( uppercased , "PROVIDER_CONFIG" )
2016-03-01 12:50:45 -06:00
}
2016-06-28 11:37:59 -05:00
func shouldRedactURLKey ( s string ) bool {
uppercased := strings . ToUpper ( s )
return strings . Contains ( uppercased , "DATABASE_URL" )
}
2018-03-28 11:03:33 -05:00
func applyEnvVariableOverrides ( ) error {
2015-04-09 05:16:59 -05:00
appliedEnvOverrides = make ( [ ] string , 0 )
2015-02-12 06:31:41 -06:00
for _ , section := range Cfg . Sections ( ) {
for _ , key := range section . Keys ( ) {
sectionName := strings . ToUpper ( strings . Replace ( section . Name ( ) , "." , "_" , - 1 ) )
keyName := strings . ToUpper ( strings . Replace ( key . Name ( ) , "." , "_" , - 1 ) )
envKey := fmt . Sprintf ( "GF_%s_%s" , sectionName , keyName )
envValue := os . Getenv ( envKey )
if len ( envValue ) > 0 {
key . SetValue ( envValue )
2016-03-01 12:50:45 -06:00
if shouldRedactKey ( envKey ) {
2015-12-04 03:38:27 -06:00
envValue = "*********"
}
2016-06-28 11:37:59 -05:00
if shouldRedactURLKey ( envKey ) {
2018-03-28 11:03:33 -05:00
u , err := url . Parse ( envValue )
if err != nil {
return fmt . Errorf ( "could not parse environment variable. key: %s, value: %s. error: %v" , envKey , envValue , err )
}
2016-06-28 11:37:59 -05:00
ui := u . User
if ui != nil {
_ , exists := ui . Password ( )
if exists {
u . User = url . UserPassword ( ui . Username ( ) , "-redacted-" )
envValue = u . String ( )
}
}
}
2015-04-09 05:16:59 -05:00
appliedEnvOverrides = append ( appliedEnvOverrides , fmt . Sprintf ( "%s=%s" , envKey , envValue ) )
2015-02-12 06:31:41 -06:00
}
}
}
2018-03-28 11:03:33 -05:00
return nil
2015-02-12 04:55:55 -06:00
}
2015-04-09 05:16:59 -05:00
func applyCommandLineDefaultProperties ( props map [ string ] string ) {
appliedCommandLineProperties = make ( [ ] string , 0 )
for _ , section := range Cfg . Sections ( ) {
for _ , key := range section . Keys ( ) {
keyString := fmt . Sprintf ( "default.%s.%s" , section . Name ( ) , key . Name ( ) )
value , exists := props [ keyString ]
if exists {
key . SetValue ( value )
2016-03-01 12:50:45 -06:00
if shouldRedactKey ( keyString ) {
2015-12-04 03:38:27 -06:00
value = "*********"
}
2015-04-09 05:16:59 -05:00
appliedCommandLineProperties = append ( appliedCommandLineProperties , fmt . Sprintf ( "%s=%s" , keyString , value ) )
}
2015-04-08 13:31:42 -05:00
}
}
}
2015-04-09 05:16:59 -05:00
func applyCommandLineProperties ( props map [ string ] string ) {
for _ , section := range Cfg . Sections ( ) {
2017-10-01 13:02:25 -05:00
sectionName := section . Name ( ) + "."
if section . Name ( ) == ini . DEFAULT_SECTION {
sectionName = ""
}
2015-04-09 05:16:59 -05:00
for _ , key := range section . Keys ( ) {
2017-10-01 13:02:25 -05:00
keyString := sectionName + key . Name ( )
2015-04-09 05:16:59 -05:00
value , exists := props [ keyString ]
if exists {
appliedCommandLineProperties = append ( appliedCommandLineProperties , fmt . Sprintf ( "%s=%s" , keyString , value ) )
2017-10-01 13:02:25 -05:00
key . SetValue ( value )
2015-04-09 05:16:59 -05:00
}
}
}
}
2015-02-15 15:57:49 -06:00
2015-04-09 05:16:59 -05:00
func getCommandLineProperties ( args [ ] string ) map [ string ] string {
props := make ( map [ string ] string )
2014-10-04 06:33:20 -05:00
2015-04-09 05:16:59 -05:00
for _ , arg := range args {
if ! strings . HasPrefix ( arg , "cfg:" ) {
continue
}
trimmed := strings . TrimPrefix ( arg , "cfg:" )
parts := strings . Split ( trimmed , "=" )
if len ( parts ) != 2 {
log . Fatal ( 3 , "Invalid command line argument" , arg )
return nil
2015-01-27 03:09:54 -06:00
}
2015-01-05 00:59:18 -06:00
2015-04-09 05:16:59 -05:00
props [ parts [ 0 ] ] = parts [ 1 ]
}
return props
}
func makeAbsolute ( path string , root string ) string {
if filepath . IsAbs ( path ) {
return path
}
return filepath . Join ( root , path )
}
func evalEnvVarExpression ( value string ) string {
regex := regexp . MustCompile ( ` \$ { (\w+)} ` )
return regex . ReplaceAllStringFunc ( value , func ( envVar string ) string {
envVar = strings . TrimPrefix ( envVar , "${" )
envVar = strings . TrimSuffix ( envVar , "}" )
envValue := os . Getenv ( envVar )
2016-06-02 07:32:17 -05:00
2017-06-05 07:20:34 -05:00
// if env variable is hostname and it is empty use os.Hostname as default
2016-06-02 07:32:17 -05:00
if envVar == "HOSTNAME" && envValue == "" {
envValue , _ = os . Hostname ( )
}
2015-04-09 05:16:59 -05:00
return envValue
} )
}
func evalConfigValues ( ) {
for _ , section := range Cfg . Sections ( ) {
for _ , key := range section . Keys ( ) {
key . SetValue ( evalEnvVarExpression ( key . Value ( ) ) )
}
}
}
2016-06-30 18:37:06 -05:00
func loadSpecifedConfigFile ( configFile string ) error {
2015-04-12 02:15:49 -05:00
if configFile == "" {
2016-09-08 06:22:30 -05:00
configFile = filepath . Join ( HomePath , CustomInitPath )
2015-04-12 02:15:49 -05:00
// return without error if custom file does not exist
if ! pathExists ( configFile ) {
2016-06-30 18:37:06 -05:00
return nil
2015-04-12 02:15:49 -05:00
}
}
2015-04-10 03:58:32 -05:00
userConfig , err := ini . Load ( configFile )
if err != nil {
2016-06-30 18:37:06 -05:00
return fmt . Errorf ( "Failed to parse %v, %v" , configFile , err )
2015-04-10 03:58:32 -05:00
}
2016-11-28 10:55:18 -06:00
userConfig . BlockMode = false
2015-04-10 03:58:32 -05:00
for _ , section := range userConfig . Sections ( ) {
for _ , key := range section . Keys ( ) {
if key . Value ( ) == "" {
continue
}
defaultSec , err := Cfg . GetSection ( section . Name ( ) )
if err != nil {
2015-11-19 09:50:17 -06:00
defaultSec , _ = Cfg . NewSection ( section . Name ( ) )
2015-04-10 03:58:32 -05:00
}
defaultKey , err := defaultSec . GetKey ( key . Name ( ) )
if err != nil {
2015-11-19 09:50:17 -06:00
defaultKey , _ = defaultSec . NewKey ( key . Name ( ) , key . Value ( ) )
2015-04-10 03:58:32 -05:00
}
defaultKey . SetValue ( key . Value ( ) )
}
}
configFiles = append ( configFiles , configFile )
2016-06-30 18:37:06 -05:00
return nil
2015-04-10 03:58:32 -05:00
}
2018-03-28 11:03:33 -05:00
func loadConfiguration ( args * CommandLineArgs ) error {
2015-04-09 05:16:59 -05:00
var err error
// load config defaults
defaultConfigFile := path . Join ( HomePath , "conf/defaults.ini" )
configFiles = append ( configFiles , defaultConfigFile )
2016-12-06 00:36:10 -06:00
// check if config file exists
if _ , err := os . Stat ( defaultConfigFile ) ; os . IsNotExist ( err ) {
fmt . Println ( "Grafana-server Init Failed: Could not find config defaults, make sure homepath command line parameter is set or working directory is homepath" )
os . Exit ( 1 )
}
// load defaults
2015-04-09 05:16:59 -05:00
Cfg , err = ini . Load ( defaultConfigFile )
if err != nil {
2016-12-06 00:36:10 -06:00
fmt . Println ( fmt . Sprintf ( "Failed to parse defaults.ini, %v" , err ) )
os . Exit ( 1 )
2018-03-28 11:03:33 -05:00
return err
2015-04-09 05:16:59 -05:00
}
2016-11-18 09:43:08 -06:00
Cfg . BlockMode = false
2015-04-09 05:16:59 -05:00
// command line props
commandLineProps := getCommandLineProperties ( args . Args )
// load default overrides
applyCommandLineDefaultProperties ( commandLineProps )
// load specified config file
2016-06-30 18:37:06 -05:00
err = loadSpecifedConfigFile ( args . Config )
if err != nil {
initLogging ( )
log . Fatal ( 3 , err . Error ( ) )
}
2014-10-04 06:33:20 -05:00
2015-04-09 05:16:59 -05:00
// apply environment overrides
2018-03-28 11:03:33 -05:00
err = applyEnvVariableOverrides ( )
if err != nil {
return err
}
2015-04-09 05:16:59 -05:00
// apply command line overrides
applyCommandLineProperties ( commandLineProps )
2015-04-08 07:10:04 -05:00
2015-04-09 05:16:59 -05:00
// evaluate config values containing environment variables
evalConfigValues ( )
2015-05-14 03:15:46 -05:00
// update data path and logging config
DataPath = makeAbsolute ( Cfg . Section ( "paths" ) . Key ( "data" ) . String ( ) , HomePath )
2016-06-06 16:06:44 -05:00
initLogging ( )
2018-03-28 11:03:33 -05:00
return err
2015-04-09 05:16:59 -05:00
}
2015-04-12 02:15:49 -05:00
func pathExists ( path string ) bool {
_ , err := os . Stat ( path )
if err == nil {
return true
}
if os . IsNotExist ( err ) {
return false
}
return false
}
func setHomePath ( args * CommandLineArgs ) {
if args . HomePath != "" {
HomePath = args . HomePath
return
}
HomePath , _ = filepath . Abs ( "." )
// check if homepath is correct
if pathExists ( filepath . Join ( HomePath , "conf/defaults.ini" ) ) {
return
}
// try down one path
if pathExists ( filepath . Join ( HomePath , "../conf/defaults.ini" ) ) {
HomePath = filepath . Join ( HomePath , "../" )
}
}
2015-09-11 01:58:45 -05:00
var skipStaticRootValidation bool = false
func validateStaticRootPath ( ) error {
if skipStaticRootValidation {
return nil
2015-09-10 06:34:32 -05:00
}
2017-10-01 13:02:25 -05:00
if _ , err := os . Stat ( path . Join ( StaticRootPath , "build" ) ) ; err != nil {
logger . Error ( "Failed to detect generated javascript files in public/build" )
2015-09-10 06:34:32 -05:00
}
2017-10-01 13:02:25 -05:00
return nil
2015-09-10 06:34:32 -05:00
}
2015-09-11 01:58:45 -05:00
func NewConfigContext ( args * CommandLineArgs ) error {
2015-04-12 02:15:49 -05:00
setHomePath ( args )
2018-03-28 11:03:33 -05:00
err := loadConfiguration ( args )
if err != nil {
return err
}
2015-04-09 05:16:59 -05:00
2018-04-27 06:41:58 -05:00
ApplicationName = "Grafana"
if Enterprise {
ApplicationName += " Enterprise"
}
2015-01-27 03:09:54 -06:00
Env = Cfg . Section ( "" ) . Key ( "app_mode" ) . MustString ( "development" )
2016-06-02 07:32:17 -05:00
InstanceName = Cfg . Section ( "" ) . Key ( "instance_name" ) . MustString ( "unknown_instance_name" )
2016-10-13 08:36:35 -05:00
PluginsPath = makeAbsolute ( Cfg . Section ( "paths" ) . Key ( "plugins" ) . String ( ) , HomePath )
2017-12-07 08:14:57 -06:00
ProvisioningPath = makeAbsolute ( Cfg . Section ( "paths" ) . Key ( "provisioning" ) . String ( ) , HomePath )
2015-01-27 03:09:54 -06:00
server := Cfg . Section ( "server" )
AppUrl , AppSubUrl = parseAppUrlAndSubUrl ( server )
2014-10-04 06:33:20 -05:00
Protocol = HTTP
2015-01-27 03:09:54 -06:00
if server . Key ( "protocol" ) . MustString ( "http" ) == "https" {
2014-10-04 06:33:20 -05:00
Protocol = HTTPS
2015-01-27 03:09:54 -06:00
CertFile = server . Key ( "cert_file" ) . String ( )
2015-03-11 13:44:31 -05:00
KeyFile = server . Key ( "cert_key" ) . String ( )
2014-10-04 06:33:20 -05:00
}
2017-04-27 01:54:21 -05:00
if server . Key ( "protocol" ) . MustString ( "http" ) == "socket" {
Protocol = SOCKET
SocketPath = server . Key ( "socket" ) . String ( )
}
2015-01-27 03:09:54 -06:00
Domain = server . Key ( "domain" ) . MustString ( "localhost" )
2016-11-23 08:35:43 -06:00
HttpAddr = server . Key ( "http_addr" ) . MustString ( DEFAULT_HTTP_ADDR )
2015-01-27 03:09:54 -06:00
HttpPort = server . Key ( "http_port" ) . MustString ( "3000" )
RouterLogging = server . Key ( "router_logging" ) . MustBool ( false )
2017-01-16 05:43:59 -06:00
2015-01-27 03:09:54 -06:00
EnableGzip = server . Key ( "enable_gzip" ) . MustBool ( false )
2015-05-05 04:21:06 -05:00
EnforceDomain = server . Key ( "enforce_domain" ) . MustBool ( false )
2015-09-11 01:58:45 -05:00
StaticRootPath = makeAbsolute ( server . Key ( "static_root_path" ) . String ( ) , HomePath )
if err := validateStaticRootPath ( ) ; err != nil {
return err
}
2015-01-27 03:09:54 -06:00
2017-01-16 05:43:59 -06:00
// read data proxy settings
dataproxy := Cfg . Section ( "dataproxy" )
DataProxyLogging = dataproxy . Key ( "logging" ) . MustBool ( false )
2015-09-09 10:21:25 -05:00
// read security settings
2015-01-27 03:09:54 -06:00
security := Cfg . Section ( "security" )
SecretKey = security . Key ( "secret_key" ) . String ( )
LogInRememberDays = security . Key ( "login_remember_days" ) . MustInt ( )
CookieUserName = security . Key ( "cookie_username" ) . String ( )
CookieRememberName = security . Key ( "cookie_remember_name" ) . String ( )
2015-05-01 01:40:13 -05:00
DisableGravatar = security . Key ( "disable_gravatar" ) . MustBool ( true )
2018-01-26 03:41:41 -06:00
DisableBruteForceLoginProtection = security . Key ( "disable_brute_force_login_protection" ) . MustBool ( false )
2015-05-01 01:40:13 -05:00
2015-10-14 09:39:57 -05:00
// read snapshots settings
snapshots := Cfg . Section ( "snapshots" )
ExternalSnapshotUrl = snapshots . Key ( "external_snapshot_url" ) . String ( )
ExternalSnapshotName = snapshots . Key ( "external_snapshot_name" ) . String ( )
ExternalEnabled = snapshots . Key ( "external_enabled" ) . MustBool ( true )
2016-09-23 09:56:12 -05:00
SnapShotRemoveExpired = snapshots . Key ( "snapshot_remove_expired" ) . MustBool ( true )
2015-10-14 09:39:57 -05:00
2017-11-14 04:34:27 -06:00
// read dashboard settings
dashboards := Cfg . Section ( "dashboards" )
2017-11-15 04:36:36 -06:00
DashboardVersionsToKeep = dashboards . Key ( "versions_to_keep" ) . MustInt ( 20 )
2017-11-14 04:34:27 -06:00
2015-09-09 10:21:25 -05:00
// read data source proxy white list
DataProxyWhiteList = make ( map [ string ] bool )
2017-04-25 02:14:29 -05:00
for _ , hostAndIp := range util . SplitString ( security . Key ( "data_source_proxy_whitelist" ) . String ( ) ) {
2015-09-09 10:21:25 -05:00
DataProxyWhiteList [ hostAndIp ] = true
}
2015-01-27 08:45:27 -06:00
// admin
AdminUser = security . Key ( "admin_user" ) . String ( )
AdminPassword = security . Key ( "admin_password" ) . String ( )
2015-03-11 10:19:29 -05:00
users := Cfg . Section ( "users" )
AllowUserSignUp = users . Key ( "allow_sign_up" ) . MustBool ( true )
AllowUserOrgCreate = users . Key ( "allow_org_create" ) . MustBool ( true )
AutoAssignOrg = users . Key ( "auto_assign_org" ) . MustBool ( true )
2017-12-13 11:53:42 -06:00
AutoAssignOrgRole = users . Key ( "auto_assign_org_role" ) . In ( "Editor" , [ ] string { "Editor" , "Admin" , "Viewer" } )
2015-08-31 04:35:07 -05:00
VerifyEmailEnabled = users . Key ( "verify_email_enabled" ) . MustBool ( false )
2015-08-20 13:15:36 -05:00
LoginHint = users . Key ( "login_hint" ) . String ( )
2016-05-12 07:11:10 -05:00
DefaultTheme = users . Key ( "default_theme" ) . String ( )
2017-07-31 07:39:33 -05:00
ExternalUserMngLinkUrl = users . Key ( "external_manage_link_url" ) . String ( )
ExternalUserMngLinkName = users . Key ( "external_manage_link_name" ) . String ( )
ExternalUserMngInfo = users . Key ( "external_manage_info" ) . String ( )
2017-12-13 11:53:42 -06:00
ViewersCanEdit = users . Key ( "viewers_can_edit" ) . MustBool ( false )
2016-09-28 08:27:08 -05:00
// auth
auth := Cfg . Section ( "auth" )
DisableLoginForm = auth . Key ( "disable_login_form" ) . MustBool ( false )
2017-03-29 04:33:28 -05:00
DisableSignoutMenu = auth . Key ( "disable_signout_menu" ) . MustBool ( false )
2015-01-27 08:14:53 -06:00
2015-01-27 08:45:27 -06:00
// anonymous access
AnonymousEnabled = Cfg . Section ( "auth.anonymous" ) . Key ( "enabled" ) . MustBool ( false )
2015-02-23 13:07:49 -06:00
AnonymousOrgName = Cfg . Section ( "auth.anonymous" ) . Key ( "org_name" ) . String ( )
AnonymousOrgRole = Cfg . Section ( "auth.anonymous" ) . Key ( "org_role" ) . String ( )
2015-01-07 09:37:24 -06:00
2015-05-01 04:55:59 -05:00
// auth proxy
authProxy := Cfg . Section ( "auth.proxy" )
AuthProxyEnabled = authProxy . Key ( "enabled" ) . MustBool ( false )
AuthProxyHeaderName = authProxy . Key ( "header_name" ) . String ( )
AuthProxyHeaderProperty = authProxy . Key ( "header_property" ) . String ( )
AuthProxyAutoSignUp = authProxy . Key ( "auto_sign_up" ) . MustBool ( true )
2016-02-23 07:22:28 -06:00
AuthProxyLdapSyncTtl = authProxy . Key ( "ldap_sync_ttl" ) . MustInt ( )
AuthProxyWhitelist = authProxy . Key ( "whitelist" ) . String ( )
2015-05-01 04:55:59 -05:00
2016-02-23 07:22:28 -06:00
// basic auth
2015-06-30 02:37:52 -05:00
authBasic := Cfg . Section ( "auth.basic" )
2015-06-30 05:14:13 -05:00
BasicAuthEnabled = authBasic . Key ( "enabled" ) . MustBool ( true )
2015-06-30 02:37:52 -05:00
2017-09-28 05:10:59 -05:00
// global plugin settings
PluginAppsSkipVerifyTLS = Cfg . Section ( "plugins" ) . Key ( "app_tls_skip_verify_insecure" ) . MustBool ( false )
2014-10-06 14:31:54 -05:00
// PhantomJS rendering
2015-04-08 07:10:04 -05:00
ImagesDir = filepath . Join ( DataPath , "png" )
2018-01-25 04:05:59 -06:00
PhantomDir = filepath . Join ( HomePath , "tools/phantomjs" )
2014-11-14 10:13:33 -06:00
2015-03-27 11:13:44 -05:00
analytics := Cfg . Section ( "analytics" )
ReportingEnabled = analytics . Key ( "reporting_enabled" ) . MustBool ( true )
2016-04-11 11:21:48 -05:00
CheckForUpdates = analytics . Key ( "check_for_updates" ) . MustBool ( true )
2015-03-27 11:13:44 -05:00
GoogleAnalyticsId = analytics . Key ( "google_analytics_ua_id" ) . String ( )
2015-08-21 02:30:39 -05:00
GoogleTagManagerId = analytics . Key ( "google_tag_manager_id" ) . String ( )
2015-03-22 14:14:00 -05:00
2015-06-04 02:34:42 -05:00
ldapSec := Cfg . Section ( "auth.ldap" )
LdapEnabled = ldapSec . Key ( "enabled" ) . MustBool ( false )
2015-07-15 03:08:23 -05:00
LdapConfigFile = ldapSec . Key ( "config_file" ) . String ( )
2016-10-07 01:49:58 -05:00
LdapAllowSignup = ldapSec . Key ( "allow_sign_up" ) . MustBool ( true )
2015-06-04 02:34:42 -05:00
2016-04-29 07:35:58 -05:00
alerting := Cfg . Section ( "alerting" )
2017-01-25 06:32:26 -06:00
AlertingEnabled = alerting . Key ( "enabled" ) . MustBool ( true )
2016-10-10 06:09:16 -05:00
ExecuteAlerts = alerting . Key ( "execute_alerts" ) . MustBool ( true )
2016-04-29 07:35:58 -05:00
2018-04-27 04:39:14 -05:00
explore := Cfg . Section ( "explore" )
2018-04-27 08:35:46 -05:00
ExploreEnabled = explore . Key ( "enabled" ) . MustBool ( false )
2018-04-27 04:39:14 -05:00
2015-01-15 07:44:15 -06:00
readSessionConfig ( )
2015-06-08 10:56:56 -05:00
readSmtpSettings ( )
2015-09-10 12:47:33 -05:00
readQuotaSettings ( )
2015-08-31 04:35:07 -05:00
if VerifyEmailEnabled && ! Smtp . Enabled {
2017-12-28 08:51:15 -06:00
log . Warn ( "require_email_validation is enabled but smtp is disabled" )
2015-08-31 04:35:07 -05:00
}
2015-09-11 01:58:45 -05:00
2017-05-22 07:56:50 -05:00
// check old key name
GrafanaComUrl = Cfg . Section ( "grafana_net" ) . Key ( "url" ) . MustString ( "" )
if GrafanaComUrl == "" {
GrafanaComUrl = Cfg . Section ( "grafana_com" ) . Key ( "url" ) . MustString ( "https://grafana.com" )
}
2016-05-27 06:52:19 -05:00
2016-08-10 10:27:39 -05:00
imageUploadingSection := Cfg . Section ( "external_image_storage" )
2017-12-28 08:48:02 -06:00
ImageUploadProvider = imageUploadingSection . Key ( "provider" ) . MustString ( "" )
2015-09-11 01:58:45 -05:00
return nil
2015-01-15 07:44:15 -06:00
}
2014-12-30 03:28:27 -06:00
2015-01-15 07:44:15 -06:00
func readSessionConfig ( ) {
2015-01-27 03:09:54 -06:00
sec := Cfg . Section ( "session" )
2014-12-30 03:28:27 -06:00
SessionOptions = session . Options { }
2015-12-08 07:35:09 -06:00
SessionOptions . Provider = sec . Key ( "provider" ) . In ( "memory" , [ ] string { "memory" , "file" , "redis" , "mysql" , "postgres" , "memcache" } )
2015-01-27 03:09:54 -06:00
SessionOptions . ProviderConfig = strings . Trim ( sec . Key ( "provider_config" ) . String ( ) , "\" " )
SessionOptions . CookieName = sec . Key ( "cookie_name" ) . MustString ( "grafana_sess" )
2014-12-30 03:28:27 -06:00
SessionOptions . CookiePath = AppSubUrl
2015-01-27 03:09:54 -06:00
SessionOptions . Secure = sec . Key ( "cookie_secure" ) . MustBool ( )
SessionOptions . Gclifetime = Cfg . Section ( "session" ) . Key ( "gc_interval_time" ) . MustInt64 ( 86400 )
SessionOptions . Maxlifetime = Cfg . Section ( "session" ) . Key ( "session_life_time" ) . MustInt64 ( 86400 )
2015-04-07 12:21:14 -05:00
SessionOptions . IDLength = 16
2014-12-30 03:28:27 -06:00
if SessionOptions . Provider == "file" {
2015-04-09 05:16:59 -05:00
SessionOptions . ProviderConfig = makeAbsolute ( SessionOptions . ProviderConfig , DataPath )
2014-12-30 03:28:27 -06:00
os . MkdirAll ( path . Dir ( SessionOptions . ProviderConfig ) , os . ModePerm )
2014-10-05 09:50:04 -05:00
}
2015-04-08 01:59:12 -05:00
if SessionOptions . CookiePath == "" {
SessionOptions . CookiePath = "/"
}
2018-03-15 15:23:33 -05:00
2018-03-20 13:31:01 -05:00
SessionConnMaxLifetime = Cfg . Section ( "session" ) . Key ( "conn_max_lifetime" ) . MustInt64 ( 14400 )
2014-10-05 09:50:04 -05:00
}
2015-03-03 03:18:24 -06:00
2016-06-06 16:06:44 -05:00
func initLogging ( ) {
2016-06-07 05:11:41 -05:00
// split on comma
2015-03-03 03:18:24 -06:00
LogModes = strings . Split ( Cfg . Section ( "log" ) . Key ( "mode" ) . MustString ( "console" ) , "," )
2016-06-07 05:11:41 -05:00
// also try space
if len ( LogModes ) == 1 {
LogModes = strings . Split ( Cfg . Section ( "log" ) . Key ( "mode" ) . MustString ( "console" ) , " " )
2015-03-03 03:18:24 -06:00
}
2015-04-09 05:16:59 -05:00
LogsPath = makeAbsolute ( Cfg . Section ( "paths" ) . Key ( "logs" ) . String ( ) , HomePath )
2016-06-06 16:06:44 -05:00
log . ReadLoggingConfig ( LogModes , LogsPath , Cfg )
2015-03-03 03:18:24 -06:00
}
2015-04-09 05:16:59 -05:00
func LogConfigurationInfo ( ) {
var text bytes . Buffer
2016-06-07 02:29:47 -05:00
for _ , file := range configFiles {
logger . Info ( "Config loaded from" , "file" , file )
2015-03-03 03:18:24 -06:00
}
2015-04-09 05:16:59 -05:00
if len ( appliedCommandLineProperties ) > 0 {
2016-06-07 02:29:47 -05:00
for _ , prop := range appliedCommandLineProperties {
2017-06-05 07:20:34 -05:00
logger . Info ( "Config overridden from command line" , "arg" , prop )
2015-04-09 05:16:59 -05:00
}
}
if len ( appliedEnvOverrides ) > 0 {
text . WriteString ( "\tEnvironment variables used:\n" )
2016-06-07 02:29:47 -05:00
for _ , prop := range appliedEnvOverrides {
2017-06-05 07:20:34 -05:00
logger . Info ( "Config overridden from Environment variable" , "var" , prop )
2015-04-09 05:16:59 -05:00
}
}
2016-06-07 02:29:47 -05:00
logger . Info ( "Path Home" , "path" , HomePath )
logger . Info ( "Path Data" , "path" , DataPath )
logger . Info ( "Path Logs" , "path" , LogsPath )
logger . Info ( "Path Plugins" , "path" , PluginsPath )
2017-12-07 08:14:57 -06:00
logger . Info ( "Path Provisioning" , "path" , ProvisioningPath )
2017-10-01 13:02:25 -05:00
logger . Info ( "App mode " + Env )
2015-03-03 03:18:24 -06:00
}