app.go 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. package config
  2. import (
  3. "crypto/rsa"
  4. "crypto/tls"
  5. "fmt"
  6. "os"
  7. "strings"
  8. "sync"
  9. "time"
  10. "gitee.com/xuyiping_admin/pkg/di"
  11. )
  12. var (
  13. Module = di.Provide(Options)
  14. options *AppConfig
  15. appEnv string
  16. initOnce sync.Once
  17. )
  18. // AppConfig store all configuration options
  19. type AppConfig struct {
  20. FarmName string `yaml:"farm_name"`
  21. AppName string `yaml:"app_name"`
  22. AppEnv string `yaml:"app_environment"`
  23. Debug bool `yaml:"debug"`
  24. HTTPServerAddr string `yaml:"http_server_addr"`
  25. NeckRingLimit int32 `yaml:"neck_ring_limit"`
  26. // 数据库配置 额外加载文件部分 database.yaml
  27. StoreSetting StoreSetting `json:"storeSetting" yaml:"store"`
  28. // redis 配置
  29. RedisSetting RedisSetting `json:"RedisSetting" yaml:"redis_setting"`
  30. JwtSecret string `json:"jwtSecret" yaml:"jwt_secret"`
  31. ExcelSetting ExcelSetting `json:"excelSetting" yaml:"excel_setting"`
  32. WechatSetting WechatSetting `json:"wechatSetting" yaml:"wechat_setting"`
  33. JwtTokenKeyConfig JwtTokenKeyConfig `json:"jwtTokenKeyConfig"`
  34. JwtExpireTime int `json:"jwtExpireTime" yaml:"jwt_expire_time"`
  35. // asynq 相关配置
  36. SideWorkSetting SideWorkSetting `yaml:"side_work_setting"`
  37. CronSetting CronSetting `json:"cron_setting" yaml:"cron"`
  38. Mqtt MqttSetting `json:"mqtt"`
  39. MilkHall MilkHallSetting `json:"milkHall"`
  40. }
  41. type CronSetting struct {
  42. // 是否启动任务时先跑一次
  43. CrontabStartRun bool `yaml:"crontab_start_run"`
  44. // CRONTAB 表达式
  45. UpdateCowInfo string `yaml:"update_cow_info"` // 更新牛只信息
  46. Indicators string `yaml:"indicators"` // 牛只指标
  47. GenerateWorkOrder string `yaml:"generate_work_order"` // 生成工作单
  48. ImmunizationPlan string `yaml:"immunization_plan"` // 免疫计划
  49. SameTimePlan string `yaml:"same_time_plan"` // 同期
  50. UpdateSameTime string `yaml:"update_same_time"` // 更新同期
  51. SystemBasicCrontab string `yaml:"system_basic_crontab"` // 系统基础定时任务
  52. DeleteOldOriginal string `yaml:"delete_old_original"` // 删除脖环历史数据
  53. UpdateDiseaseToCalendar string `yaml:"update_disease_to_calendar"` // 更新每天治疗中牛头数到日历表中
  54. CowPregnant string `yaml:"cow_pregnant"` // 月度牛只怀孕清单
  55. UpdateActiveHabit string `yaml:"update_active_habit"` // 脖环2小时数据重新整合
  56. NeckRingEstrus string `yaml:"neck_ring_estrus"` // 脖环牛只发情
  57. NeckRingMerge string `yaml:"neck_ring_merge"` // 脖环原始数据合并
  58. NeckRingCalculate string `yaml:"neck_ring_calculate"` // 脖环数据计算
  59. NeckRingEstrusWarning string `yaml:"neck_ring_estrus_warning"` // 脖环发情预警
  60. NeckRingHealthWarning string `yaml:"neck_ring_health_warning"` // 脖环健康预警
  61. UpdatePenBehavior string `yaml:"update_pen_behavior"` // 栏舍行为数据
  62. UpdatePenBehaviorDaily string `yaml:"update_pen_behavior_daily"` // 栏舍饲养监测
  63. UpdateMilkOriginal string `yaml:"update_milk_original"` // 奶厅原始数据更新
  64. }
  65. type JwtTokenKeyConfig struct {
  66. PrivateKey *rsa.PrivateKey `json:"privateKey"`
  67. PublicKey *rsa.PublicKey `json:"publicKey"`
  68. }
  69. type WechatSetting struct {
  70. Appid string `yaml:"appid"`
  71. Secret string `yaml:"secret"`
  72. }
  73. type ExcelSetting struct {
  74. SheetName string `yaml:"sheet_name"` // = "Sheet1" //默认Sheet名称
  75. Height float64 `yaml:"height"` // = 25.0 //默认行高度
  76. }
  77. // StoreSetting 数据库配置
  78. type StoreSetting struct {
  79. // 开启 SyDb SQL 记录
  80. DriverName string `yaml:"driver_name" json:"driver_name"`
  81. ShowSQL bool `yaml:"show_sql" json:"show_sql"`
  82. KptRW string `yaml:"kpt_rw" json:"kpt_rw"`
  83. KptMigr string `yaml:"kpt_migr" json:"kpt_migr"`
  84. KptMqtt string `yaml:"kpt_mqtt" json:"kpt_mqtt"`
  85. }
  86. type RedisSetting struct {
  87. // sso 配置
  88. CacheRedis CacheRedisDB `json:"cache_redis" yaml:"cache_redis"`
  89. }
  90. type CacheRedisDB struct {
  91. Addr string `json:"addr" yaml:"addr"`
  92. DB int `json:"db" yaml:"db"`
  93. Requirepass string `json:"requirepass" yaml:"requirepass"`
  94. Expiry int `json:"expiry" yaml:"expiry"`
  95. }
  96. type SideWorkSetting struct {
  97. // Asynq 配置
  98. AsynqSetting AsynqSetting `json:"asynq_setting,omitempty" yaml:"asynq_setting"`
  99. }
  100. type AsynqSetting struct {
  101. Redis AsynqRedisSetting `json:"redis" yaml:"redis"`
  102. Queues map[string]int `json:"queues,omitempty" yaml:"queues"`
  103. Concurrency int `json:"concurrency,omitempty" yaml:"concurrency"`
  104. LogLevel int32 `json:"log_level,omitempty" yaml:"log_level"`
  105. }
  106. type AsynqRedisSetting struct {
  107. // Network type to use, either tcp or unix.
  108. // Default is tcp.
  109. Network string `json:"network,omitempty" yaml:"network"`
  110. // Redis server address in "host:port" format.
  111. Addr string `json:"addr,omitempty" yaml:"addr"`
  112. // Username to authenticate the current connection when Redis ACLs are used.
  113. // See: https://redis.io/commands/auth.
  114. Username string `json:"username,omitempty" yaml:"username"`
  115. // Password to authenticate the current connection.
  116. // See: https://redis.io/commands/auth.
  117. Password string `json:"password,omitempty" yaml:"password"`
  118. // Redis DB to select after connecting to a server.
  119. // See: https://redis.io/commands/select.
  120. DB int `json:"db,omitempty" yaml:"db"`
  121. // Dial timeout for establishing new connections.
  122. // Default is 5 seconds.
  123. DialTimeout time.Duration `json:"dialTimeout,omitempty" yaml:"dial_timeout"`
  124. // Timeout for socket reads.
  125. // If timeout is reached, read commands will fail with a timeout error
  126. // instead of blocking.
  127. //
  128. // Use value -1 for no timeout and 0 for default.
  129. // Default is 3 seconds.
  130. ReadTimeout time.Duration `json:"readTimeout,omitempty" yaml:"read_timeout"`
  131. // Timeout for socket writes.
  132. // If timeout is reached, write commands will fail with a timeout error
  133. // instead of blocking.
  134. //
  135. // Use value -1 for no timeout and 0 for default.
  136. // Default is ReadTimout.
  137. WriteTimeout time.Duration `json:"writeTimeout,omitempty" yaml:"write_timeout"`
  138. // Maximum number of socket connections.
  139. // Default is 10 connections per every CPU as reported by runtime.NumCPU.
  140. PoolSize int `json:"poolSize,omitempty" yaml:"pool_size"`
  141. // TLS Config used to connect to a server.
  142. // TLS will be negotiated only if this field is set.
  143. TLSConfig *tls.Config `json:"tlsConfig,omitempty" yaml:"tls_config"`
  144. }
  145. type MqttSetting struct {
  146. Broker string `json:"broker" yaml:"broker"`
  147. UserName string `json:"username" yaml:"username"`
  148. Password string `json:"password" yaml:"password"`
  149. SubTopic string `json:"sub_topic" yaml:"sub_topic"`
  150. Retain bool `json:"retain" yaml:"retain"`
  151. Qos int `json:"qos" yaml:"qos"`
  152. KeepAlive int `json:"keepAlive" yaml:"keep_alive"`
  153. ConnectTimeout int `json:"connectTimeout" yaml:"connect_timeout"`
  154. AutoReconnect bool `json:"autoReconnect" yaml:"auto_reconnect"`
  155. ReconnectInterval int `json:"reconnectInterval" yaml:"reconnect_interval"`
  156. WorkNumber int `json:"workNumber" yaml:"work_number"`
  157. MergeDataTicker int `json:"mergeDataTicker" yaml:"merge_data_ticker"`
  158. }
  159. type MilkHallSetting struct {
  160. BasePath string `yaml:"base_path"`
  161. FilePath []string `yaml:"file_path"`
  162. BackPath string `json:"back_path"`
  163. UrlPath string `yaml:"url_path"`
  164. Brand string `yaml:"brand"`
  165. FarmId string `yaml:"farm_id"`
  166. MilkHallNumber string `yaml:"milk_hall_number"`
  167. }
  168. func (a *AppConfig) Name() string {
  169. return fmt.Sprintf("%s-%s", a.AppName, a.AppEnv)
  170. }
  171. // CacheNameSpace 作为 Key 的前缀,用来区分不同环境,不同 APP 下的 Key,防止缓存干扰
  172. // 踩坑记录:
  173. //
  174. // 如果使用 fmt.Sprintf("%s-%s-%s", a.AppName, a.AppRole, a.AppEnv),例如 sayam-http-production, sayam-consumer-production
  175. // 会导致 从 role http 写入的 key,从 role consumer 中取不出来,反之亦然
  176. // 支持更多的key空间, 可以更灵活的定义ns
  177. func (a *AppConfig) CacheNameSpace() string {
  178. cacheKeySpace := ""
  179. if a.FarmName != "" {
  180. cacheKeySpace = fmt.Sprintf("%s-%s-%s", a.AppName, a.AppEnv, a.FarmName)
  181. } else {
  182. cacheKeySpace = fmt.Sprintf("%s-%s", a.AppName, a.AppEnv)
  183. }
  184. return cacheKeySpace
  185. }
  186. func Options() *AppConfig {
  187. return options
  188. }
  189. func init() {
  190. appEnv = strings.ToLower(os.Getenv("APP_ENVIRONMENT"))
  191. cfg := &AppConfig{}
  192. var err error
  193. initOnce.Do(func() {
  194. switch appEnv {
  195. case "test":
  196. err = Initialize("app.test.yaml", cfg)
  197. case "development":
  198. err = Initialize("app.develop.yaml", cfg)
  199. case "production":
  200. err = Initialize("app.production.yaml", cfg)
  201. default:
  202. panic("err confing")
  203. }
  204. if err != nil {
  205. panic(err)
  206. }
  207. cfg.JwtTokenKeyConfig = openPrivateKey()
  208. options = cfg
  209. })
  210. }