config.go 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. package config
  2. import (
  3. "fmt"
  4. "io/ioutil"
  5. "log"
  6. "os"
  7. "strconv"
  8. "strings"
  9. "sync"
  10. "time"
  11. "github.com/eryajf/chatgpt-dingtalk/pkg/logger"
  12. "gopkg.in/yaml.v2"
  13. )
  14. // Configuration 项目配置
  15. type Configuration struct {
  16. // 日志级别,info或者debug
  17. LogLevel string `yaml:"log_level"`
  18. // gtp apikey
  19. ApiKey string `yaml:"api_key"`
  20. // 请求的 URL 地址
  21. BaseURL string `yaml:"base_url"`
  22. // 使用模型
  23. Model string `yaml:"model"`
  24. // 会话超时时间
  25. SessionTimeout time.Duration `yaml:"session_timeout"`
  26. // 默认对话模式
  27. DefaultMode string `yaml:"default_mode"`
  28. // 代理地址
  29. HttpProxy string `yaml:"http_proxy"`
  30. // 用户单日最大请求次数
  31. MaxRequest int `yaml:"max_request"`
  32. // 指定服务启动端口,默认为 8090
  33. Port string `yaml:"port"`
  34. // 指定服务的地址,就是钉钉机器人配置的回调地址,比如: http://chat.eryajf.net
  35. ServiceURL string `yaml:"service_url"`
  36. // 限定对话类型 0:不限 1:单聊 2:群聊
  37. ChatType string `yaml:"chat_type"`
  38. // 哪些群组可以进行对话
  39. AllowGroups []string `yaml:"allow_groups"`
  40. // 哪些用户可以进行对话
  41. AllowUsers []string `yaml:"allow_users"`
  42. // 指定哪些人为此系统的管理员,必须指定,否则所有人都是
  43. AdminUsers []string `yaml:"admin_users"`
  44. // 钉钉机器人在应用信息中的AppSecret,为了校验回调的请求是否合法,如果你的服务对接给多个机器人,这里可以配置多个机器人的secret
  45. AppSecrets []string `yaml:"app_secrets"`
  46. // 自定义帮助信息
  47. Help string `yaml:"help"`
  48. }
  49. var config *Configuration
  50. var once sync.Once
  51. // LoadConfig 加载配置
  52. func LoadConfig() *Configuration {
  53. once.Do(func() {
  54. // 从文件中读取
  55. config = &Configuration{}
  56. data, err := ioutil.ReadFile("config.yml")
  57. if err != nil {
  58. log.Fatal(err)
  59. }
  60. err = yaml.Unmarshal(data, &config)
  61. if err != nil {
  62. log.Fatal(err)
  63. }
  64. // 如果环境变量有配置,读取环境变量
  65. logLevel := os.Getenv("LOG_LEVEL")
  66. if logLevel != "" {
  67. config.LogLevel = logLevel
  68. }
  69. apiKey := os.Getenv("APIKEY")
  70. if apiKey != "" {
  71. config.ApiKey = apiKey
  72. }
  73. baseURL := os.Getenv("BASE_URL")
  74. if baseURL != "" {
  75. config.BaseURL = baseURL
  76. }
  77. model := os.Getenv("MODEL")
  78. if model != "" {
  79. config.Model = model
  80. }
  81. sessionTimeout := os.Getenv("SESSION_TIMEOUT")
  82. if sessionTimeout != "" {
  83. duration, err := strconv.ParseInt(sessionTimeout, 10, 64)
  84. if err != nil {
  85. logger.Fatal(fmt.Sprintf("config session timeout err: %v ,get is %v", err, sessionTimeout))
  86. return
  87. }
  88. config.SessionTimeout = time.Duration(duration) * time.Second
  89. } else {
  90. config.SessionTimeout = time.Duration(config.SessionTimeout) * time.Second
  91. }
  92. defaultMode := os.Getenv("DEFAULT_MODE")
  93. if defaultMode != "" {
  94. config.DefaultMode = defaultMode
  95. }
  96. httpProxy := os.Getenv("HTTP_PROXY")
  97. if httpProxy != "" {
  98. config.HttpProxy = httpProxy
  99. }
  100. maxRequest := os.Getenv("MAX_REQUEST")
  101. if maxRequest != "" {
  102. newMR, _ := strconv.Atoi(maxRequest)
  103. config.MaxRequest = newMR
  104. }
  105. port := os.Getenv("PORT")
  106. if port != "" {
  107. config.Port = port
  108. }
  109. serviceURL := os.Getenv("SERVICE_URL")
  110. if serviceURL != "" {
  111. config.ServiceURL = serviceURL
  112. }
  113. chatType := os.Getenv("CHAT_TYPE")
  114. if chatType != "" {
  115. config.ChatType = chatType
  116. }
  117. allowGroup := os.Getenv("ALLOW_GROUPS")
  118. if allowGroup != "" {
  119. config.AllowGroups = strings.Split(allowGroup, ",")
  120. }
  121. allowUsers := os.Getenv("ALLOW_USERS")
  122. if allowUsers != "" {
  123. config.AllowUsers = strings.Split(allowUsers, ",")
  124. }
  125. adminUsers := os.Getenv("ADMIN_USERS")
  126. if adminUsers != "" {
  127. config.AdminUsers = strings.Split(adminUsers, ",")
  128. }
  129. appSecrets := os.Getenv("APP_SECRETS")
  130. if appSecrets != "" {
  131. config.AppSecrets = strings.Split(appSecrets, ",")
  132. }
  133. help := os.Getenv("HELP")
  134. if help != "" {
  135. config.Help = help
  136. }
  137. })
  138. // 一些默认值
  139. if config.LogLevel == "" {
  140. config.LogLevel = "info"
  141. }
  142. if config.Model == "" {
  143. config.Model = "gpt-3.5-turbo"
  144. }
  145. if config.DefaultMode == "" {
  146. config.DefaultMode = "单聊"
  147. }
  148. if config.Port == "" {
  149. config.Port = "8090"
  150. }
  151. if config.ChatType == "" {
  152. config.ChatType = "0"
  153. }
  154. if config.ApiKey == "" {
  155. logger.Fatal("config err: api key required")
  156. }
  157. if config.ServiceURL == "" {
  158. logger.Fatal("config err: service url required")
  159. }
  160. return config
  161. }