config.go 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  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. }
  100. //初始化系统用户角色map集合
  101. initRoleType()
  102. //初始化全时开放api配置
  103. initQsOpenApiConfig()
  104. }
  105. type RoleType struct {
  106. RoleId int `json:"role_id"`
  107. RoleName string `json:"role_name"`
  108. RoleType string `json:"role_type"`
  109. RoleTypeCode string `json:"role_type_code"`
  110. Role string `json:"role"`
  111. DepartmentId int `json:"department_id"`
  112. DepartmentName string `json:"department_name"`
  113. GroupId int `json:"group_id"`
  114. GroupName string `json:"group_name"`
  115. }
  116. var RoleTypeMap = map[int]RoleType{}
  117. func initRoleType() {
  118. if RunMode == "release" {
  119. RoleTypeMap[1] = RoleType{
  120. RoleId: 6,
  121. RoleName: "ficc研究员",
  122. RoleType: "ficc研究员",
  123. RoleTypeCode: "researcher",
  124. Role: "researcher",
  125. DepartmentId: 1,
  126. DepartmentName: "FICC研究部",
  127. GroupId: 8,
  128. GroupName: "无",
  129. }
  130. RoleTypeMap[2] = RoleType{
  131. RoleId: 10,
  132. RoleName: "权益研究员",
  133. RoleType: "权益研究员",
  134. RoleTypeCode: "rai_researcher",
  135. Role: "researcher",
  136. DepartmentId: 5,
  137. DepartmentName: "权益销售部",
  138. GroupId: 17,
  139. GroupName: "无",
  140. }
  141. RoleTypeMap[3] = RoleType{
  142. RoleId: 4,
  143. RoleName: "ficc销售",
  144. RoleType: "ficc销售",
  145. RoleTypeCode: "ficc_seller",
  146. Role: "sales",
  147. DepartmentId: 2,
  148. DepartmentName: "ficc销售部",
  149. GroupId: 9,
  150. GroupName: "无",
  151. }
  152. RoleTypeMap[4] = RoleType{
  153. RoleId: 5,
  154. RoleName: "权益销售",
  155. RoleType: "权益销售",
  156. RoleTypeCode: "rai_seller",
  157. Role: "sales",
  158. DepartmentId: 5,
  159. DepartmentName: "权益销售部",
  160. GroupId: 17,
  161. GroupName: "无",
  162. }
  163. } else {
  164. RoleTypeMap[1] = RoleType{
  165. RoleId: 6,
  166. RoleName: "ficc研究员",
  167. RoleType: "ficc研究员",
  168. RoleTypeCode: "researcher",
  169. Role: "researcher",
  170. DepartmentId: 1,
  171. DepartmentName: "FICC研究部",
  172. GroupId: 8,
  173. GroupName: "无",
  174. }
  175. RoleTypeMap[2] = RoleType{
  176. RoleId: 10,
  177. RoleName: "权益研究员",
  178. RoleType: "权益研究员",
  179. RoleTypeCode: "rai_researcher",
  180. Role: "researcher",
  181. DepartmentId: 5,
  182. DepartmentName: "权益销售部-王芳",
  183. GroupId: 17,
  184. GroupName: "无",
  185. }
  186. RoleTypeMap[3] = RoleType{
  187. RoleId: 4,
  188. RoleName: "ficc销售",
  189. RoleType: "ficc销售",
  190. RoleTypeCode: "ficc_seller",
  191. Role: "sales",
  192. DepartmentId: 2,
  193. DepartmentName: "ficc销售部",
  194. GroupId: 9,
  195. GroupName: "无",
  196. }
  197. RoleTypeMap[4] = RoleType{
  198. RoleId: 5,
  199. RoleName: "权益销售",
  200. RoleType: "权益销售",
  201. RoleTypeCode: "rai_seller",
  202. Role: "sales",
  203. DepartmentId: 5,
  204. DepartmentName: "权益销售部-王芳",
  205. GroupId: 17,
  206. GroupName: "无",
  207. }
  208. }
  209. }
  210. // initQsOpenApiConfig 全时开放api配置
  211. func initQsOpenApiConfig() {
  212. QsAppID = "ed1cc7c87c97089263fc899fbab193b0"
  213. QsSecretKey = "d92b91265dbbc5e3af44edfb82503635"
  214. if RunMode == "release" {
  215. QsUserId = 22330940
  216. QsUserName = "1406228535@qq.com"
  217. } else {
  218. QsUserId = 19896481
  219. QsUserName = "pyan@hzinsights.com"
  220. }
  221. }