infoBoardServiceTime.go 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322
  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. return detail, nil
  29. }
  30. func (s *infoBoardService) CreateOrUpdate(userId int, tenantId string, 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. detail.RealStartAndEndTime = fmt.Sprintf("%v-%v", cltData.WakeupTime, cltData.SleepTime)
  132. }
  133. }
  134. }
  135. return detail
  136. }
  137. func (s *infoBoardService) Remove(userId int, tenantId string, id int) *common.Errors {
  138. // 创建查询实例
  139. device := &dao.InfoBoard{
  140. ID: id,
  141. IsDeleted: 1,
  142. UpdateUser: userId,
  143. UpdateTime: time.Now(),
  144. }
  145. err := device.Delete()
  146. if err != nil {
  147. return common.FailResponse(err.Error(), nil)
  148. }
  149. service.OperationHisService.Save(userId, tenantId, common.OperationRemove, common.ModuleTypeDevice,
  150. common.DeviceTypeInfoBoard, common.GetDeviceObject(device.ID, device.InfoName), common.OperationSuccess)
  151. return nil
  152. }
  153. func (s *infoBoardService) GetByGateway(gatewayId int) []dao.InfoBoard {
  154. device := &dao.InfoBoard{
  155. GatewayId: gatewayId,
  156. }
  157. return device.GetDevicesByGateway()
  158. }
  159. func (s *infoBoardService) GetByLampPole(lampPoleId int) []dao.InfoBoard {
  160. device := &dao.InfoBoard{
  161. LampPoleId: lampPoleId,
  162. }
  163. return device.GetDevicesByLampPole()
  164. }
  165. func (s *infoBoardService) GetByResolution(tenantId string, resolution int) []dao.InfoBoard {
  166. device := &dao.InfoBoard{
  167. Resolution: resolution,
  168. TenantId: tenantId,
  169. }
  170. return device.GetDevicesByResolution()
  171. }
  172. func (s *infoBoardService) GetByIds(tenantId string, ids string) []dao.InfoBoard {
  173. device := &dao.InfoBoard{
  174. TenantId: tenantId,
  175. }
  176. return device.GetDevicesByIds(ids)
  177. }
  178. // EdgeCmd 发送远程 命令 ,如果是 cmdNum=101 or 6 时 ,必需要带id
  179. func (s *infoBoardService) EdgeCmd(tenant, sn string, cmdNum, id int) {
  180. action := "cmd"
  181. var edgePost edge_service.CltLedControlReqPost
  182. edgePost.Codes = []string{sn}
  183. param := make(map[string]interface{})
  184. switch cmdNum {
  185. case 1: //关机
  186. param["command"] = "sleep"
  187. s.reqEdge(tenant, edgePost, param, action)
  188. case 2: //开机
  189. param["command"] = "wakeup"
  190. s.reqEdge(tenant, edgePost, param, action)
  191. case 3: //重启
  192. param["command"] = "reboot"
  193. s.reqEdge(tenant, edgePost, param, action)
  194. //case 4: //重新节目,不在此处,处理了
  195. case 6: //更新排程
  196. device := &dao.InfoBoard{
  197. ID: id,
  198. }
  199. dev, _ := device.GetDevice()
  200. action = "ssched"
  201. if dev.NeverCloseDown == 1 {
  202. param["sleep"] = ""
  203. param["wakeup"] = ""
  204. } else {
  205. sleep, wakeup := ledTimeFormat(dev.BootEndTime, dev.BootStartTime)
  206. param["sleep"] = sleep
  207. param["wakeup"] = wakeup
  208. }
  209. param["reboot"] = "12:30:59" //每日重启时间
  210. s.reqEdge(tenant, edgePost, param, action)
  211. case 101: //更新亮度 音量, 这里需要做成定时任务去跑
  212. device := &dao.InfoBoard{
  213. ID: id,
  214. }
  215. dev, err := device.GetDevice()
  216. if err == nil && dev.Condition != "" {
  217. split := strings.Split(dev.Condition, ",")
  218. brightness := split[0]
  219. musicvolume := split[1]
  220. if isNight() {
  221. //晚上不同亮度和音量
  222. brightness = split[2]
  223. musicvolume = split[3]
  224. }
  225. // 亮度
  226. f, _ := strconv.ParseFloat(brightness, 64)
  227. mapRange := common.MapRange(f, 0, 100, 0, 255)
  228. param1 := make(map[string]interface{})
  229. param1["brightness"] = int(mapRange)
  230. action = "sb"
  231. s.reqEdge(tenant, edgePost, param1, action)
  232. //音量
  233. f1, _ := strconv.ParseFloat(musicvolume, 64)
  234. mapRange2 := common.MapRange(f1, 0, 100, 0, 15)
  235. param2 := make(map[string]interface{})
  236. param2["musicvolume"] = int(mapRange2)
  237. action = "svol"
  238. s.reqEdge(tenant, edgePost, param2, action)
  239. }
  240. }
  241. }
  242. // 公用请求边缘云端
  243. func (s *infoBoardService) reqEdge(tenant string, edgePost edge_service.CltLedControlReqPost, param map[string]interface{}, action string) {
  244. edgePost.Param = param
  245. req := edge_service.CltLedControlReq{
  246. Tenant: tenant,
  247. Action: action,
  248. PostData: edgePost,
  249. }
  250. edge_service.CltLedControlService{}.RequestApi(req)
  251. }
  252. // 发布led信息屏节目
  253. func (s *infoBoardService) EdgePushLedProgram(tenant, sn, playJson string) {
  254. var edgePost edge_service.CltLedControlReqPost
  255. edgePost.Codes = []string{sn}
  256. param := make(map[string]interface{})
  257. json.Unmarshal([]byte(playJson), &param)
  258. s.reqEdge(tenant, edgePost, param, "spgms")
  259. }
  260. // 判断是否晚上
  261. func isNight() bool {
  262. now := time.Now()
  263. hour := now.Hour()
  264. if hour >= 18 || hour < 6 {
  265. return true
  266. } else {
  267. return false
  268. }
  269. }
  270. // ledTimeFormat led开始 结束时间格式化
  271. func ledTimeFormat(stime string, etime string) (string, string) {
  272. startTime := fmt.Sprintf("%v %v:59", time.Now().Format("2006-01-02"), stime)
  273. endTime := fmt.Sprintf("%v %v:59", time.Now().Format("2006-01-02"), etime)
  274. ktime, _ := time.Parse("2006-01-02 15:04:05", startTime)
  275. jtime, _ := time.Parse("2006-01-02 15:04:05", endTime)
  276. atoi1, _ := strconv.Atoi(ktime.Format("15"))
  277. atoi2, _ := strconv.Atoi(jtime.Format("15"))
  278. return fmt.Sprintf("%v:%v:59", atoi1, ktime.Format("4")), fmt.Sprintf("%v:%v:59", atoi2, jtime.Format("4"))
  279. }
  280. func (s *infoBoardService) DeviceCount() dao.DeviceStatus {
  281. var rsp dao.DeviceStatus
  282. d := dao.InfoBoard{}
  283. rsp.Set(d.DeviceCount1())
  284. return rsp
  285. }
  286. func (s *infoBoardService) ListDevices() []dao.Device {
  287. d := dao.InfoBoard{}
  288. return d.ListDevices1()
  289. }