programService.go 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  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 int64, 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 int64, 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. //fmt.Printf("libraryIds = %v", libraryIds)
  141. library := &dao.Library{TenantId: tenantId}
  142. libraries, err := library.GetLibrariesByIds(libraryIds)
  143. for i, librarie := range libraries {
  144. //fmt.Printf("relations = %v \n", relations)
  145. //fmt.Printf("librarie = %v \n", librarie)
  146. if librarie.LibDuration == 0 {
  147. libraries[i].LibDuration = 3 //图片默认给个3秒
  148. }
  149. libraries[i].LibDuration = libraries[i].LibDuration * 1000
  150. }
  151. if err != nil {
  152. logger.Logger.Errorf("GetLibrariesByIds err = %s \n", err.Error())
  153. return nil, common.FailResponse(err.Error(), nil)
  154. }
  155. return libraries, nil
  156. }
  157. func (s *programService) RelationDeviceList(tenantId string, sysType, resolution int) ([]model.ProgramDeviceDetail,
  158. *common.Errors) {
  159. var lampGroupIds []int
  160. infoBoardMap := make(map[int][]model.ProgramDevice)
  161. if sysType == model.SysTypeInfoBar {
  162. infoBoardDevices := deviceService.InfoBoardService.GetByResolution(tenantId, resolution)
  163. for _, device := range infoBoardDevices {
  164. lampGroupIds = append(lampGroupIds, device.GroupId)
  165. programDevice := model.ProgramDevice{
  166. Id: device.ID,
  167. PublicName: device.InfoName,
  168. }
  169. if devices, isExist := infoBoardMap[device.GroupId]; isExist {
  170. devices = append(devices, programDevice)
  171. infoBoardMap[device.GroupId] = devices
  172. } else {
  173. infoBoardMap[device.GroupId] = []model.ProgramDevice{programDevice}
  174. }
  175. }
  176. } else if sysType == model.SysTypeBroadcast {
  177. ipBroadcastDevices := deviceService.IpBroadcastService.GetAll(tenantId)
  178. for _, device := range ipBroadcastDevices {
  179. lampGroupIds = append(lampGroupIds, device.GroupId)
  180. programDevice := model.ProgramDevice{
  181. Id: device.ID,
  182. PublicName: device.CastName,
  183. }
  184. if devices, isExist := infoBoardMap[device.GroupId]; isExist {
  185. devices = append(devices, programDevice)
  186. infoBoardMap[device.GroupId] = devices
  187. } else {
  188. infoBoardMap[device.GroupId] = []model.ProgramDevice{programDevice}
  189. }
  190. }
  191. } else {
  192. return nil, nil
  193. }
  194. lampPoleGroups := deviceService.LampPoleGroupService.GetByIds(tenantId, lampGroupIds)
  195. var details []model.ProgramDeviceDetail
  196. for _, lampPoleGroup := range lampPoleGroups {
  197. details = append(details, model.ProgramDeviceDetail{
  198. PublicName: lampPoleGroup.PoleGroupName,
  199. InfoBoardList: infoBoardMap[lampPoleGroup.ID],
  200. })
  201. }
  202. return details, nil
  203. }
  204. func (s *programService) RelationDeviceListByIds(tenantId string, sysType int, deviceIds string) ([]model.ProgramDeviceList,
  205. *common.Errors) {
  206. deviceList := []model.ProgramDeviceList{}
  207. if sysType == model.SysTypeInfoBar {
  208. infoBoardDevices := deviceService.InfoBoardService.GetByIds(tenantId, deviceIds)
  209. //fmt.Printf("infoBoardDevices = %v", infoBoardDevices)
  210. for _, device := range infoBoardDevices {
  211. deviceList = append(deviceList, model.ProgramDeviceList{
  212. DeviceName: device.InfoName,
  213. LampPoleName: device.LampPoleName,
  214. Address: device.IPAddress,
  215. })
  216. }
  217. } else if sysType == model.SysTypeBroadcast {
  218. ipBroadcastDevices := deviceService.IpBroadcastService.GetByIds(tenantId, deviceIds)
  219. for _, device := range ipBroadcastDevices {
  220. group, _ := deviceService.LampPoleGroupService.Get(device.GroupId)
  221. deviceList = append(deviceList, model.ProgramDeviceList{
  222. DeviceName: device.CastName,
  223. LampPoleName: group.PoleGroupName,
  224. Address: device.IPAddress,
  225. })
  226. }
  227. } else {
  228. return nil, nil
  229. }
  230. return deviceList, nil
  231. }