config.go 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. package utils
  2. import (
  3. "fmt"
  4. "github.com/beego/beego/v2/core/logs"
  5. "github.com/beego/beego/v2/server/web"
  6. "github.com/rdlucklib/rdluck_tools/cache"
  7. "github.com/rdlucklib/rdluck_tools/log"
  8. )
  9. var (
  10. RunMode string //运行模式
  11. MYSQL_URL string //数据库连接
  12. MYSQL_URL_RDDP string //数据库连接
  13. REDIS_CACHE string //缓存地址
  14. Rc *cache.Cache //redis缓存
  15. Re error //redis错误
  16. )
  17. var ApiLog *log.Log
  18. var (
  19. Bucketname string = "hongze"
  20. Endpoint string
  21. Imghost string = "https://hongze.oss-accelerate.aliyuncs.com/"
  22. Upload_dir string = "static/images/"
  23. Upload_Audio_Dir string = "static/audio/"
  24. AccessKeyId string = "LTAIFMZYQhS2BTvW"
  25. AccessKeySecret string = "12kk1ptCHoGWedhBnKRVW5hRJzq9Fq"
  26. ResearchReportUrl = "" //旧版报告的跳转地址
  27. NewResearchReportUrl = "" //新版报告的跳转地址
  28. ReportAppid string
  29. ReportSecret string
  30. YIDONG_HONGZE_KEY string //易董加密的盐值
  31. )
  32. // 全时会议账号信息
  33. var (
  34. QsAppID string
  35. QsSecretKey string
  36. QsUserId int64
  37. QsUserName string
  38. )
  39. var EnPolicyReportUrl string
  40. // 经济数据库
  41. var (
  42. EDB_LIB_URL string
  43. )
  44. func init() {
  45. tmpRunMode, err := web.AppConfig.String("run_mode")
  46. if err != nil {
  47. panic("配置文件读取run_mode错误 " + err.Error())
  48. }
  49. RunMode = tmpRunMode
  50. fmt.Println("RunMode:", RunMode)
  51. if RunMode == "" {
  52. localIp, err := GetLocalIP()
  53. fmt.Println("localIp:", localIp)
  54. if localIp == "10.0.0.123" {
  55. RunMode = "debug"
  56. } else {
  57. RunMode = "release"
  58. }
  59. fmt.Println("RunMode:", RunMode)
  60. configPath := `/home/code/config/hongze_open_api/conf/app.conf`
  61. fmt.Println("configPath:", configPath)
  62. err = web.LoadAppConfig("ini", configPath)
  63. if err != nil {
  64. fmt.Println("web.LoadAppConfig Err:" + err.Error())
  65. }
  66. }
  67. fmt.Println(RunMode, "模式")
  68. config, err := web.AppConfig.GetSection(RunMode)
  69. if err != nil {
  70. panic("配置文件读取错误 " + err.Error())
  71. }
  72. logs.Info(RunMode + " 模式")
  73. MYSQL_URL = config["mysql_url"]
  74. MYSQL_URL_RDDP = config["mysql_url_rddp"]
  75. // 初始化redis
  76. REDIS_CACHE = config["beego_cache"]
  77. if len(REDIS_CACHE) <= 0 {
  78. panic("redis链接参数没有配置")
  79. }
  80. Rc, Re = cache.NewCache(REDIS_CACHE) //初始化缓存
  81. if Re != nil {
  82. fmt.Println(Re)
  83. panic(Re)
  84. }
  85. //日志类
  86. if RunMode == "release" {
  87. logDir := `/data/rdlucklog/hongze_open_api`
  88. ApiLog = log.Init("20060102.api", logDir)
  89. ResearchReportUrl = "https://details.hzinsights.com/"
  90. NewResearchReportUrl = "https://details.hzinsights.com/"
  91. ReportAppid = "CQWx3EqDLNk7bVHo" //Appid
  92. ReportSecret = "vRVFCk182Hpv8CyrHsxaHhA3CgGhh4Uu" //AppSecret
  93. YIDONG_HONGZE_KEY = "YIDONG20220816VshIcFonYccA" //易董加密的盐值
  94. EnPolicyReportUrl = "https://en.hzinsights.com/v2api/"
  95. EDB_LIB_URL = "http://172.19.173.232:8300/edbapi/"
  96. } else {
  97. ApiLog = log.Init("20060102.api")
  98. ResearchReportUrl = "http://advisoryadmin.brilliantstart.cn/xcx_h5/"
  99. NewResearchReportUrl = "http://xcxh5test.hzinsights.com/xcx_h5/"
  100. ReportAppid = "VH2ou4EKlYZz58Uj" //Appid
  101. ReportSecret = "Q6Y5vwmx1IAA9OPkobl8qWvrnV7dGJ4k" //AppSecret
  102. YIDONG_HONGZE_KEY = "YIDONG20220816QxbNHiYNnnhT" //易董加密的盐值
  103. //EnPolicyReportUrl = "https://beta.internal.hzinsights.com/v2api/"
  104. EnPolicyReportUrl = "https://en.hzinsights.com/v2api/"
  105. //EDB_LIB_URL = "http://8.136.199.33:8300/edbapi/"
  106. EDB_LIB_URL = "http://127.0.0.1:8900/edbapi/"
  107. }
  108. //初始化系统用户角色map集合
  109. initRoleType()
  110. //初始化全时开放api配置
  111. initQsOpenApiConfig()
  112. }
  113. type RoleType struct {
  114. RoleId int `json:"role_id"`
  115. RoleName string `json:"role_name"`
  116. RoleType string `json:"role_type"`
  117. RoleTypeCode string `json:"role_type_code"`
  118. Role string `json:"role"`
  119. DepartmentId int `json:"department_id"`
  120. DepartmentName string `json:"department_name"`
  121. GroupId int `json:"group_id"`
  122. GroupName string `json:"group_name"`
  123. }
  124. var RoleTypeMap = map[int]RoleType{}
  125. func initRoleType() {
  126. if RunMode == "release" {
  127. RoleTypeMap[1] = RoleType{
  128. RoleId: 6,
  129. RoleName: "ficc研究员",
  130. RoleType: "ficc研究员",
  131. RoleTypeCode: "researcher",
  132. Role: "researcher",
  133. DepartmentId: 1,
  134. DepartmentName: "FICC研究部",
  135. GroupId: 8,
  136. GroupName: "无",
  137. }
  138. RoleTypeMap[2] = RoleType{
  139. RoleId: 10,
  140. RoleName: "权益研究员",
  141. RoleType: "权益研究员",
  142. RoleTypeCode: "rai_researcher",
  143. Role: "researcher",
  144. DepartmentId: 5,
  145. DepartmentName: "权益销售部",
  146. GroupId: 17,
  147. GroupName: "无",
  148. }
  149. RoleTypeMap[3] = RoleType{
  150. RoleId: 4,
  151. RoleName: "ficc销售",
  152. RoleType: "ficc销售",
  153. RoleTypeCode: "ficc_seller",
  154. Role: "sales",
  155. DepartmentId: 2,
  156. DepartmentName: "ficc销售部",
  157. GroupId: 9,
  158. GroupName: "无",
  159. }
  160. RoleTypeMap[4] = RoleType{
  161. RoleId: 5,
  162. RoleName: "权益销售",
  163. RoleType: "权益销售",
  164. RoleTypeCode: "rai_seller",
  165. Role: "sales",
  166. DepartmentId: 5,
  167. DepartmentName: "权益销售部",
  168. GroupId: 17,
  169. GroupName: "无",
  170. }
  171. } else {
  172. RoleTypeMap[1] = RoleType{
  173. RoleId: 6,
  174. RoleName: "ficc研究员",
  175. RoleType: "ficc研究员",
  176. RoleTypeCode: "researcher",
  177. Role: "researcher",
  178. DepartmentId: 1,
  179. DepartmentName: "FICC研究部",
  180. GroupId: 8,
  181. GroupName: "无",
  182. }
  183. RoleTypeMap[2] = RoleType{
  184. RoleId: 10,
  185. RoleName: "权益研究员",
  186. RoleType: "权益研究员",
  187. RoleTypeCode: "rai_researcher",
  188. Role: "researcher",
  189. DepartmentId: 5,
  190. DepartmentName: "权益销售部-王芳",
  191. GroupId: 17,
  192. GroupName: "无",
  193. }
  194. RoleTypeMap[3] = RoleType{
  195. RoleId: 4,
  196. RoleName: "ficc销售",
  197. RoleType: "ficc销售",
  198. RoleTypeCode: "ficc_seller",
  199. Role: "sales",
  200. DepartmentId: 2,
  201. DepartmentName: "ficc销售部",
  202. GroupId: 9,
  203. GroupName: "无",
  204. }
  205. RoleTypeMap[4] = RoleType{
  206. RoleId: 5,
  207. RoleName: "权益销售",
  208. RoleType: "权益销售",
  209. RoleTypeCode: "rai_seller",
  210. Role: "sales",
  211. DepartmentId: 5,
  212. DepartmentName: "权益销售部-王芳",
  213. GroupId: 17,
  214. GroupName: "无",
  215. }
  216. }
  217. }
  218. // initQsOpenApiConfig 全时开放api配置
  219. func initQsOpenApiConfig() {
  220. QsAppID = "ed1cc7c87c97089263fc899fbab193b0"
  221. QsSecretKey = "d92b91265dbbc5e3af44edfb82503635"
  222. if RunMode == "release" {
  223. QsUserId = 22330940
  224. QsUserName = "1406228535@qq.com"
  225. } else {
  226. QsUserId = 19896481
  227. QsUserName = "pyan@hzinsights.com"
  228. }
  229. }