2018-05-27 22:40:42 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
2018-06-09 16:27:47 +08:00
|
|
|
"path/filepath"
|
2018-06-11 01:43:42 +08:00
|
|
|
"strings"
|
2018-05-27 22:40:42 +08:00
|
|
|
)
|
|
|
|
|
2018-07-24 14:41:01 +08:00
|
|
|
func configParse() 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-21 23:21:10 +08:00
|
|
|
"CONFIG_FILE": "",
|
|
|
|
|
2018-06-08 03:09:27 +08:00
|
|
|
"POSTGRES": "postgres://postgres:postgres@localhost/commento?sslmode=disable",
|
2018-05-27 22:40:42 +08:00
|
|
|
|
2018-06-16 21:30:03 +08:00
|
|
|
"BIND_ADDRESS": "127.0.0.1",
|
|
|
|
"PORT": "8080",
|
|
|
|
"ORIGIN": "",
|
2018-05-27 22:40:42 +08:00
|
|
|
|
|
|
|
"CDN_PREFIX": "",
|
|
|
|
|
2018-07-24 18:08:00 +08:00
|
|
|
"FORBID_NEW_OWNERS": "false",
|
|
|
|
|
2018-06-09 16:27:47 +08:00
|
|
|
"STATIC": binPath,
|
|
|
|
|
2018-06-11 17:31:58 +08:00
|
|
|
"GZIP_STATIC": "false",
|
|
|
|
|
2018-05-27 22:40:42 +08:00
|
|
|
"SMTP_USERNAME": "",
|
|
|
|
"SMTP_PASSWORD": "",
|
|
|
|
"SMTP_HOST": "",
|
2018-06-09 17:52:49 +08:00
|
|
|
"SMTP_PORT": "",
|
2018-05-27 22:40:42 +08:00
|
|
|
"SMTP_FROM_ADDRESS": "",
|
|
|
|
|
2018-06-11 01:43:42 +08:00
|
|
|
"GOOGLE_KEY": "",
|
|
|
|
"GOOGLE_SECRET": "",
|
2018-05-27 22:40:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for key, value := range defaults {
|
2018-06-11 01:43:42 +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 {
|
2018-06-11 01:43:42 +08:00
|
|
|
os.Setenv(key, os.Getenv("COMMENTO_"+key))
|
2018-05-27 22:40:42 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-21 23:38:28 +08:00
|
|
|
if os.Getenv("CONFIG_FILE") != "" {
|
|
|
|
if err := configFileLoad(os.Getenv("CONFIG_FILE")); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-27 22:40:42 +08:00
|
|
|
// Mandatory config parameters
|
2018-07-24 18:08:00 +08:00
|
|
|
for _, env := range []string{"POSTGRES", "PORT", "ORIGIN", "FORBID_NEW_OWNERS"} {
|
2018-05-27 22:40:42 +08:00
|
|
|
if os.Getenv(env) == "" {
|
2018-06-13 02:52:06 +08:00
|
|
|
logger.Errorf("missing COMMENTO_%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-07-24 18:08:00 +08:00
|
|
|
if os.Getenv("FORBID_NEW_OWNERS") != "true" && os.Getenv("FORBID_NEW_OWNERS") != "false" {
|
|
|
|
logger.Errorf("COMMENTO_FORBID_NEW_OWNERS neither 'true' nor 'false'")
|
|
|
|
return errorInvalidConfigValue
|
|
|
|
}
|
|
|
|
|
2018-06-09 16:27:47 +08:00
|
|
|
static := os.Getenv("STATIC")
|
|
|
|
for strings.HasSuffix(static, "/") {
|
2018-06-11 01:43:42 +08:00
|
|
|
static = static[0 : len(static)-1]
|
2018-06-09 16:27:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|