infoBoardServiceTime.go 9.4 KB

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