config.go 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. package config
  2. import (
  3. "encoding/json"
  4. "fmt"
  5. "os"
  6. "strconv"
  7. "sync"
  8. "time"
  9. "github.com/eryajf/chatgpt-dingtalk/public/logger"
  10. )
  11. // Configuration 项目配置
  12. type Configuration struct {
  13. // gtp apikey
  14. ApiKey string `json:"api_key"`
  15. // 会话超时时间
  16. SessionTimeout time.Duration `json:"session_timeout"`
  17. // 默认对话模式
  18. DefaultMode string `json:"default_mode"`
  19. // 代理地址
  20. HttpProxy string `json:"http_proxy"`
  21. }
  22. var config *Configuration
  23. var once sync.Once
  24. // LoadConfig 加载配置
  25. func LoadConfig() *Configuration {
  26. once.Do(func() {
  27. // 从文件中读取
  28. config = &Configuration{}
  29. f, err := os.Open("config.json")
  30. if err != nil {
  31. logger.Danger(fmt.Errorf("open config err: %+v", err))
  32. return
  33. }
  34. defer f.Close()
  35. encoder := json.NewDecoder(f)
  36. err = encoder.Decode(config)
  37. if err != nil {
  38. logger.Warning(fmt.Errorf("decode config err: %v", err))
  39. return
  40. }
  41. // 如果环境变量有配置,读取环境变量
  42. ApiKey := os.Getenv("APIKEY")
  43. SessionTimeout := os.Getenv("SESSION_TIMEOUT")
  44. defaultMode := os.Getenv("DEFAULT_MODE")
  45. httpProxy := os.Getenv("HTTP_PROXY")
  46. if ApiKey != "" {
  47. config.ApiKey = ApiKey
  48. }
  49. if SessionTimeout != "" {
  50. duration, err := strconv.ParseInt(SessionTimeout, 10, 64)
  51. if err != nil {
  52. logger.Danger(fmt.Sprintf("config session timeout err: %v ,get is %v", err, SessionTimeout))
  53. return
  54. }
  55. config.SessionTimeout = time.Duration(duration) * time.Second
  56. } else {
  57. config.SessionTimeout = time.Duration(config.SessionTimeout) * time.Second
  58. }
  59. if defaultMode != "" {
  60. config.DefaultMode = defaultMode
  61. }
  62. if httpProxy != "" {
  63. config.HttpProxy = httpProxy
  64. }
  65. })
  66. if config.DefaultMode == "" {
  67. config.DefaultMode = "单聊"
  68. }
  69. if config.ApiKey == "" {
  70. logger.Danger("config err: api key required")
  71. }
  72. return config
  73. }