diff options
author | FChannel <> | 2022-04-23 12:44:38 -0700 |
---|---|---|
committer | FChannel <> | 2022-06-19 12:53:29 -0700 |
commit | 9718d34a757b66917747c1c4acfb9b35d154625b (patch) | |
tree | f1364b982ca9b10777d18bb15bd61ccc29fe1dbb /config | |
parent | 363952bfdbae19758e0241e438b95da65d084331 (diff) |
added config package since WSJ config is ignored from .gitignore
Diffstat (limited to 'config')
-rw-r--r-- | config/config.go | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/config/config.go b/config/config.go new file mode 100644 index 0000000..d9e5a94 --- /dev/null +++ b/config/config.go @@ -0,0 +1,54 @@ +package config + +import ( + "bufio" + "log" + "os" + "strconv" + "strings" +) + +var Port = ":" + GetConfigValue("instanceport", "3000") +var TP = GetConfigValue("instancetp", "") +var Domain = GetConfigValue("instance", "") +var InstanceName = GetConfigValue("instancename", "") +var InstanceSummary = GetConfigValue("instancesummary", "") +var SiteEmail = GetConfigValue("emailaddress", "") //contact@fchan.xyz +var SiteEmailPassword = GetConfigValue("emailpass", "") +var SiteEmailServer = GetConfigValue("emailserver", "") //mail.fchan.xyz +var SiteEmailPort = GetConfigValue("emailport", "") //587 +var TorProxy = GetConfigValue("torproxy", "") //127.0.0.1:9050 +var PublicIndexing = strings.ToLower(GetConfigValue("publicindex", "false")) +var Salt = GetConfigValue("instancesalt", "") +var DBHost = GetConfigValue("dbhost", "localhost") +var DBPort, _ = strconv.Atoi(GetConfigValue("dbport", "5432")) +var DBUser = GetConfigValue("dbuser", "postgres") +var DBPassword = GetConfigValue("dbpass", "password") +var DBName = GetConfigValue("dbname", "server") +var Redis = GetConfigValue("redis", "redis://localhost") +var ActivityStreams = "application/ld+json; profile=\"https://www.w3.org/ns/activitystreams\"" +var SupportedFiles = []string{"image/gif", "image/jpeg", "image/png", "image/webp", "image/apng", "video/mp4", "video/ogg", "video/webm", "audio/mpeg", "audio/ogg", "audio/wav", "audio/wave", "audio/x-wav"} +var Key string +var Themes []string + +func GetConfigValue(value string, ifnone string) string { + file, err := os.Open("config/config-init") + + if err != nil { + log.Print(err) + return ifnone + } + + defer file.Close() + + lines := bufio.NewScanner(file) + + for lines.Scan() { + line := strings.SplitN(lines.Text(), ":", 2) + if line[0] == value { + return line[1] + } + } + + return ifnone +} |