config.go 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  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. DenyUsers []string `yaml:"deny_users"`
  44. // 哪些Vip用户可以进行无限对话
  45. VipUsers []string `yaml:"vip_users"`
  46. // 指定哪些人为此系统的管理员,必须指定,否则所有人都是
  47. AdminUsers []string `yaml:"admin_users"`
  48. // 钉钉机器人在应用信息中的AppSecret,为了校验回调的请求是否合法,如果你的服务对接给多个机器人,这里可以配置多个机器人的secret
  49. AppSecrets []string `yaml:"app_secrets"`
  50. // 自定义帮助信息
  51. Help string `yaml:"help"`
  52. // AzureOpenAI 配置
  53. AzureOn bool `yaml:"azure_on"`
  54. AzureApiVersion string `yaml:"azure_api_version"`
  55. AzureResourceName string `yaml:"azure_resource_name"`
  56. AzureDeploymentName string `yaml:"azure_deployment_name"`
  57. AzureOpenAIToken string `yaml:"azure_openai_token"`
  58. }
  59. var config *Configuration
  60. var once sync.Once
  61. // LoadConfig 加载配置
  62. func LoadConfig() *Configuration {
  63. once.Do(func() {
  64. // 从文件中读取
  65. config = &Configuration{}
  66. data, err := ioutil.ReadFile("config.yml")
  67. if err != nil {
  68. log.Fatal(err)
  69. }
  70. err = yaml.Unmarshal(data, &config)
  71. if err != nil {
  72. log.Fatal(err)
  73. }
  74. // 如果环境变量有配置,读取环境变量
  75. logLevel := os.Getenv("LOG_LEVEL")
  76. if logLevel != "" {
  77. config.LogLevel = logLevel
  78. }
  79. apiKey := os.Getenv("APIKEY")
  80. if apiKey != "" {
  81. config.ApiKey = apiKey
  82. }
  83. baseURL := os.Getenv("BASE_URL")
  84. if baseURL != "" {
  85. config.BaseURL = baseURL
  86. }
  87. model := os.Getenv("MODEL")
  88. if model != "" {
  89. config.Model = model
  90. }
  91. sessionTimeout := os.Getenv("SESSION_TIMEOUT")
  92. if sessionTimeout != "" {
  93. duration, err := strconv.ParseInt(sessionTimeout, 10, 64)
  94. if err != nil {
  95. logger.Fatal(fmt.Sprintf("config session timeout err: %v ,get is %v", err, sessionTimeout))
  96. return
  97. }
  98. config.SessionTimeout = time.Duration(duration) * time.Second
  99. } else {
  100. config.SessionTimeout = time.Duration(config.SessionTimeout) * time.Second
  101. }
  102. defaultMode := os.Getenv("DEFAULT_MODE")
  103. if defaultMode != "" {
  104. config.DefaultMode = defaultMode
  105. }
  106. httpProxy := os.Getenv("HTTP_PROXY")
  107. if httpProxy != "" {
  108. config.HttpProxy = httpProxy
  109. }
  110. maxRequest := os.Getenv("MAX_REQUEST")
  111. if maxRequest != "" {
  112. newMR, _ := strconv.Atoi(maxRequest)
  113. config.MaxRequest = newMR
  114. }
  115. port := os.Getenv("PORT")
  116. if port != "" {
  117. config.Port = port
  118. }
  119. serviceURL := os.Getenv("SERVICE_URL")
  120. if serviceURL != "" {
  121. config.ServiceURL = serviceURL
  122. }
  123. chatType := os.Getenv("CHAT_TYPE")
  124. if chatType != "" {
  125. config.ChatType = chatType
  126. }
  127. allowGroup := os.Getenv("ALLOW_GROUPS")
  128. if allowGroup != "" {
  129. config.AllowGroups = strings.Split(allowGroup, ",")
  130. }
  131. allowUsers := os.Getenv("ALLOW_USERS")
  132. if allowUsers != "" {
  133. config.AllowUsers = strings.Split(allowUsers, ",")
  134. }
  135. denyUsers := os.Getenv("DENY_USERS")
  136. if denyUsers != "" {
  137. config.DenyUsers = strings.Split(denyUsers, ",")
  138. }
  139. vipUsers := os.Getenv("VIP_USERS")
  140. if vipUsers != "" {
  141. config.VipUsers = strings.Split(vipUsers, ",")
  142. }
  143. adminUsers := os.Getenv("ADMIN_USERS")
  144. if adminUsers != "" {
  145. config.AdminUsers = strings.Split(adminUsers, ",")
  146. }
  147. appSecrets := os.Getenv("APP_SECRETS")
  148. if appSecrets != "" {
  149. config.AppSecrets = strings.Split(appSecrets, ",")
  150. }
  151. help := os.Getenv("HELP")
  152. if help != "" {
  153. config.Help = help
  154. }
  155. azureOn := os.Getenv("AZURE_ON")
  156. if azureOn != "" {
  157. config.AzureOn = azureOn == "true"
  158. }
  159. azureApiVersion := os.Getenv("AZURE_API_VERSION")
  160. if azureApiVersion != "" {
  161. config.AzureApiVersion = azureApiVersion
  162. }
  163. azureResourceName := os.Getenv("AZURE_RESOURCE_NAME")
  164. if azureResourceName != "" {
  165. config.AzureResourceName = azureResourceName
  166. }
  167. azureDeploymentName := os.Getenv("AZURE_DEPLOYMENT_NAME")
  168. if azureDeploymentName != "" {
  169. config.AzureDeploymentName = azureDeploymentName
  170. }
  171. azureOpenaiToken := os.Getenv("AZURE_OPENAI_TOKEN")
  172. if azureOpenaiToken != "" {
  173. config.AzureOpenAIToken = azureOpenaiToken
  174. }
  175. })
  176. // 一些默认值
  177. if config.LogLevel == "" {
  178. config.LogLevel = "info"
  179. }
  180. if config.Model == "" {
  181. config.Model = "gpt-3.5-turbo"
  182. }
  183. if config.DefaultMode == "" {
  184. config.DefaultMode = "单聊"
  185. }
  186. if config.Port == "" {
  187. config.Port = "8090"
  188. }
  189. if config.ChatType == "" {
  190. config.ChatType = "0"
  191. }
  192. if config.ApiKey == "" {
  193. logger.Fatal("config err: api key required")
  194. }
  195. if config.ServiceURL == "" {
  196. logger.Fatal("config err: service url required")
  197. }
  198. return config
  199. }