aboutsummaryrefslogtreecommitdiff
path: root/modules/base/conf.go
diff options
context:
space:
mode:
authorUnknown <joe2010xtmf@163.com>2014-03-07 17:22:15 -0500
committerUnknown <joe2010xtmf@163.com>2014-03-07 17:22:15 -0500
commit5a05d6633d413b1c5182a0a542e173f99601a103 (patch)
treeb6d343ca8c998909839d1364f466f7af223fdd1b /modules/base/conf.go
parenta2a59f8ad1192d3504abd50b2daf2ebfd97c86ca (diff)
Merge utils to modules
Diffstat (limited to 'modules/base/conf.go')
-rw-r--r--modules/base/conf.go46
1 files changed, 46 insertions, 0 deletions
diff --git a/modules/base/conf.go b/modules/base/conf.go
new file mode 100644
index 00000000..19e9d689
--- /dev/null
+++ b/modules/base/conf.go
@@ -0,0 +1,46 @@
+// 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.
+
+package base
+
+import (
+ "fmt"
+ "os"
+ "os/exec"
+ "path"
+ "path/filepath"
+
+ "github.com/Unknwon/goconfig"
+)
+
+var Cfg *goconfig.ConfigFile
+
+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
+}
+
+func init() {
+ var err error
+ workDir, err := exeDir()
+ if err != nil {
+ fmt.Printf("Fail to get work directory: %s\n", err)
+ os.Exit(2)
+ }
+
+ cfgPath := filepath.Join(workDir, "conf", "app.ini")
+ Cfg, err = goconfig.LoadConfigFile(cfgPath)
+ if err != nil {
+ fmt.Printf("Cannot load config file '%s'\n", cfgPath)
+ os.Exit(2)
+ }
+ Cfg.BlockMode = false
+}