gitea/modules/base/conf.go

64 lines
1.2 KiB
Go
Raw Normal View History

2014-02-12 20:54:09 +01:00
// Copyright 2014 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
2014-03-07 23:22:15 +01:00
package base
2014-02-12 20:54:09 +01:00
import (
"fmt"
"os"
2014-02-19 10:50:53 +01:00
"os/exec"
"path"
"path/filepath"
2014-02-12 20:54:09 +01:00
2014-03-11 04:03:17 +01:00
"github.com/Unknwon/com"
2014-02-12 20:54:09 +01:00
"github.com/Unknwon/goconfig"
)
var (
AppVer string
AppName string
2014-03-17 11:13:07 +01:00
Domain string
Cfg *goconfig.ConfigFile
)
2014-02-12 20:54:09 +01:00
2014-02-19 10:50:53 +01:00
func exeDir() (string, error) {
file, err := exec.LookPath(os.Args[0])
if err != nil {
return "", err
}
p, err := filepath.Abs(file)
if err != nil {
return "", err
}
return path.Dir(p), nil
}
2014-02-12 20:54:09 +01:00
func init() {
var err error
2014-02-19 10:50:53 +01:00
workDir, err := exeDir()
if err != nil {
fmt.Printf("Fail to get work directory: %s\n", err)
os.Exit(2)
}
2014-03-13 02:40:18 +01:00
cfgPath := filepath.Join(workDir, "conf/app.ini")
2014-02-19 10:50:53 +01:00
Cfg, err = goconfig.LoadConfigFile(cfgPath)
2014-02-12 20:54:09 +01:00
if err != nil {
2014-02-19 10:50:53 +01:00
fmt.Printf("Cannot load config file '%s'\n", cfgPath)
2014-02-12 20:54:09 +01:00
os.Exit(2)
}
2014-03-11 04:03:17 +01:00
2014-03-13 02:40:18 +01:00
cfgPath = filepath.Join(workDir, "custom/conf/app.ini")
2014-03-11 04:03:17 +01:00
if com.IsFile(cfgPath) {
if err = Cfg.AppendFiles(cfgPath); err != nil {
fmt.Printf("Cannot load config file '%s'\n", cfgPath)
os.Exit(2)
}
}
2014-02-12 20:54:09 +01:00
Cfg.BlockMode = false
AppName = Cfg.MustValue("", "APP_NAME")
2014-03-17 11:13:07 +01:00
Domain = Cfg.MustValue("server", "DOMAIN")
2014-02-12 20:54:09 +01:00
}