edb_info_updates.go 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329
  1. package data_manage
  2. import (
  3. "eta_gn/eta_api/models"
  4. "eta_gn/eta_api/models/data_manage"
  5. "eta_gn/eta_api/services/data"
  6. "eta_gn/eta_api/utils"
  7. "fmt"
  8. "github.com/rdlucklib/rdluck_tools/paging"
  9. "time"
  10. )
  11. // @router /edb_info/updates/statistical [get]
  12. func (this *EdbInfoController) EdbInfoUpdatesStatistical() {
  13. br := new(models.BaseResponse).Init()
  14. defer func() {
  15. this.Data["json"] = br
  16. this.ServeJSON()
  17. }()
  18. var condition string
  19. var pars []interface{}
  20. condition += ` AND is_update=? AND edb_info_type = ?`
  21. pars = append(pars, 2, 0)
  22. updateList, _ := data_manage.GetUpdatesStatistical(condition, pars)
  23. resp := new(data_manage.UpdatesStatisticalResp)
  24. for _, v := range updateList {
  25. if v.Source == utils.DATA_SOURCE_THS {
  26. resp.ThsUpdate = v.Total
  27. }
  28. if v.Source == utils.DATA_SOURCE_WIND {
  29. resp.WindUpdate = v.Total
  30. }
  31. if v.Source == utils.DATA_SOURCE_PB {
  32. resp.PbUpdate = v.Total
  33. }
  34. if v.Source == utils.DATA_SOURCE_PB_FINANCE {
  35. resp.PbFinanceUpdate = v.Total
  36. }
  37. if v.Source == utils.DATA_SOURCE_LZ {
  38. resp.LzUpdate = v.Total
  39. }
  40. if v.Source == utils.DATA_SOURCE_YS {
  41. resp.SmmUpdate = v.Total
  42. }
  43. if v.Source == utils.DATA_SOURCE_GL {
  44. resp.MysteelUpdate = v.Total
  45. }
  46. if v.Source == utils.DATA_SOURCE_MANUAL {
  47. resp.ManualUpdate = v.Total
  48. }
  49. if v.Source == utils.DATA_SOURCE_ZZ {
  50. resp.ZzUpdate = v.Total
  51. }
  52. if v.Source == utils.DATA_SOURCE_DL {
  53. resp.DlUpdate = v.Total
  54. }
  55. if v.Source == utils.DATA_SOURCE_SH {
  56. resp.ShUpdate = v.Total
  57. }
  58. if v.Source == utils.DATA_SOURCE_CFFEX {
  59. resp.CffexUpdate = v.Total
  60. }
  61. if v.Source == utils.DATA_SOURCE_SHFE {
  62. resp.ShfeUpdate = v.Total
  63. }
  64. if v.Source == utils.DATA_SOURCE_GIE {
  65. resp.GieUpdate = v.Total
  66. }
  67. if v.EdbType == 2 {
  68. resp.CalculateUpdate += v.Total
  69. }
  70. if v.Source == utils.DATA_SOURCE_LT {
  71. resp.LtUpdate = v.Total
  72. }
  73. if v.Source == utils.DATA_SOURCE_COAL {
  74. resp.CoalUpdate = v.Total
  75. }
  76. if v.Source == utils.DATA_SOURCE_GOOGLE_TRAVEL {
  77. resp.GoogleTravelUpdate = v.Total
  78. }
  79. if v.Source == utils.DATA_SOURCE_EIA_STEO {
  80. resp.EiaSteoUpdate = v.Total
  81. }
  82. if v.Source == utils.DATA_SOURCE_COM_TRADE {
  83. resp.UNUpdate = v.Total
  84. }
  85. if v.Source == utils.DATA_SOURCE_SCI {
  86. resp.SciUpdate = v.Total
  87. }
  88. if v.Source == utils.DATA_SOURCE_BAIINFO {
  89. resp.BaiinfoUpdate = v.Total
  90. }
  91. if v.Source == utils.DATA_SOURCE_NATIONAL_STATISTICS {
  92. resp.NationalStatisticsUpdate = v.Total
  93. }
  94. if v.Source == utils.DATA_SOURCE_FUBAO {
  95. resp.FubaoUpdate = v.Total
  96. }
  97. }
  98. var notUpdateCondition string
  99. var notUpdatePars []interface{}
  100. notUpdateCondition += ` AND is_update=? AND edb_info_type = ? `
  101. notUpdatePars = append(notUpdatePars, 1, 0)
  102. notUpdateList, _ := data_manage.GetUpdatesStatistical(notUpdateCondition, notUpdatePars)
  103. for _, v := range notUpdateList {
  104. if v.Source == utils.DATA_SOURCE_THS {
  105. resp.ThsNotUpdate = v.Total
  106. }
  107. if v.Source == utils.DATA_SOURCE_WIND {
  108. resp.WindNotUpdate = v.Total
  109. }
  110. if v.Source == utils.DATA_SOURCE_PB {
  111. resp.PbNotUpdate = v.Total
  112. }
  113. if v.Source == utils.DATA_SOURCE_PB_FINANCE {
  114. resp.PbFinanceNotUpdate = v.Total
  115. }
  116. if v.Source == utils.DATA_SOURCE_LZ {
  117. resp.LzNotUpdate = v.Total
  118. }
  119. if v.Source == utils.DATA_SOURCE_YS {
  120. resp.SmmNotUpdate = v.Total
  121. }
  122. if v.Source == utils.DATA_SOURCE_GL {
  123. resp.MysteelNotUpdate = v.Total
  124. }
  125. if v.Source == utils.DATA_SOURCE_MANUAL {
  126. resp.ManualNotUpdate = v.Total
  127. }
  128. if v.Source == utils.DATA_SOURCE_ZZ {
  129. resp.ZzNotUpdate = v.Total
  130. }
  131. if v.Source == utils.DATA_SOURCE_DL {
  132. resp.DlNotUpdate = v.Total
  133. }
  134. if v.Source == utils.DATA_SOURCE_SH {
  135. resp.ShNotUpdate = v.Total
  136. }
  137. if v.Source == utils.DATA_SOURCE_CFFEX {
  138. resp.CffexNotUpdate = v.Total
  139. }
  140. if v.Source == utils.DATA_SOURCE_SHFE {
  141. resp.ShfeNotUpdate = v.Total
  142. }
  143. if v.Source == utils.DATA_SOURCE_GIE {
  144. resp.GieNotUpdate = v.Total
  145. }
  146. if v.EdbType == 2 {
  147. resp.CalculateNotUpdate += v.Total
  148. }
  149. if v.Source == utils.DATA_SOURCE_LT {
  150. resp.LtNotUpdate = v.Total
  151. }
  152. if v.Source == utils.DATA_SOURCE_COAL {
  153. resp.CoalNotUpdate = v.Total
  154. }
  155. if v.Source == utils.DATA_SOURCE_GOOGLE_TRAVEL {
  156. resp.GoogleTravelNotUpdate = v.Total
  157. }
  158. if v.Source == utils.DATA_SOURCE_EIA_STEO {
  159. resp.EiaSteoNotUpdate = v.Total
  160. }
  161. if v.Source == utils.DATA_SOURCE_COM_TRADE {
  162. resp.UNNotUpdate = v.Total
  163. }
  164. if v.Source == utils.DATA_SOURCE_SCI {
  165. resp.SciNotUpdate = v.Total
  166. }
  167. if v.Source == utils.DATA_SOURCE_BAIINFO {
  168. resp.BaiinfoNotUpdate = v.Total
  169. }
  170. if v.Source == utils.DATA_SOURCE_NATIONAL_STATISTICS {
  171. resp.NationalStatisticsNotUpdate = v.Total
  172. }
  173. if v.Source == utils.DATA_SOURCE_FUBAO {
  174. resp.FubaoNotUpdate = v.Total
  175. }
  176. }
  177. br.Ret = 200
  178. br.Success = true
  179. br.Msg = "获取成功"
  180. br.Data = resp
  181. }
  182. // @router /edb_info/updates/list [get]
  183. func (this *EdbInfoController) EdbInfoUpdatesList() {
  184. br := new(models.BaseResponse).Init()
  185. defer func() {
  186. this.Data["json"] = br
  187. this.ServeJSON()
  188. }()
  189. sysUser := this.SysUser
  190. if sysUser == nil {
  191. br.Msg = "请登录"
  192. br.ErrMsg = "请登录,SysUser Is Empty"
  193. br.Ret = 408
  194. return
  195. }
  196. status, _ := this.GetInt("Status")
  197. source, _ := this.GetInt("Source")
  198. pageSize, _ := this.GetInt("PageSize")
  199. currentIndex, _ := this.GetInt("CurrentIndex")
  200. var startSize int
  201. if pageSize <= 0 {
  202. pageSize = utils.PageSize20
  203. }
  204. if currentIndex <= 0 {
  205. currentIndex = 1
  206. }
  207. startSize = paging.StartIndex(currentIndex, pageSize)
  208. var condition string
  209. var pars []interface{}
  210. condition += ` AND edb_info_type = ? `
  211. pars = append(pars, 0)
  212. if status > 0 {
  213. condition += ` AND is_update=?`
  214. pars = append(pars, status)
  215. }
  216. if source == 99 {
  217. condition += ` AND edb_type=? `
  218. pars = append(pars, 2)
  219. }
  220. if source > 0 && source != 99 {
  221. condition += ` AND source=?`
  222. pars = append(pars, source)
  223. }
  224. condition += ` ORDER BY modify_time ASC `
  225. list, err := data_manage.GetUpdatesList(condition, pars, startSize, pageSize)
  226. if err != nil {
  227. br.Msg = "获取数据失败"
  228. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  229. return
  230. }
  231. total, err := data_manage.GetUpdatesListTotal(condition, pars)
  232. if err != nil {
  233. br.Msg = "获取数据失败"
  234. br.ErrMsg = "获取更新数据总数失败,Err:" + err.Error()
  235. return
  236. }
  237. page := paging.GetPaging(currentIndex, pageSize, total)
  238. resp := new(data_manage.UpdatesListResp)
  239. resp.List = list
  240. resp.Total = total
  241. resp.Paging = page
  242. br.Ret = 200
  243. br.Success = true
  244. br.Msg = "获取成功"
  245. br.Data = resp
  246. }
  247. // @router /edb_info/updates [post]
  248. func (this *EdbInfoController) EdbInfoUpdates() {
  249. br := new(models.BaseResponse).Init()
  250. setNxKey := "EDB_INFO_UPDATES"
  251. deleteCache := true
  252. defer func() {
  253. if deleteCache {
  254. utils.Rc.Delete(setNxKey)
  255. }
  256. this.Data["json"] = br
  257. this.ServeJSON()
  258. }()
  259. sysUser := this.SysUser
  260. if sysUser == nil {
  261. br.Msg = "请登录"
  262. br.ErrMsg = "请登录,SysUser Is Empty"
  263. br.Ret = 408
  264. return
  265. }
  266. if !utils.Rc.SetNX(setNxKey, 1, 30*time.Minute) {
  267. deleteCache = false
  268. br.Msg = "系统处理中,请勿重复操作!"
  269. br.IsSendEmail = false
  270. return
  271. }
  272. list, err := data_manage.GetAllUpdatesList()
  273. if err != nil {
  274. br.Msg = "获取数据失败"
  275. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  276. return
  277. }
  278. for _, v := range list {
  279. err = data.EdbInfoRefresh(v, false)
  280. if err != nil {
  281. br.Msg = "刷新失败"
  282. br.ErrMsg = "刷新指标失败,指标id:" + fmt.Sprint(v.EdbInfoId) + ", Err:" + err.Error()
  283. return
  284. }
  285. }
  286. br.Ret = 200
  287. br.Success = true
  288. br.Msg = "更新成功"
  289. }
  290. // @router /edb_info/updates/check [post]
  291. func (this *EdbInfoController) EdbInfoUpdatesCheck() {
  292. br := new(models.BaseResponse).Init()
  293. setNxKey := "EDB_INFO_UPDATES"
  294. defer func() {
  295. this.Data["json"] = br
  296. this.ServeJSON()
  297. }()
  298. status := 0
  299. if utils.Rc.IsExist(setNxKey) {
  300. status = 1
  301. } else {
  302. status = 2
  303. }
  304. br.Ret = 200
  305. br.Success = true
  306. br.Msg = "检测成功"
  307. br.Data = status
  308. }