2014-02-13 01:24:09 +05:30
|
|
|
// 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-08 03:52:15 +05:30
|
|
|
package base
|
2014-02-13 01:24:09 +05:30
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
2014-02-19 15:20:53 +05:30
|
|
|
"os/exec"
|
|
|
|
"path"
|
|
|
|
"path/filepath"
|
2014-02-13 01:24:09 +05:30
|
|
|
|
2014-03-11 08:33:17 +05:30
|
|
|
"github.com/Unknwon/com"
|
2014-02-13 01:24:09 +05:30
|
|
|
"github.com/Unknwon/goconfig"
|
|
|
|
)
|
|
|
|
|
|
|
|
var Cfg *goconfig.ConfigFile
|
|
|
|
|
2014-02-19 15:20:53 +05:30
|
|
|
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-13 01:24:09 +05:30
|
|
|
func init() {
|
|
|
|
var err error
|
2014-02-19 15:20:53 +05:30
|
|
|
workDir, err := exeDir()
|
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("Fail to get work directory: %s\n", err)
|
|
|
|
os.Exit(2)
|
|
|
|
}
|
|
|
|
|
2014-03-13 07:10:18 +05:30
|
|
|
cfgPath := filepath.Join(workDir, "conf/app.ini")
|
2014-02-19 15:20:53 +05:30
|
|
|
Cfg, err = goconfig.LoadConfigFile(cfgPath)
|
2014-02-13 01:24:09 +05:30
|
|
|
if err != nil {
|
2014-02-19 15:20:53 +05:30
|
|
|
fmt.Printf("Cannot load config file '%s'\n", cfgPath)
|
2014-02-13 01:24:09 +05:30
|
|
|
os.Exit(2)
|
|
|
|
}
|
2014-03-11 08:33:17 +05:30
|
|
|
|
2014-03-13 07:10:18 +05:30
|
|
|
cfgPath = filepath.Join(workDir, "custom/conf/app.ini")
|
2014-03-11 08:33:17 +05:30
|
|
|
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-13 01:24:09 +05:30
|
|
|
Cfg.BlockMode = false
|
|
|
|
}
|