infoBoardService.go 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  1. package service
  2. import (
  3. "fmt"
  4. "github.com/goccy/go-json"
  5. "iot_manager_service/app/device/dao"
  6. "iot_manager_service/app/device/edge_service"
  7. "iot_manager_service/app/device/model"
  8. "iot_manager_service/app/system/service"
  9. "iot_manager_service/util/cache"
  10. "iot_manager_service/util/common"
  11. "iot_manager_service/util/logger"
  12. "strconv"
  13. "strings"
  14. "time"
  15. )
  16. var InfoBoardService = new(infoBoardService)
  17. type infoBoardService struct{}
  18. func (s *infoBoardService) Get(id int) (*model.InfoBoardDetail, *common.Errors) {
  19. // 创建查询实例
  20. device := &dao.InfoBoard{
  21. ID: id,
  22. }
  23. getDevice, err := device.GetDevice()
  24. if err != nil {
  25. return nil, common.FailResponse(err.Error(), nil)
  26. }
  27. detail := s.rewriteBoardDetail(getDevice)
  28. return &detail, nil
  29. }
  30. func (s *infoBoardService) CreateOrUpdate(userId int64, tenantId int, req dao.InfoBoard) *common.Errors {
  31. // 创建查询实例
  32. device := req
  33. device.TenantId = tenantId
  34. device.UpdateUser = userId
  35. device.UpdateTime = time.Now()
  36. if req.ID == 0 {
  37. device.CreateTime = time.Now()
  38. device.CreateUser = userId
  39. if device.IsExistedBySN() {
  40. logger.Logger.Errorf("Create GetDeviceID err \n")
  41. return common.ParamsInvalidResponse("编码不能重复,请重新填写!", nil)
  42. }
  43. if err := device.Create(); err != nil {
  44. logger.Logger.Errorf("Create err = %s \n", err.Error())
  45. return common.FailResponse(err.Error(), nil)
  46. }
  47. service.OperationHisService.Save(userId, tenantId, common.OperationCreate, common.ModuleTypeDevice,
  48. common.DeviceTypeInfoBoard, common.GetDeviceObject(device.ID, device.InfoName), common.OperationSuccess)
  49. return common.SuccessResponse(common.Succeeded, nil)
  50. }
  51. if device.IsExistedByNameAndCode() {
  52. return common.ParamsInvalidResponse("编码不能重复,请重新填写!", nil)
  53. }
  54. if err := device.Update(); err != nil {
  55. logger.Logger.Errorf("Update err = %s \n", err.Error())
  56. return common.FailResponse(err.Error(), nil)
  57. }
  58. service.OperationHisService.Save(userId, tenantId, common.OperationUpdate, common.ModuleTypeDevice,
  59. common.DeviceTypeInfoBoard, common.GetDeviceObject(device.ID, device.InfoName), common.OperationSuccess)
  60. return common.SuccessResponse(common.Succeeded, nil)
  61. }
  62. func (s *infoBoardService) List(searchValue string, current, size int) ([]model.InfoBoardDetail, int64, *common.Errors) {
  63. device := dao.InfoBoard{}
  64. if searchValue != "" {
  65. device.Sn = searchValue
  66. device.InfoName = searchValue
  67. }
  68. offset := (current - 1) * size
  69. limit := size
  70. devices, total, err := device.GetDevices(offset, limit)
  71. if err != nil {
  72. return nil, 0, common.FailResponse(err.Error(), nil)
  73. }
  74. var details []model.InfoBoardDetail
  75. for _, d := range devices {
  76. detail := s.rewriteBoardDetail(d)
  77. details = append(details, detail)
  78. }
  79. return details, total, nil
  80. }
  81. // 从缓存中读取真实状态
  82. func (s *infoBoardService) rewriteBoardDetail(d dao.InfoBoard) model.InfoBoardDetail {
  83. endTime, state := cache.GetDeviceState(d.Sn)
  84. detail := model.InfoBoardDetail{
  85. InfoBoard: d,
  86. RunState: state,
  87. NetworkState: state,
  88. EndLineTime: endTime,
  89. }
  90. cacheMap := cache.GetDeviceLedData(d.Sn)
  91. if cacheMap != nil {
  92. marshal, err := json.Marshal(cacheMap)
  93. if err != nil {
  94. logger.Logger.Errorf("rewriteBoardDetail err1 = %v \n", err)
  95. return detail
  96. }
  97. var cltData model.CltledData
  98. err = json.Unmarshal(marshal, &cltData)
  99. if err != nil {
  100. logger.Logger.Errorf("rewriteBoardDetail err2 = %v \n", err)
  101. return detail
  102. }
  103. detail.Power = "不在线"
  104. if cltData.RealWidth != "" {
  105. detail.ResolutionName = fmt.Sprintf("%v * %v", cltData.RealWidth, cltData.RealHeight)
  106. detail.OnTheAir = cltData.Playing
  107. detail.Temperature = cltData.Colortemperature
  108. f, err := strconv.ParseFloat(cltData.Brightness, 64)
  109. if err != nil {
  110. logger.Logger.Errorf("rewriteBoardDetail err3 = %v \n", err)
  111. return detail
  112. }
  113. mapRange := common.MapRange(f, 0, 255, 1, 100)
  114. detail.Luminance = fmt.Sprintf("%v %%", int(mapRange))
  115. f, err = strconv.ParseFloat(cltData.Musicvolume, 64)
  116. if err != nil {
  117. logger.Logger.Errorf("rewriteBoardDetail err3 = %v \n", err)
  118. return detail
  119. }
  120. mapRange = common.MapRange(f, 0, 15, 1, 100)
  121. detail.Volume = fmt.Sprintf("%v %%", int(mapRange))
  122. detail.RebootTime = cltData.RebootTime
  123. detail.Power = "开机"
  124. if cltData.Powerstatus != "1" {
  125. detail.Power = "关机" //真实其实是睡眠状态
  126. }
  127. if cltData.WakeupTime != "" {
  128. detail.NeverCloseDown = 2
  129. detail.BootStartTime = cltData.WakeupTime
  130. detail.BootEndTime = cltData.SleepTime
  131. }
  132. }
  133. }
  134. return detail
  135. }
  136. func (s *infoBoardService) Remove(userId int64, tenantId int, id int) *common.Errors {
  137. // 创建查询实例
  138. device := &dao.InfoBoard{
  139. ID: id,
  140. IsDeleted: 1,
  141. UpdateUser: userId,
  142. UpdateTime: time.Now(),
  143. }
  144. err := device.Delete()
  145. if err != nil {
  146. return common.FailResponse(err.Error(), nil)
  147. }
  148. service.OperationHisService.Save(userId, tenantId, common.OperationRemove, common.ModuleTypeDevice,
  149. common.DeviceTypeInfoBoard, common.GetDeviceObject(device.ID, device.InfoName), common.OperationSuccess)
  150. return nil
  151. }
  152. func (s *infoBoardService) GetByGateway(gatewayId int) []dao.InfoBoard {
  153. device := &dao.InfoBoard{
  154. GatewayId: gatewayId,
  155. }
  156. return device.GetDevicesByGateway()
  157. }
  158. func (s *infoBoardService) GetByLampPole(lampPoleId int) []dao.InfoBoard {
  159. device := &dao.InfoBoard{
  160. LampPoleId: lampPoleId,
  161. }
  162. return device.GetDevicesByLampPole()
  163. }
  164. func (s *infoBoardService) GetByResolution(tenantId, resolution int) []dao.InfoBoard {
  165. device := &dao.InfoBoard{
  166. Resolution: resolution,
  167. TenantId: tenantId,
  168. }
  169. return device.GetDevicesByResolution()
  170. }
  171. func (s *infoBoardService) GetByIds(tenantId int, ids string) []dao.InfoBoard {
  172. device := &dao.InfoBoard{
  173. TenantId: tenantId,
  174. }
  175. return device.GetDevicesByIds(ids)
  176. }
  177. // EdgeCmd 发送远程 命令 ,如果是 cmdNum=101 or 6 时 ,必需要带id
  178. func (s *infoBoardService) EdgeCmd(tenant, sn string, cmdNum, id int) {
  179. action := "cmd"
  180. var edgePost edge_service.CltLedControlReqPost
  181. edgePost.Codes = []string{sn}
  182. param := make(map[string]interface{})
  183. switch cmdNum {
  184. case 1: //关机
  185. param["command"] = "sleep"
  186. s.reqEdge(tenant, edgePost, param, action)
  187. case 2: //开机
  188. param["command"] = "wakeup"
  189. s.reqEdge(tenant, edgePost, param, action)
  190. case 3: //重启
  191. param["command"] = "reboot"
  192. s.reqEdge(tenant, edgePost, param, action)
  193. case 4: //重新节目
  194. case 6: //更新排程
  195. device := &dao.InfoBoard{
  196. ID: id,
  197. }
  198. dev, _ := device.GetDevice()
  199. action = "ssched"
  200. param["sleep"] = dev.BootEndTime
  201. param["wakeup"] = dev.BootStartTime
  202. if dev.NeverCloseDown == 1 {
  203. param["sleep"] = ""
  204. param["wakeup"] = ""
  205. }
  206. param["reboot"] = "01:30" //每日重启时间
  207. s.reqEdge(tenant, edgePost, param, action)
  208. case 101: //更新亮度 音量, 这里需要做成定时任务去跑
  209. device := &dao.InfoBoard{
  210. ID: id,
  211. }
  212. dev, err := device.GetDevice()
  213. if err == nil && dev.Condition != "" {
  214. split := strings.Split(dev.Condition, ",")
  215. brightness := split[0]
  216. musicvolume := split[1]
  217. if isEight() {
  218. //晚上不同亮度和音量
  219. brightness = split[2]
  220. musicvolume = split[3]
  221. }
  222. // 亮度
  223. f, _ := strconv.ParseFloat(brightness, 64)
  224. mapRange := common.MapRange(f, 0, 100, 0, 255)
  225. param1 := make(map[string]interface{})
  226. param1["brightness"] = int(mapRange)
  227. action = "sb"
  228. s.reqEdge(tenant, edgePost, param1, action)
  229. //音量
  230. f1, _ := strconv.ParseFloat(musicvolume, 64)
  231. mapRange2 := common.MapRange(f1, 0, 100, 0, 15)
  232. param2 := make(map[string]interface{})
  233. param2["musicvolume"] = int(mapRange2)
  234. action = "svol"
  235. s.reqEdge(tenant, edgePost, param2, action)
  236. }
  237. }
  238. }
  239. //公用请求边缘云端
  240. func (s *infoBoardService) reqEdge(tenant string, edgePost edge_service.CltLedControlReqPost, param map[string]interface{}, action string) {
  241. edgePost.Param = param
  242. req := edge_service.CltLedControlReq{
  243. Tenant: tenant,
  244. Action: action,
  245. PostData: edgePost,
  246. }
  247. edge_service.CltLedControlService{}.RequestApi(req)
  248. }
  249. // 判断是否晚上
  250. func isEight() bool {
  251. now := time.Now()
  252. hour := now.Hour()
  253. if hour >= 18 || hour < 6 {
  254. //fmt.Println("现在是晚上")
  255. return true
  256. } else {
  257. //fmt.Println("现在不是晚上")
  258. return false
  259. }
  260. }
  261. func (s *infoBoardService) CronSync() {
  262. }