config.go 6.2 KB

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