config.go 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  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. // AzureOpenAI 配置
  49. AzureOn bool `yaml:"azure_on"`
  50. AzureApiVersion string `yaml:"azure_api_version"`
  51. AzureResourceName string `yaml:"azure_resource_name"`
  52. AzureDeploymentName string `yaml:"azure_deployment_name"`
  53. AzureOpenAIToken string `yaml:"azure_openai_token"`
  54. }
  55. var config *Configuration
  56. var once sync.Once
  57. // LoadConfig 加载配置
  58. func LoadConfig() *Configuration {
  59. once.Do(func() {
  60. // 从文件中读取
  61. config = &Configuration{}
  62. data, err := ioutil.ReadFile("config.yml")
  63. if err != nil {
  64. log.Fatal(err)
  65. }
  66. err = yaml.Unmarshal(data, &config)
  67. if err != nil {
  68. log.Fatal(err)
  69. }
  70. // 如果环境变量有配置,读取环境变量
  71. logLevel := os.Getenv("LOG_LEVEL")
  72. if logLevel != "" {
  73. config.LogLevel = logLevel
  74. }
  75. apiKey := os.Getenv("APIKEY")
  76. if apiKey != "" {
  77. config.ApiKey = apiKey
  78. }
  79. baseURL := os.Getenv("BASE_URL")
  80. if baseURL != "" {
  81. config.BaseURL = baseURL
  82. }
  83. model := os.Getenv("MODEL")
  84. if model != "" {
  85. config.Model = model
  86. }
  87. sessionTimeout := os.Getenv("SESSION_TIMEOUT")
  88. if sessionTimeout != "" {
  89. duration, err := strconv.ParseInt(sessionTimeout, 10, 64)
  90. if err != nil {
  91. logger.Fatal(fmt.Sprintf("config session timeout err: %v ,get is %v", err, sessionTimeout))
  92. return
  93. }
  94. config.SessionTimeout = time.Duration(duration) * time.Second
  95. } else {
  96. config.SessionTimeout = time.Duration(config.SessionTimeout) * time.Second
  97. }
  98. defaultMode := os.Getenv("DEFAULT_MODE")
  99. if defaultMode != "" {
  100. config.DefaultMode = defaultMode
  101. }
  102. httpProxy := os.Getenv("HTTP_PROXY")
  103. if httpProxy != "" {
  104. config.HttpProxy = httpProxy
  105. }
  106. maxRequest := os.Getenv("MAX_REQUEST")
  107. if maxRequest != "" {
  108. newMR, _ := strconv.Atoi(maxRequest)
  109. config.MaxRequest = newMR
  110. }
  111. port := os.Getenv("PORT")
  112. if port != "" {
  113. config.Port = port
  114. }
  115. serviceURL := os.Getenv("SERVICE_URL")
  116. if serviceURL != "" {
  117. config.ServiceURL = serviceURL
  118. }
  119. chatType := os.Getenv("CHAT_TYPE")
  120. if chatType != "" {
  121. config.ChatType = chatType
  122. }
  123. allowGroup := os.Getenv("ALLOW_GROUPS")
  124. if allowGroup != "" {
  125. config.AllowGroups = strings.Split(allowGroup, ",")
  126. }
  127. allowUsers := os.Getenv("ALLOW_USERS")
  128. if allowUsers != "" {
  129. config.AllowUsers = strings.Split(allowUsers, ",")
  130. }
  131. adminUsers := os.Getenv("ADMIN_USERS")
  132. if adminUsers != "" {
  133. config.AdminUsers = strings.Split(adminUsers, ",")
  134. }
  135. appSecrets := os.Getenv("APP_SECRETS")
  136. if appSecrets != "" {
  137. config.AppSecrets = strings.Split(appSecrets, ",")
  138. }
  139. help := os.Getenv("HELP")
  140. if help != "" {
  141. config.Help = help
  142. }
  143. azureOn := os.Getenv("AZURE_ON")
  144. if azureOn != "" {
  145. config.AzureOn = azureOn == "true"
  146. }
  147. azureApiVersion := os.Getenv("AZURE_API_VERSION")
  148. if azureApiVersion != "" {
  149. config.AzureApiVersion = azureApiVersion
  150. }
  151. azureResourceName := os.Getenv("AZURE_RESOURCE_NAME")
  152. if azureResourceName != "" {
  153. config.AzureResourceName = azureResourceName
  154. }
  155. azureDeploymentName := os.Getenv("AZURE_DEPLOYMENT_NAME")
  156. if azureDeploymentName != "" {
  157. config.AzureDeploymentName = azureDeploymentName
  158. }
  159. azureOpenaiToken := os.Getenv("AZURE_OPENAI_TOKEN")
  160. if azureOpenaiToken != "" {
  161. config.AzureOpenAIToken = azureOpenaiToken
  162. }
  163. })
  164. // 一些默认值
  165. if config.LogLevel == "" {
  166. config.LogLevel = "info"
  167. }
  168. if config.Model == "" {
  169. config.Model = "gpt-3.5-turbo"
  170. }
  171. if config.DefaultMode == "" {
  172. config.DefaultMode = "单聊"
  173. }
  174. if config.Port == "" {
  175. config.Port = "8090"
  176. }
  177. if config.ChatType == "" {
  178. config.ChatType = "0"
  179. }
  180. if config.ApiKey == "" {
  181. logger.Fatal("config err: api key required")
  182. }
  183. if config.ServiceURL == "" {
  184. logger.Fatal("config err: service url required")
  185. }
  186. return config
  187. }