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 (
|
|
|
|
"net/url"
|
|
|
|
"os"
|
|
|
|
"path"
|
|
|
|
"path/filepath"
|
|
|
|
"runtime"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/Unknwon/com"
|
|
|
|
"github.com/Unknwon/goconfig"
|
2014-10-05 09:50:04 -05:00
|
|
|
"github.com/macaron-contrib/session"
|
|
|
|
|
2014-10-04 06:33:20 -05:00
|
|
|
"github.com/torkelo/grafana-pro/pkg/log"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Scheme string
|
|
|
|
|
|
|
|
const (
|
|
|
|
HTTP Scheme = "http"
|
|
|
|
HTTPS Scheme = "https"
|
|
|
|
)
|
|
|
|
|
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.
|
2014-12-16 05:04:08 -06:00
|
|
|
Env string = DEV
|
2014-10-04 06:33:20 -05:00
|
|
|
AppVer string
|
|
|
|
AppName string
|
|
|
|
AppUrl string
|
|
|
|
AppSubUrl string
|
|
|
|
|
|
|
|
// Log settings.
|
|
|
|
LogRootPath string
|
|
|
|
LogModes []string
|
|
|
|
LogConfigs []string
|
|
|
|
|
|
|
|
// Http server options
|
|
|
|
Protocol Scheme
|
|
|
|
Domain string
|
|
|
|
HttpAddr, HttpPort string
|
|
|
|
SshPort int
|
|
|
|
CertFile, KeyFile string
|
2014-10-05 09:50:04 -05:00
|
|
|
RouterLogging bool
|
|
|
|
StaticRootPath string
|
|
|
|
|
|
|
|
// Session settings.
|
2014-12-30 03:28:27 -06:00
|
|
|
SessionOptions session.Options
|
2014-10-04 06:33:20 -05:00
|
|
|
|
|
|
|
// Global setting objects.
|
|
|
|
Cfg *goconfig.ConfigFile
|
|
|
|
ConfRootPath string
|
|
|
|
CustomPath string // Custom directory path.
|
|
|
|
ProdMode bool
|
|
|
|
RunUser string
|
|
|
|
IsWindows bool
|
2014-10-06 14:31:54 -05:00
|
|
|
|
|
|
|
// PhantomJs Rendering
|
|
|
|
ImagesDir string
|
|
|
|
PhantomDir string
|
2014-10-04 06:33:20 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
IsWindows = runtime.GOOS == "windows"
|
|
|
|
log.NewLogger(0, "console", `{"level": 0}`)
|
|
|
|
}
|
|
|
|
|
|
|
|
func WorkDir() (string, error) {
|
2014-12-15 10:36:42 -06:00
|
|
|
p, err := filepath.Abs(".")
|
2014-10-04 06:33:20 -05:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
return p, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewConfigContext() {
|
|
|
|
workDir, err := WorkDir()
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(4, "Fail to get work directory: %v", err)
|
|
|
|
}
|
|
|
|
ConfRootPath = path.Join(workDir, "conf")
|
|
|
|
|
|
|
|
Cfg, err = goconfig.LoadConfigFile(path.Join(workDir, "conf/grafana.ini"))
|
|
|
|
if err != nil {
|
2014-12-15 10:36:42 -06:00
|
|
|
log.Fatal(4, "Fail to parse '%v/conf/grafana.ini': %v", workDir, err)
|
2014-10-04 06:33:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
CustomPath = os.Getenv("GRAFANA_CONF")
|
|
|
|
|
|
|
|
if len(CustomPath) == 0 {
|
|
|
|
CustomPath = path.Join(workDir, "custom")
|
|
|
|
}
|
|
|
|
|
|
|
|
cfgPath := path.Join(CustomPath, "conf/grafana.ini")
|
|
|
|
if com.IsFile(cfgPath) {
|
|
|
|
if err = Cfg.AppendFiles(cfgPath); err != nil {
|
|
|
|
log.Fatal(4, "Fail to load custom 'conf/grafana.ini': %v", err)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
log.Warn("No custom 'conf/grafana.ini'")
|
|
|
|
}
|
|
|
|
|
|
|
|
AppName = Cfg.MustValue("", "app_name", "Grafana Pro")
|
|
|
|
AppUrl = Cfg.MustValue("server", "root_url", "http://localhost:3000/")
|
|
|
|
if AppUrl[len(AppUrl)-1] != '/' {
|
|
|
|
AppUrl += "/"
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if has app suburl.
|
|
|
|
url, err := url.Parse(AppUrl)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(4, "Invalid root_url(%s): %s", AppUrl, err)
|
|
|
|
}
|
|
|
|
AppSubUrl = strings.TrimSuffix(url.Path, "/")
|
|
|
|
|
|
|
|
Protocol = HTTP
|
|
|
|
if Cfg.MustValue("server", "protocol") == "https" {
|
|
|
|
Protocol = HTTPS
|
|
|
|
CertFile = Cfg.MustValue("server", "cert_file")
|
|
|
|
KeyFile = Cfg.MustValue("server", "key_file")
|
|
|
|
}
|
|
|
|
Domain = Cfg.MustValue("server", "domain", "localhost")
|
|
|
|
HttpAddr = Cfg.MustValue("server", "http_addr", "0.0.0.0")
|
|
|
|
HttpPort = Cfg.MustValue("server", "http_port", "3000")
|
2014-10-05 08:34:24 -05:00
|
|
|
|
|
|
|
port := os.Getenv("PORT")
|
|
|
|
if port != "" {
|
|
|
|
HttpPort = port
|
|
|
|
}
|
2014-10-05 09:50:04 -05:00
|
|
|
|
2014-12-30 05:03:03 -06:00
|
|
|
StaticRootPath = Cfg.MustValue("server", "static_root_path", path.Join(workDir, "grafana/src"))
|
2014-10-05 09:50:04 -05:00
|
|
|
RouterLogging = Cfg.MustBool("server", "router_logging", false)
|
2014-10-06 14:31:54 -05:00
|
|
|
|
|
|
|
// PhantomJS rendering
|
|
|
|
ImagesDir = "data/png"
|
|
|
|
PhantomDir = "_vendor/phantomjs"
|
2014-11-14 10:13:33 -06:00
|
|
|
|
|
|
|
LogRootPath = Cfg.MustValue("log", "root_path", path.Join(workDir, "/data/log"))
|
2014-10-05 09:50:04 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func initSessionService() {
|
2014-12-30 03:28:27 -06:00
|
|
|
|
|
|
|
SessionOptions = session.Options{}
|
|
|
|
SessionOptions.Provider = Cfg.MustValueRange("session", "provider", "memory", []string{"memory", "file"})
|
|
|
|
SessionOptions.ProviderConfig = strings.Trim(Cfg.MustValue("session", "provider_config"), "\" ")
|
|
|
|
SessionOptions.CookieName = Cfg.MustValue("session", "cookie_name", "grafana_pro_sess")
|
|
|
|
SessionOptions.CookiePath = AppSubUrl
|
|
|
|
SessionOptions.Secure = Cfg.MustBool("session", "cookie_secure")
|
|
|
|
SessionOptions.Gclifetime = Cfg.MustInt64("session", "gc_interval_time", 86400)
|
|
|
|
SessionOptions.Maxlifetime = Cfg.MustInt64("session", "session_life_time", 86400)
|
|
|
|
|
|
|
|
if SessionOptions.Provider == "file" {
|
|
|
|
os.MkdirAll(path.Dir(SessionOptions.ProviderConfig), os.ModePerm)
|
2014-10-05 09:50:04 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
log.Info("Session Service Enabled")
|
|
|
|
}
|
|
|
|
|
|
|
|
func InitServices() {
|
|
|
|
initSessionService()
|
2014-10-04 06:33:20 -05:00
|
|
|
}
|