config.go 5.9 KB

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