app.go 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. package conf
  2. import (
  3. "fmt"
  4. "os"
  5. "strconv"
  6. "strings"
  7. "mats/log"
  8. "github.com/spf13/viper"
  9. )
  10. const (
  11. SaveType_Obs = "obs"
  12. SaveType_OSS = "oss"
  13. SaveType_Minio = "minio"
  14. )
  15. type TaskConfig struct {
  16. Name string
  17. Broker string
  18. DefaultQueue string
  19. ResultBackend string
  20. ResultsExpireIn int32
  21. AmqpExchange string
  22. AmqpExchangeType string
  23. AmqpBindingKey string
  24. AmqpPrefetchCount int32
  25. }
  26. type AppAsset struct {
  27. Name string //鞋楦
  28. Type string //"last"
  29. IsMesh bool //是否转换模型true
  30. IsImage bool
  31. DefaultCategory []string //默认的目录设定
  32. }
  33. type AppCatogry struct {
  34. Scope string //global全局设定 qiye 企业级设定
  35. StartUpdate bool //程序启动的时候是否更新category 表数据 和 AssetCategry表的数据
  36. QiyeUserId string //scope为qiye的时候默认企业主账号ID
  37. DefaultCategory []*DefaultCategoryConf
  38. }
  39. type DefaultCategoryConf struct {
  40. Children []*DefaultCategoryConf
  41. Name string //分类名字
  42. Value string //分类的值
  43. }
  44. type AppConf struct {
  45. Name string
  46. Version string
  47. SaveType string //obs, oss, minio
  48. Assets []*AppAsset
  49. Category *AppCatogry
  50. Jwt struct {
  51. Realm string
  52. Key string
  53. TimeoutHour int
  54. }
  55. Etcd struct {
  56. Endpoints []string
  57. UserName string
  58. Password string
  59. DialTimeout int64
  60. }
  61. Mysql struct {
  62. DSN string
  63. }
  64. Redis struct {
  65. Addr string
  66. Password string // no password set
  67. Db int // use default DB
  68. }
  69. Log struct {
  70. FileName string
  71. Level int32
  72. ServiceName string
  73. }
  74. Port int32
  75. Mongo struct {
  76. DSN string
  77. Database string
  78. }
  79. Debug struct {
  80. UserId string
  81. UserPhone string
  82. UserRole string
  83. }
  84. Obs struct {
  85. Bucket string
  86. AccessKeyId string
  87. SecrateKey string
  88. Endpoint string
  89. }
  90. Minio struct {
  91. Bucket string
  92. PubHost string
  93. Endpoint string
  94. AccessKey string
  95. AccessSec string
  96. }
  97. Nats struct {
  98. Url string
  99. MaxReconnect int
  100. ReconnDelaySecond int
  101. MeshProcStreamTopic string
  102. HdrProcStreamTopic string
  103. OsgConvStreamTopic string
  104. OsgShadowStreamTopic string
  105. HdrConvStreamTopic string
  106. }
  107. TaskCenter string
  108. }
  109. func LoadConfFile(filepath string) (*AppConf, error) {
  110. file, err := os.Open(filepath)
  111. if err != nil {
  112. log.Errorf("can not open file:%s", filepath)
  113. return nil, err
  114. }
  115. v := viper.New()
  116. v.SetConfigType("yaml")
  117. err = v.ReadConfig(file)
  118. if err != nil {
  119. return nil, err
  120. }
  121. c := new(AppConf)
  122. err = v.Unmarshal(c)
  123. return c, err
  124. }
  125. func NewAppConf(filePath string) (*AppConf, error) {
  126. c, err := LoadConfFile(filePath)
  127. if err != nil {
  128. return c, err
  129. }
  130. //初始化log
  131. _ = log.NewLoggerSugar(c.Log.ServiceName, c.Log.FileName, c.Log.Level)
  132. //环境变量
  133. mongo := os.Getenv("MONGO")
  134. fmt.Println("env MONGO=>", mongo)
  135. if len(mongo) > 0 {
  136. c.Mongo.DSN = mongo
  137. //解析出database mongodb://admin:123456@124.70.148.113:27018/sku3d_dadong?authSource=admin
  138. start := strings.LastIndex(mongo, "/")
  139. end := strings.LastIndex(mongo, "?")
  140. database := mongo[start+1 : end]
  141. if len(database) > 0 {
  142. c.Mongo.Database = database
  143. }
  144. fmt.Println(c.Mongo.DSN, c.Mongo.Database)
  145. }
  146. //redis
  147. redis := os.Getenv("REDIS")
  148. fmt.Println("Env REDIS=>", redis)
  149. if len(redis) > 0 {
  150. c.Redis.Addr = redis
  151. start := strings.LastIndex(redis, "/")
  152. if start > 0 {
  153. db := redis[start:]
  154. dbint, _ := strconv.Atoi(db)
  155. c.Redis.Db = dbint
  156. c.Redis.Addr = string(redis[0:start])
  157. }
  158. fmt.Println(c.Redis.Addr, c.Redis.Db)
  159. }
  160. //taskCenter
  161. natsHost := os.Getenv("NATS")
  162. if len(natsHost) > 0 {
  163. c.Nats.Url = natsHost
  164. }
  165. fmt.Println("Env NATS=>", natsHost)
  166. AppConfig = c
  167. return c, nil
  168. }
  169. var AppConfig *AppConf = nil