smm_api.go 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. package data_manage
  2. import (
  3. "encoding/json"
  4. "eta/eta_api/models"
  5. "eta/eta_api/models/data_manage"
  6. "eta/eta_api/utils"
  7. "fmt"
  8. "github.com/rdlucklib/rdluck_tools/paging"
  9. "strings"
  10. )
  11. // SmmIndexList
  12. // @Title 有色api数据指标列表
  13. // @Description 有色api数据指标列表
  14. // @Success 200 {object} data_manage.SmmClassify
  15. // @router /smm/api/list [post]
  16. func (this *EdbInfoController) SmmApiList() {
  17. br := new(models.BaseResponse).Init()
  18. defer func() {
  19. this.Data["json"] = br
  20. this.ServeJSON()
  21. }()
  22. sysUser := this.SysUser
  23. if sysUser == nil {
  24. br.Msg = "请登录"
  25. br.ErrMsg = "请登录,SysUser Is Empty"
  26. br.Ret = 408
  27. return
  28. }
  29. var req data_manage.SmmIndexListReq
  30. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  31. if err != nil {
  32. br.Msg = "参数解析异常!"
  33. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  34. return
  35. }
  36. types := req.Types
  37. frequency := req.Frequency
  38. dataState := req.DataState
  39. keyword := req.Keyword
  40. indexCodes := req.IndexCodes
  41. sortType := req.SortType
  42. sortParam := req.SortParam
  43. pageSize := req.PageSize
  44. currentIndex := req.CurrentIndex
  45. if sortType == "" {
  46. sortType = "desc"
  47. }
  48. var startSize int
  49. if pageSize <= 0 {
  50. pageSize = utils.PageSize20
  51. }
  52. if currentIndex <= 0 {
  53. currentIndex = 1
  54. }
  55. startSize = utils.StartIndex(currentIndex, pageSize)
  56. var condition string
  57. var pars []interface{}
  58. if len(types) > 0 {
  59. condition += " AND ( "
  60. for _, v := range types {
  61. typeArr := strings.Split(v,",")
  62. for i, v := range typeArr {
  63. if i == 0 {
  64. condition += " ( "
  65. }
  66. typeStr := "type_"
  67. typeStr += fmt.Sprintf("%d", i+1)
  68. condition += typeStr+" =? "
  69. pars = append(pars, v)
  70. if i == len(typeArr) - 1 {
  71. condition += " ) "
  72. } else {
  73. condition += " AND "
  74. }
  75. }
  76. condition += " OR "
  77. }
  78. condition = strings.Trim(condition, "OR ")
  79. condition += " ) "
  80. }
  81. if frequency != "" {
  82. frequencyArr := strings.Split(frequency,",")
  83. condition += ` AND frequency IN (` + utils.GetOrmInReplace(len(frequencyArr)) + `) `
  84. pars = append(pars, frequencyArr)
  85. }
  86. if dataState != "" {
  87. stateArr := strings.Split(dataState,",")
  88. if strings.Contains(dataState, "normal") {
  89. stateArr = append(stateArr, "")
  90. condition += ` AND data_state IN (` + utils.GetOrmInReplace(len(stateArr)) + `) `
  91. pars = append(pars, stateArr)
  92. } else {
  93. condition += ` AND data_state IN (` + utils.GetOrmInReplace(len(stateArr)) + `) `
  94. pars = append(pars, stateArr)
  95. }
  96. }
  97. if keyword != "" {
  98. keyWordArr := strings.Split(keyword, " ")
  99. if len(keyWordArr) > 0 {
  100. condition += " AND ( "
  101. for _, v := range keyWordArr {
  102. condition += ` CONCAT(index_name,index_code) LIKE '%` + v + `%' OR`
  103. }
  104. condition += ` '%` + strings.Replace(keyword, " ", "", -1) + `%' ) `
  105. //condition = strings.TrimRight(condition, "OR")
  106. //condition += " ) "
  107. }
  108. }
  109. if indexCodes != "" {
  110. indexCodeArr := strings.Split(indexCodes,",")
  111. indexCodeStr := ""
  112. for _, v := range indexCodeArr {
  113. indexCodeStr += "'" + v + "',"
  114. }
  115. indexCodeStr = strings.TrimRight(indexCodeStr, ",")
  116. condition += " AND index_code IN (" + indexCodeStr + ") "
  117. }
  118. sortStr := ``
  119. if sortParam != `` {
  120. sortStr = fmt.Sprintf("%s %s,modify_time desc ", utils.PascalToSnake(sortParam), sortType)
  121. } else {
  122. sortStr = " modify_time desc "
  123. }
  124. total, err := data_manage.GetSmmIndexDataListCount(condition, pars)
  125. if err!= nil {
  126. br.Msg = "获取指标总数失败"
  127. br.ErrMsg = "获取指标总数失败,Err:" + err.Error()
  128. return
  129. }
  130. indexList, err := data_manage.GetSmmIndexDataList(condition, sortStr, pars, startSize, pageSize)
  131. if err != nil {
  132. br.Msg = "获取指标列表失败"
  133. br.ErrMsg = "获取指标列表失败,Err:" + err.Error()
  134. return
  135. }
  136. for _, v := range indexList {
  137. v.TypeAll = v.Type1 + "/" + v.Type2 + "/" + v.Type3
  138. }
  139. page := paging.GetPaging(currentIndex, pageSize, total)
  140. var ret data_manage.BaseFromSmmIndexListResp
  141. ret.List = indexList
  142. ret.Paging = page
  143. br.Ret = 200
  144. br.Success = true
  145. br.Msg = "获取成功"
  146. br.Data = ret
  147. }
  148. // SmmApiTypeList
  149. // @Title 有色api数据分类列表
  150. // @Description 有色api数据分类列表
  151. // @Success 200 {object} data_manage.SmmClassify
  152. // @router /smm/api/type/list [get]
  153. func (this *EdbInfoController) SmmApiTypeList() {
  154. br := new(models.BaseResponse).Init()
  155. defer func() {
  156. this.Data["json"] = br
  157. this.ServeJSON()
  158. }()
  159. sysUser := this.SysUser
  160. if sysUser == nil {
  161. br.Msg = "请登录"
  162. br.ErrMsg = "请登录,SysUser Is Empty"
  163. br.Ret = 408
  164. return
  165. }
  166. typeList, err := data_manage.GetBaseFromSmmIndexTypeList()
  167. if err != nil {
  168. br.Msg = "获取指标列表失败"
  169. br.ErrMsg = "获取指标列表失败,Err:" + err.Error()
  170. return
  171. }
  172. resp := make([]data_manage.TypeListRespItem, 0)
  173. typeMap := make(map[string]map[string][]string)
  174. //type2Map := make(map[string][]string)
  175. //type2Map := make(map[string]data_manage.TypeListRespItem)
  176. // 初始化
  177. for _, v := range typeList {
  178. if v.Type1 != ""{
  179. if _, ok := typeMap[v.Type1];!ok {
  180. typeMap[v.Type1] = make(map[string][]string)
  181. } else {
  182. if _, ok := typeMap[v.Type1][v.Type2];!ok {
  183. typeMap[v.Type1][v.Type2] = make([]string, 0)
  184. }
  185. }
  186. }
  187. }
  188. for _, v := range typeList {
  189. if v.Type1 != ""{
  190. typeMap[v.Type1][v.Type2] = append(typeMap[v.Type1][v.Type2], v.Type3)
  191. }
  192. }
  193. for type1, type2Map := range typeMap {
  194. var item data_manage.TypeListRespItem
  195. item.Type = type1
  196. for type2, type3List := range type2Map {
  197. var child data_manage.TypeListRespItem
  198. child.Type = type2
  199. for _, type3 := range type3List {
  200. child.Child = append(child.Child, data_manage.TypeListRespItem{type3,nil})
  201. }
  202. item.Child = append(item.Child, child)
  203. }
  204. resp = append(resp, item)
  205. }
  206. br.Ret = 200
  207. br.Success = true
  208. br.Msg = "获取成功"
  209. br.Data = resp
  210. }