2022-04-02 12:05:32 -07:00
|
|
|
package services
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"log"
|
2022-04-17 07:25:49 -07:00
|
|
|
|
2022-04-02 12:05:32 -07:00
|
|
|
"github.com/joho/godotenv"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
DB_URI string = "DB_URI"
|
|
|
|
|
|
|
|
REDDIT_PULL_TOP = "REDDIT_PULL_TOP"
|
|
|
|
REDDIT_PULL_HOT = "REDDIT_PULL_HOT"
|
|
|
|
REDDIT_PULL_NSFW = "REDDIT_PULL_NSFW"
|
2022-04-17 07:25:49 -07:00
|
|
|
|
|
|
|
YOUTUBE_DEBUG = "YOUTUBE_DEBUG"
|
2022-04-02 12:05:32 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
type ConfigClient struct {}
|
|
|
|
|
|
|
|
func NewConfigClient() ConfigClient {
|
|
|
|
_, err := os.Open(".env")
|
|
|
|
if err == nil {
|
|
|
|
loadEnvFile()
|
|
|
|
}
|
|
|
|
|
|
|
|
return ConfigClient{}
|
|
|
|
}
|
|
|
|
|
2022-04-17 07:25:49 -07:00
|
|
|
func (cc *ConfigClient) GetConfig(key string) string {
|
2022-04-02 12:05:32 -07:00
|
|
|
res, filled := os.LookupEnv(key)
|
|
|
|
if !filled {
|
|
|
|
log.Printf("Missing the a value for '%v'. Could generate errors.", key)
|
|
|
|
}
|
|
|
|
return res
|
|
|
|
}
|
|
|
|
|
|
|
|
// Use this when your ConfigClient has been opened for awhile and you want to ensure you have the most recent env changes.
|
2022-04-17 07:25:49 -07:00
|
|
|
func (cc *ConfigClient) RefreshEnv() {
|
2022-04-02 12:05:32 -07:00
|
|
|
loadEnvFile()
|
|
|
|
}
|
|
|
|
|
|
|
|
func loadEnvFile() {
|
|
|
|
err := godotenv.Load()
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalln(err)
|
|
|
|
}
|
|
|
|
}
|