1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- package config
- import (
- "encoding/json"
- "fmt"
- "os"
- "strconv"
- "sync"
- "time"
- "github.com/eryajf/chatgpt-dingtalk/public/logger"
- )
- type Configuration struct {
-
- ApiKey string `json:"api_key"`
-
- SessionTimeout time.Duration `json:"session_timeout"`
-
-
-
-
-
-
-
-
- }
- var config *Configuration
- var once sync.Once
- func LoadConfig() *Configuration {
- once.Do(func() {
-
- config = &Configuration{}
- f, err := os.Open("config.json")
- if err != nil {
- logger.Danger("open config err: %v", err)
- return
- }
- defer f.Close()
- encoder := json.NewDecoder(f)
- err = encoder.Decode(config)
- if err != nil {
- logger.Warning("decode config err: %v", err)
- return
- }
-
- ApiKey := os.Getenv("APIKEY")
- SessionTimeout := os.Getenv("SESSION_TIMEOUT")
-
-
-
-
- if ApiKey != "" {
- config.ApiKey = ApiKey
- }
- if SessionTimeout != "" {
- duration, err := strconv.ParseInt(SessionTimeout, 10, 64)
- if err != nil {
- logger.Danger(fmt.Sprintf("config session timeout err: %v ,get is %v", err, SessionTimeout))
- return
- }
- config.SessionTimeout = time.Duration(duration) * time.Second
- } else {
- config.SessionTimeout = time.Duration(config.SessionTimeout) * time.Second
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- })
- if config.ApiKey == "" {
- logger.Danger("config err: api key required")
- }
- return config
- }
|