2018-05-27 22:40:42 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
2018-06-09 16:27:47 +08:00
|
|
|
"strings"
|
|
|
|
"path/filepath"
|
2018-05-27 22:40:42 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func parseConfig() error {
|
2018-06-09 16:27:47 +08:00
|
|
|
binPath, err := filepath.Abs(filepath.Dir(os.Args[0]))
|
|
|
|
if err != nil {
|
2018-06-09 16:32:07 +08:00
|
|
|
logger.Errorf("cannot load binary path: %v", err)
|
2018-06-09 16:27:47 +08:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-05-27 22:40:42 +08:00
|
|
|
defaults := map[string]string{
|
2018-06-08 03:09:27 +08:00
|
|
|
"POSTGRES": "postgres://postgres:postgres@localhost/commento?sslmode=disable",
|
2018-05-27 22:40:42 +08:00
|
|
|
|
|
|
|
"PORT": "8080",
|
|
|
|
"ORIGIN": "",
|
|
|
|
|
|
|
|
"CDN_PREFIX": "",
|
|
|
|
|
2018-06-09 16:27:47 +08:00
|
|
|
"STATIC": binPath,
|
|
|
|
|
2018-05-27 22:40:42 +08:00
|
|
|
"SMTP_USERNAME": "",
|
|
|
|
"SMTP_PASSWORD": "",
|
|
|
|
"SMTP_HOST": "",
|
|
|
|
"SMTP_FROM_ADDRESS": "",
|
|
|
|
|
|
|
|
"OAUTH_GOOGLE_KEY": "",
|
|
|
|
"OAUTH_GOOGLE_SECRET": "",
|
|
|
|
}
|
|
|
|
|
|
|
|
for key, value := range defaults {
|
2018-06-07 16:33:17 +08:00
|
|
|
if os.Getenv("COMMENTO_" + key) == "" {
|
2018-05-27 22:40:42 +08:00
|
|
|
os.Setenv(key, value)
|
2018-06-07 16:33:17 +08:00
|
|
|
} else {
|
|
|
|
os.Setenv(key, os.Getenv("COMMENTO_" + key))
|
2018-05-27 22:40:42 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Mandatory config parameters
|
|
|
|
for _, env := range []string{"POSTGRES", "PORT", "ORIGIN"} {
|
|
|
|
if os.Getenv(env) == "" {
|
2018-06-09 16:32:07 +08:00
|
|
|
logger.Errorf("missing %s environment variable", env)
|
2018-05-27 22:40:42 +08:00
|
|
|
return errorMissingConfig
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-03 23:17:31 +08:00
|
|
|
if os.Getenv("CDN_PREFIX") == "" {
|
|
|
|
os.Setenv("CDN_PREFIX", os.Getenv("ORIGIN"))
|
|
|
|
}
|
|
|
|
|
2018-06-09 16:27:47 +08:00
|
|
|
static := os.Getenv("STATIC")
|
|
|
|
for strings.HasSuffix(static, "/") {
|
|
|
|
static = static[0:len(static)-1]
|
|
|
|
}
|
|
|
|
|
|
|
|
file, err := os.Stat(static)
|
|
|
|
if err != nil {
|
|
|
|
logger.Errorf("cannot load %s: %v", static, err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if !file.IsDir() {
|
|
|
|
logger.Errorf("COMMENTO_STATIC=%s is not a directory", static)
|
|
|
|
return errorNotADirectory
|
|
|
|
}
|
|
|
|
|
|
|
|
os.Setenv("STATIC", static)
|
|
|
|
|
2018-05-27 22:40:42 +08:00
|
|
|
return nil
|
|
|
|
}
|