config.go 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  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. func init() {
  41. tmpRunMode, err := web.AppConfig.String("run_mode")
  42. if err != nil {
  43. panic("配置文件读取run_mode错误 " + err.Error())
  44. }
  45. RunMode = tmpRunMode
  46. fmt.Println("RunMode:", RunMode)
  47. if RunMode == "" {
  48. localIp, err := GetLocalIP()
  49. fmt.Println("localIp:", localIp)
  50. if localIp == "10.0.0.123" {
  51. RunMode = "debug"
  52. } else {
  53. RunMode = "release"
  54. }
  55. fmt.Println("RunMode:", RunMode)
  56. configPath := `/home/code/config/hongze_open_api/conf/app.conf`
  57. fmt.Println("configPath:", configPath)
  58. err = web.LoadAppConfig("ini", configPath)
  59. if err != nil {
  60. fmt.Println("web.LoadAppConfig Err:" + err.Error())
  61. }
  62. }
  63. fmt.Println(RunMode, "模式")
  64. config, err := web.AppConfig.GetSection(RunMode)
  65. if err != nil {
  66. panic("配置文件读取错误 " + err.Error())
  67. }
  68. logs.Info(RunMode + " 模式")
  69. MYSQL_URL = config["mysql_url"]
  70. MYSQL_URL_RDDP = config["mysql_url_rddp"]
  71. // 初始化redis
  72. REDIS_CACHE = config["beego_cache"]
  73. if len(REDIS_CACHE) <= 0 {
  74. panic("redis链接参数没有配置")
  75. }
  76. Rc, Re = cache.NewCache(REDIS_CACHE) //初始化缓存
  77. if Re != nil {
  78. fmt.Println(Re)
  79. panic(Re)
  80. }
  81. //日志类
  82. if RunMode == "release" {
  83. logDir := `/data/rdlucklog/hongze_open_api`
  84. ApiLog = log.Init("20060102.api", logDir)
  85. ResearchReportUrl = "https://details.hzinsights.com/"
  86. NewResearchReportUrl = "https://details.hzinsights.com/"
  87. ReportAppid = "CQWx3EqDLNk7bVHo" //Appid
  88. ReportSecret = "vRVFCk182Hpv8CyrHsxaHhA3CgGhh4Uu" //AppSecret
  89. YIDONG_HONGZE_KEY = "YIDONG20220816VshIcFonYccA" //易董加密的盐值
  90. EnPolicyReportUrl = "https://en.hzinsights.com/v2api/"
  91. } else {
  92. ApiLog = log.Init("20060102.api")
  93. ResearchReportUrl = "http://advisoryadmin.brilliantstart.cn/xcx_h5/"
  94. NewResearchReportUrl = "http://xcxh5test.hzinsights.com/xcx_h5/"
  95. ReportAppid = "VH2ou4EKlYZz58Uj" //Appid
  96. ReportSecret = "Q6Y5vwmx1IAA9OPkobl8qWvrnV7dGJ4k" //AppSecret
  97. YIDONG_HONGZE_KEY = "YIDONG20220816QxbNHiYNnnhT" //易董加密的盐值
  98. //EnPolicyReportUrl = "https://beta.internal.hzinsights.com/v2api/"
  99. EnPolicyReportUrl = "https://en.hzinsights.com/v2api/"
  100. }
  101. //初始化系统用户角色map集合
  102. initRoleType()
  103. //初始化全时开放api配置
  104. initQsOpenApiConfig()
  105. }
  106. type RoleType struct {
  107. RoleId int `json:"role_id"`
  108. RoleName string `json:"role_name"`
  109. RoleType string `json:"role_type"`
  110. RoleTypeCode string `json:"role_type_code"`
  111. Role string `json:"role"`
  112. DepartmentId int `json:"department_id"`
  113. DepartmentName string `json:"department_name"`
  114. GroupId int `json:"group_id"`
  115. GroupName string `json:"group_name"`
  116. }
  117. var RoleTypeMap = map[int]RoleType{}
  118. func initRoleType() {
  119. if RunMode == "release" {
  120. RoleTypeMap[1] = RoleType{
  121. RoleId: 6,
  122. RoleName: "ficc研究员",
  123. RoleType: "ficc研究员",
  124. RoleTypeCode: "researcher",
  125. Role: "researcher",
  126. DepartmentId: 1,
  127. DepartmentName: "FICC研究部",
  128. GroupId: 8,
  129. GroupName: "无",
  130. }
  131. RoleTypeMap[2] = RoleType{
  132. RoleId: 10,
  133. RoleName: "权益研究员",
  134. RoleType: "权益研究员",
  135. RoleTypeCode: "rai_researcher",
  136. Role: "researcher",
  137. DepartmentId: 5,
  138. DepartmentName: "权益销售部",
  139. GroupId: 17,
  140. GroupName: "无",
  141. }
  142. RoleTypeMap[3] = RoleType{
  143. RoleId: 4,
  144. RoleName: "ficc销售",
  145. RoleType: "ficc销售",
  146. RoleTypeCode: "ficc_seller",
  147. Role: "sales",
  148. DepartmentId: 2,
  149. DepartmentName: "ficc销售部",
  150. GroupId: 9,
  151. GroupName: "无",
  152. }
  153. RoleTypeMap[4] = RoleType{
  154. RoleId: 5,
  155. RoleName: "权益销售",
  156. RoleType: "权益销售",
  157. RoleTypeCode: "rai_seller",
  158. Role: "sales",
  159. DepartmentId: 5,
  160. DepartmentName: "权益销售部",
  161. GroupId: 17,
  162. GroupName: "无",
  163. }
  164. } else {
  165. RoleTypeMap[1] = RoleType{
  166. RoleId: 6,
  167. RoleName: "ficc研究员",
  168. RoleType: "ficc研究员",
  169. RoleTypeCode: "researcher",
  170. Role: "researcher",
  171. DepartmentId: 1,
  172. DepartmentName: "FICC研究部",
  173. GroupId: 8,
  174. GroupName: "无",
  175. }
  176. RoleTypeMap[2] = RoleType{
  177. RoleId: 10,
  178. RoleName: "权益研究员",
  179. RoleType: "权益研究员",
  180. RoleTypeCode: "rai_researcher",
  181. Role: "researcher",
  182. DepartmentId: 5,
  183. DepartmentName: "权益销售部-王芳",
  184. GroupId: 17,
  185. GroupName: "无",
  186. }
  187. RoleTypeMap[3] = RoleType{
  188. RoleId: 4,
  189. RoleName: "ficc销售",
  190. RoleType: "ficc销售",
  191. RoleTypeCode: "ficc_seller",
  192. Role: "sales",
  193. DepartmentId: 2,
  194. DepartmentName: "ficc销售部",
  195. GroupId: 9,
  196. GroupName: "无",
  197. }
  198. RoleTypeMap[4] = RoleType{
  199. RoleId: 5,
  200. RoleName: "权益销售",
  201. RoleType: "权益销售",
  202. RoleTypeCode: "rai_seller",
  203. Role: "sales",
  204. DepartmentId: 5,
  205. DepartmentName: "权益销售部-王芳",
  206. GroupId: 17,
  207. GroupName: "无",
  208. }
  209. }
  210. }
  211. // initQsOpenApiConfig 全时开放api配置
  212. func initQsOpenApiConfig() {
  213. QsAppID = "ed1cc7c87c97089263fc899fbab193b0"
  214. QsSecretKey = "d92b91265dbbc5e3af44edfb82503635"
  215. if RunMode == "release" {
  216. QsUserId = 22330940
  217. QsUserName = "1406228535@qq.com"
  218. } else {
  219. QsUserId = 19896481
  220. QsUserName = "pyan@hzinsights.com"
  221. }
  222. }