utilController.go 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. package controller
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "iot_manager_service/app/device/model"
  5. "iot_manager_service/app/device/service"
  6. "iot_manager_service/app/middleware"
  7. "iot_manager_service/util/common"
  8. "net/http"
  9. "sort"
  10. "strconv"
  11. )
  12. // 工具服务
  13. var Util = new(utilCtl)
  14. type utilCtl struct{}
  15. // GetModelList 获取厂家/品牌/型号列表
  16. // 查询类型 type:1-厂家,2-品牌,3-型号
  17. //deviceType 设备类型
  18. //0-摄像头
  19. //1 灯控
  20. //2 信息屏
  21. //3 配电箱
  22. //4 网关
  23. //5 环境监测
  24. //6 ZigBee
  25. //7 一键告警终端
  26. //8 一键告警服务端
  27. //11 桥梁传感器
  28. //12 ip音柱
  29. //13 井盖
  30. //14 垃圾桶
  31. func (c *utilCtl) GetModelList(ctx *gin.Context) {
  32. t := ctx.Query("type")
  33. d := ctx.Query("deviceType")
  34. id := ctx.Query("id")
  35. pid := ctx.Query("pid")
  36. modeType, err := strconv.Atoi(t)
  37. if err != nil || modeType < 1 || modeType > 3 {
  38. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse("type invalid", nil))
  39. return
  40. }
  41. modeType++ //前端传入的1和2,实际是2和3
  42. deviceType, err := strconv.Atoi(d)
  43. if err != nil {
  44. ctx.JSON(http.StatusOK, common.ParamsInvalidResponse("deviceType invalid", nil))
  45. return
  46. }
  47. parentId := -1
  48. if id != "" {
  49. parentId, _ = strconv.Atoi(id)
  50. } else if pid != "" {
  51. parentId, _ = strconv.Atoi(pid)
  52. }
  53. value, _ := ctx.Get(middleware.Authorization)
  54. claims := value.(*middleware.Claims)
  55. var result []model.VendorDetail
  56. if modeType == model.TypeVendor {
  57. vendors, err := service.UtilService.GetDeviceVendor(claims.TenantId, deviceType)
  58. if err != nil {
  59. ctx.JSON(http.StatusOK, common.FailResponse(err.Error(), nil))
  60. return
  61. }
  62. for _, vendor := range vendors {
  63. result = append(result, model.VendorDetail{
  64. Id: vendor.ID,
  65. ParentId: vendor.ParentId,
  66. Vendor: vendor.VendorValue,
  67. })
  68. }
  69. } else if modeType == model.TypeBrand {
  70. vendors, err := service.UtilService.GetDeviceBrand(claims.TenantId, deviceType)
  71. if err != nil {
  72. ctx.JSON(http.StatusOK, common.FailResponse(err.Error(), nil))
  73. return
  74. }
  75. for _, vendor := range vendors {
  76. result = append(result, model.VendorDetail{
  77. Id: vendor.ID,
  78. ParentId: vendor.ParentId,
  79. Brand: vendor.VendorValue,
  80. })
  81. }
  82. } else if modeType == model.TypeModel {
  83. vendors, err := service.UtilService.GetDeviceModel(claims.TenantId, deviceType, parentId)
  84. if err != nil {
  85. ctx.JSON(http.StatusOK, common.FailResponse(err.Error(), nil))
  86. return
  87. }
  88. for _, vendor := range vendors {
  89. result = append(result, model.VendorDetail{
  90. Id: vendor.ID,
  91. ParentId: vendor.ParentId,
  92. Model: vendor.VendorValue,
  93. })
  94. }
  95. }
  96. ctx.JSON(http.StatusOK, common.SuccessResponse("", result))
  97. }
  98. func (c *utilCtl) GetTenantCode(ctx *gin.Context) {
  99. value, _ := ctx.Get(middleware.Authorization)
  100. claims := value.(*middleware.Claims)
  101. id := claims.TenantId
  102. code, _ := service.UtilService.GetTenantCode(id)
  103. code.CityCode = ctx.Query("type") + code.CityCode
  104. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, code))
  105. }
  106. type vendorList struct {
  107. Records []vendorListNew `json:"records"`
  108. Total int `json:"total"`
  109. Size int `json:"size"`
  110. Current int `json:"current"`
  111. Orders []interface{} `json:"orders"`
  112. OptimizeCountSQL bool `json:"optimizeCountSql"`
  113. HitCount bool `json:"hitCount"`
  114. SearchCount bool `json:"searchCount"`
  115. Pages int `json:"pages"`
  116. }
  117. type vendorListNew struct {
  118. ID int `json:"id"`
  119. Vender string `json:"vender"`
  120. Brand string `json:"brand"`
  121. Model string `json:"model"`
  122. Pid int
  123. DeviceType int `json:"deviceType"`
  124. }
  125. func (c *utilCtl) GetVenderList(ctx *gin.Context) {
  126. var result vendorList
  127. deviceType := ctx.Query("deviceType")
  128. if deviceType == "" {
  129. deviceType = "-1"
  130. }
  131. venderValue := ctx.Query("venderValue")
  132. current := ctx.Query("current")
  133. size := ctx.Query("size")
  134. offset, _ := strconv.Atoi(current)
  135. limit, _ := strconv.Atoi(size)
  136. if offset == 0 {
  137. offset = 1
  138. limit = 10
  139. }
  140. value, _ := ctx.Get(middleware.Authorization)
  141. claims := value.(*middleware.Claims)
  142. deviceTypeInt, _ := strconv.Atoi(deviceType)
  143. vendors, _, err := service.UtilService.GetDeviceVendorList(claims.TenantId, venderValue, deviceTypeInt, offset, limit)
  144. vendorsMap := make(map[int]vendorListNew)
  145. vendorListNews1 := make(map[int]vendorListNew)
  146. vendorListNews2 := make(map[int]vendorListNew)
  147. vendorListNews3 := make(map[int]vendorListNew)
  148. for _, vendor := range vendors {
  149. vendorsMap[vendor.ID] = vendorListNew{
  150. ID: vendor.ID,
  151. Vender: vendor.VendorValue,
  152. DeviceType: vendor.DeviceType,
  153. Pid: vendor.ParentId,
  154. }
  155. if vendor.VendorType == 3 {
  156. vendorListNews3[vendor.ID] = vendorsMap[vendor.ID]
  157. }
  158. if vendor.VendorType == 2 {
  159. vendorListNews2[vendor.ID] = vendorsMap[vendor.ID]
  160. }
  161. if vendor.VendorType == 1 {
  162. vendorListNews1[vendor.ID] = vendorsMap[vendor.ID]
  163. }
  164. }
  165. var vendorListNews []vendorListNew
  166. for _, listNew := range vendorListNews3 {
  167. vendorListNews = append(vendorListNews, vendorListNew{
  168. ID: listNew.ID,
  169. Vender: vendorListNews1[vendorListNews2[listNew.Pid].Pid].Vender,
  170. Brand: vendorListNews2[listNew.Pid].Vender,
  171. Model: listNew.Vender,
  172. DeviceType: listNew.DeviceType,
  173. Pid: listNew.Pid,
  174. })
  175. }
  176. sort.Slice(vendorListNews, func(i, j int) bool {
  177. return vendorListNews[i].ID > vendorListNews[j].ID
  178. })
  179. if err != nil {
  180. ctx.JSON(http.StatusOK, common.FailResponse(err.Error(), nil))
  181. return
  182. }
  183. result.Records = vendorListNews
  184. result.Total = len(vendorListNews)
  185. ctx.JSON(http.StatusOK, common.SuccessResponse("", result))
  186. }
  187. func (c *utilCtl) GetVenderDetail(ctx *gin.Context) {
  188. //idStr := ctx.Query("id")
  189. //var vendorListNew vendorListNew
  190. //id, _ := strconv.Atoi(idStr)
  191. ctx.JSON(http.StatusOK, common.SuccessResponse("", nil))
  192. }
  193. func (c *utilCtl) GetVenderRemove(ctx *gin.Context) {
  194. idStr := ctx.Query("id")
  195. id, _ := strconv.Atoi(idStr)
  196. err := service.UtilService.GetRemoveVendor(id)
  197. if err != nil {
  198. ctx.JSON(http.StatusOK, common.FailResponse(err.Error(), nil))
  199. return
  200. }
  201. ctx.JSON(http.StatusOK, common.SuccessResponse("", nil))
  202. }
  203. func (c *utilCtl) GetVenderSubmit(ctx *gin.Context) {
  204. ctx.JSON(http.StatusOK, common.SuccessResponse("", nil))
  205. }