programService.go 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. package service
  2. import (
  3. deviceService "iot_manager_service/app/device/service"
  4. "iot_manager_service/app/multimedia/dao"
  5. "iot_manager_service/app/multimedia/model"
  6. "iot_manager_service/app/system/service"
  7. "iot_manager_service/util/common"
  8. "iot_manager_service/util/logger"
  9. "time"
  10. )
  11. var ProgramService = new(programService)
  12. type programService struct{}
  13. func (s *programService) Get(id int) (*dao.Program, *common.Errors) {
  14. Program := &dao.Program{
  15. ID: id,
  16. }
  17. err := Program.Get()
  18. if err != nil {
  19. return nil, common.FailResponse(err.Error(), nil)
  20. }
  21. return Program, nil
  22. }
  23. func (s *programService) List(tenantId string, searchValue string, current, size, sysType int) ([]model.ProgramDetail, int64,
  24. *common.Errors) {
  25. program := &dao.Program{
  26. TenantId: tenantId,
  27. }
  28. offset := (current - 1) * size
  29. limit := size
  30. if searchValue != "" {
  31. program.Name = searchValue
  32. }
  33. if sysType != -1 {
  34. program.SysType = sysType
  35. }
  36. programs, total, err := program.GetPrograms(offset, limit)
  37. if err != nil {
  38. return nil, 0, common.FailResponse(err.Error(), nil)
  39. }
  40. var rsp []model.ProgramDetail
  41. for _, pro := range programs {
  42. rsp = append(rsp, model.ProgramDetail{
  43. Program: pro,
  44. ResolutionName: service.DictService.GetResolutionName(tenantId, pro.Resolution),
  45. })
  46. }
  47. return rsp, total, nil
  48. }
  49. func (s *programService) Remove(userId int, tenantId string, id int) *common.Errors {
  50. relation := &dao.ProgramRelation{
  51. ProgramId: id,
  52. TenantId: tenantId,
  53. IsDeleted: 1,
  54. }
  55. err := relation.Delete()
  56. if err != nil {
  57. return common.FailResponse(err.Error(), nil)
  58. }
  59. program := &dao.Program{
  60. ID: id,
  61. IsDeleted: 1,
  62. UpdateUser: userId,
  63. UpdateTime: time.Now(),
  64. }
  65. err = program.Delete()
  66. if err != nil {
  67. return common.FailResponse(err.Error(), nil)
  68. }
  69. service.OperationHisService.Save(userId, tenantId, common.OperationRemove, common.ModuleTypeInfoBar,
  70. common.DeviceTypeDefault, "", common.OperationSuccess)
  71. return nil
  72. }
  73. func (s *programService) GetList(tenantId string, name string) ([]dao.Program, *common.Errors) {
  74. Program := &dao.Program{
  75. TenantId: tenantId,
  76. Name: name,
  77. }
  78. libraries, err := Program.GetAll()
  79. if err != nil {
  80. return nil, common.FailResponse(err.Error(), nil)
  81. }
  82. return libraries, nil
  83. }
  84. func (s *programService) Submit(tenantId string, userId int, req model.ReqProgramSubmit) *common.Errors {
  85. program := &dao.Program{
  86. Name: req.Name,
  87. Resolution: req.Resolution,
  88. Duration: req.Duration,
  89. FileSize: req.FileSize,
  90. ImgDuration: req.ImgDuration,
  91. Remarks: req.Remarks,
  92. SysType: req.SysType,
  93. TenantId: tenantId,
  94. CreateTime: time.Now(),
  95. CreateUser: userId,
  96. UpdateTime: time.Now(),
  97. UpdateUser: userId,
  98. IsDeleted: 0,
  99. }
  100. if err := program.Create(); err != nil {
  101. logger.Logger.Errorf("Create err = %s \n", err.Error())
  102. return common.FailResponse(err.Error(), nil)
  103. }
  104. libraryIds := common.StringToIntArray(req.LibraryIds)
  105. for index, libraryId := range libraryIds {
  106. relation := &dao.ProgramRelation{
  107. ProgramId: program.ID,
  108. LibraryId: libraryId,
  109. OrderNo: index + 1,
  110. TenantId: tenantId,
  111. IsDeleted: 0,
  112. Duration: req.ImgDuration,
  113. }
  114. err := relation.Save()
  115. if err != nil {
  116. logger.Logger.Errorf("relation save err = %s \n", err.Error())
  117. _ = program.Remove()
  118. _ = relation.Remove()
  119. return common.FailResponse(err.Error(), nil)
  120. }
  121. }
  122. service.OperationHisService.Save(userId, tenantId, common.OperationCreate, common.ModuleTypeInfoBar,
  123. common.DeviceTypeDefault, program.Name, common.OperationSuccess)
  124. return common.SuccessResponse(common.Succeeded, nil)
  125. }
  126. func (s *programService) GetLibraryList(tenantId string, programId int) ([]dao.Library, *common.Errors) {
  127. relation := &dao.ProgramRelation{
  128. ProgramId: programId,
  129. TenantId: tenantId,
  130. }
  131. relations, err := relation.GetByProgram()
  132. if err != nil {
  133. logger.Logger.Errorf("relation BatchCreate err = %s \n", err.Error())
  134. return nil, common.FailResponse(err.Error(), nil)
  135. }
  136. var libraryIds []int
  137. for _, relation := range relations {
  138. libraryIds = append(libraryIds, relation.LibraryId)
  139. }
  140. library := &dao.Library{TenantId: tenantId}
  141. libraries, err := library.GetLibrariesByIds(libraryIds)
  142. for i, librarie := range libraries {
  143. if librarie.LibDuration == 0 {
  144. libraries[i].LibDuration = 3 //图片默认给个3秒
  145. }
  146. libraries[i].LibDuration = libraries[i].LibDuration * 1000
  147. }
  148. if err != nil {
  149. logger.Logger.Errorf("GetLibrariesByIds err = %s \n", err.Error())
  150. return nil, common.FailResponse(err.Error(), nil)
  151. }
  152. return libraries, nil
  153. }
  154. func (s *programService) RelationDeviceList(tenantId string, sysType, resolution int) ([]model.ProgramDeviceDetail,
  155. *common.Errors) {
  156. var lampGroupIds []int
  157. infoBoardMap := make(map[int][]model.ProgramDevice)
  158. if sysType == model.SysTypeInfoBar {
  159. infoBoardDevices := deviceService.InfoBoardService.GetByResolution(tenantId, resolution)
  160. for _, device := range infoBoardDevices {
  161. lampGroupIds = append(lampGroupIds, device.GroupId)
  162. programDevice := model.ProgramDevice{
  163. Id: device.ID,
  164. PublicName: device.InfoName,
  165. }
  166. if devices, isExist := infoBoardMap[device.GroupId]; isExist {
  167. devices = append(devices, programDevice)
  168. infoBoardMap[device.GroupId] = devices
  169. } else {
  170. infoBoardMap[device.GroupId] = []model.ProgramDevice{programDevice}
  171. }
  172. }
  173. } else if sysType == model.SysTypeBroadcast {
  174. ipBroadcastDevices := deviceService.IpBroadcastService.GetAll(tenantId)
  175. for _, device := range ipBroadcastDevices {
  176. lampGroupIds = append(lampGroupIds, device.GroupId)
  177. programDevice := model.ProgramDevice{
  178. Id: device.ID,
  179. PublicName: device.CastName,
  180. }
  181. if devices, isExist := infoBoardMap[device.GroupId]; isExist {
  182. devices = append(devices, programDevice)
  183. infoBoardMap[device.GroupId] = devices
  184. } else {
  185. infoBoardMap[device.GroupId] = []model.ProgramDevice{programDevice}
  186. }
  187. }
  188. } else {
  189. return nil, nil
  190. }
  191. lampPoleGroups := deviceService.LampPoleGroupService.GetByIds(tenantId, lampGroupIds)
  192. var details []model.ProgramDeviceDetail
  193. for _, lampPoleGroup := range lampPoleGroups {
  194. details = append(details, model.ProgramDeviceDetail{
  195. PublicName: lampPoleGroup.PoleGroupName,
  196. InfoBoardList: infoBoardMap[lampPoleGroup.ID],
  197. })
  198. }
  199. return details, nil
  200. }
  201. func (s *programService) RelationDeviceListByIds(tenantId string, sysType int, deviceIds string) ([]model.ProgramDeviceList,
  202. *common.Errors) {
  203. deviceList := []model.ProgramDeviceList{}
  204. if sysType == model.SysTypeInfoBar {
  205. infoBoardDevices := deviceService.InfoBoardService.GetByIds(tenantId, deviceIds)
  206. for _, device := range infoBoardDevices {
  207. deviceList = append(deviceList, model.ProgramDeviceList{
  208. DeviceName: device.InfoName,
  209. LampPoleName: device.LampPoleName,
  210. Address: device.IPAddress,
  211. })
  212. }
  213. } else if sysType == model.SysTypeBroadcast {
  214. ipBroadcastDevices := deviceService.IpBroadcastService.GetByIds(tenantId, deviceIds)
  215. for _, device := range ipBroadcastDevices {
  216. group, _ := deviceService.LampPoleGroupService.Get(device.GroupId)
  217. deviceList = append(deviceList, model.ProgramDeviceList{
  218. DeviceName: device.CastName,
  219. LampPoleName: group.PoleGroupName,
  220. Address: device.IPAddress,
  221. })
  222. }
  223. } else {
  224. return nil, nil
  225. }
  226. return deviceList, nil
  227. }