publishLibrariesService.go 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. package service
  2. import (
  3. "encoding/json"
  4. "fmt"
  5. "iot_manager_service/app/multimedia/dao"
  6. "iot_manager_service/app/multimedia/model"
  7. "iot_manager_service/app/system/service"
  8. "iot_manager_service/util/common"
  9. "iot_manager_service/util/logger"
  10. "strconv"
  11. "strings"
  12. "time"
  13. )
  14. var PublishLibrariesService = new(publishLibrariesService)
  15. type publishLibrariesService struct{}
  16. /**
  17. TODO: 此接口都未对接边缘端
  18. */
  19. func (s *publishLibrariesService) List(tenantId string, searchValue string, current, size int, sysType int) ([]dao.PublishLibraries, int64,
  20. *common.Errors) {
  21. program := &dao.PublishLibraries{
  22. TenantId: tenantId,
  23. SysType: sysType,
  24. }
  25. offset := (current - 1) * size
  26. limit := size
  27. if searchValue != "" {
  28. program.Name = searchValue
  29. }
  30. list, total, err := program.GetList(offset, limit)
  31. if err != nil {
  32. return nil, 0, common.FailResponse(err.Error(), nil)
  33. }
  34. return list, total, nil
  35. }
  36. // Audit 素材发布
  37. func (s *publishLibrariesService) Audit(req model.ReqProgramAudit) error {
  38. if !common.MultimediaEfficacyTime(req.StartTime, req.EndTime, req.KsTime) {
  39. panic("任务时间已过,请重新定义时间。")
  40. }
  41. program := dao.Program{ID: req.ProgramLibrariesId}
  42. err := program.Get()
  43. if err != nil {
  44. return err
  45. }
  46. update := PublishLibrariesService.Create(&program, req)
  47. fmt.Printf("update = %v", update)
  48. return nil
  49. }
  50. // SaveOrUpdate 保存
  51. func (s *publishLibrariesService) Create(program *dao.Program, req model.ReqProgramAudit) *common.Errors {
  52. fmt.Printf("program = %v", program)
  53. remarks := "多媒体系统"
  54. if program.SysType == 1 {
  55. remarks = "广播系统"
  56. }
  57. infoIds := req.InfoId
  58. infoIds = strings.Trim(infoIds, ",")
  59. infoIds = strings.ReplaceAll(infoIds, "-1", "")
  60. infoIds = strings.ReplaceAll(infoIds, ",-1", "") //新id
  61. libraries := &dao.PublishLibraries{
  62. Name: program.Name,
  63. Resolution: program.Resolution,
  64. Duration: program.Duration,
  65. FileSize: program.FileSize,
  66. InfoId: infoIds,
  67. ImgDuration: program.ImgDuration,
  68. StartTime: req.StartTime,
  69. EndTime: req.EndTime,
  70. NotificationType: "0",
  71. CreateTime: time.Now(),
  72. CreateUser: program.CreateUser,
  73. CreateName: "",
  74. UpdateTime: time.Now(),
  75. UpdateUser: "",
  76. IsDeleted: 0,
  77. Status: 1,
  78. TenantId: program.TenantId,
  79. Remarks: remarks,
  80. SysType: program.SysType,
  81. KsTime: req.KsTime,
  82. JsTime: req.JsTime,
  83. FileId: program.ID,
  84. }
  85. libraries.CreateTime = time.Now()
  86. if err := libraries.Create(); err != nil {
  87. logger.Logger.Errorf("Create err = %s \n", err.Error())
  88. return common.FailResponse(err.Error(), nil)
  89. }
  90. fmt.Printf("libraries = %v", libraries)
  91. //TODO: 日志保存
  92. return common.SuccessResponse(common.Succeeded, nil)
  93. }
  94. // GetProgram 取节目
  95. func (s *publishLibrariesService) GetProgram(id int) (int, error) {
  96. libraries := dao.PublishLibraries{ID: int64(id)}
  97. program, err := libraries.GetProgram()
  98. return program, err
  99. }
  100. func (s *publishLibrariesService) putPublishLibraries(programId int, publishLibraries dao.PublishLibraries) {
  101. }
  102. // UpdateStatus 状态变更
  103. func (s *publishLibrariesService) UpdateStatus(tenantId string, id int, status int, name string) (bool, error) {
  104. update := &dao.PublishLibraries{
  105. TenantId: tenantId,
  106. ID: int64(id),
  107. Status: status,
  108. Name: name,
  109. }
  110. err := update.Update()
  111. if err != nil {
  112. return false, err
  113. }
  114. return true, nil
  115. }
  116. func (s *publishLibrariesService) Remove(userId int64, tenantId string, id int) *common.Errors {
  117. // 创建查询实例
  118. device := &dao.PublishLibraries{
  119. ID: int64(id),
  120. IsDeleted: 1,
  121. UpdateUser: strconv.Itoa(int(userId)),
  122. UpdateTime: time.Now(),
  123. }
  124. err := device.Delete()
  125. if err != nil {
  126. return common.FailResponse(err.Error(), nil)
  127. }
  128. service.OperationHisService.Save(userId, tenantId, common.OperationRemove, common.DeviceTypeInfoBoard,
  129. common.DeviceTypeBridge, common.GetDeviceObject(int(device.ID), device.Name), common.OperationSuccess)
  130. return nil
  131. }
  132. type CltLedLibraries struct {
  133. Type string `json:"type"` //文件类型 2:图片3:视频5:文本27:网页
  134. Name string `json:"name"` //节目名字
  135. Imageinfo Imageinfo `json:"imageinfo"` //图片或视频信息
  136. }
  137. type InEffect struct {
  138. Type string `json:"Type"` //翻页类型 2
  139. Time string `json:"Time"` ///翻页花费时间 1000为1秒
  140. }
  141. type Imageinfo struct {
  142. Urls []string `json:"urls"`
  143. Duration string `json:"duration"`
  144. InEffect InEffect `json:"inEffect"`
  145. }
  146. // LedPaying 组装当前led屏要播放的节目json
  147. func (s *publishLibrariesService) LedPaying(ledId int, playing string) string {
  148. libraries := dao.PublishLibraries{}
  149. librarie, err := libraries.GetProgramByLedId(ledId)
  150. if err != nil {
  151. logger.Logger.Errorf("LedPaying err = %v \n", err)
  152. return ""
  153. }
  154. //fmt.Printf("librarie = %v \n", librarie)
  155. program, _ := s.GetProgram(int(librarie.ID))
  156. relation := &dao.ProgramRelation{
  157. ProgramId: program,
  158. TenantId: librarie.TenantId,
  159. }
  160. relations, err := relation.GetByProgram()
  161. if err != nil {
  162. logger.Logger.Errorf("LedPaying err = %s \n", err.Error())
  163. return ""
  164. }
  165. var libraryIds []int
  166. for _, relation := range relations {
  167. libraryIds = append(libraryIds, relation.LibraryId)
  168. }
  169. //fmt.Printf("libraryIds = %v \n", libraryIds)
  170. library := &dao.Library{TenantId: librarie.TenantId}
  171. getLibrariesByIds, _ := library.GetLibrariesByIds(libraryIds)
  172. if len(getLibrariesByIds) < 1 {
  173. logger.Logger.Errorf("无素材")
  174. return ""
  175. }
  176. var cltLedLibraries CltLedLibraries
  177. cltLedLibraries.Name = fmt.Sprintf("%v-%v", librarie.Name, librarie.ID)
  178. if strings.EqualFold(cltLedLibraries.Name, strings.ReplaceAll(playing, ".vsn", "")) {
  179. logger.Logger.Errorf("节目相同无需要更新")
  180. return ""
  181. }
  182. cltLedLibraries.Type = "2"
  183. if strings.Contains(getLibrariesByIds[0].MaterialAddress, "mp4") {
  184. cltLedLibraries.Type = "3"
  185. }
  186. var urls []string
  187. for _, getLibrariesById := range getLibrariesByIds {
  188. urls = append(urls, getLibrariesById.MaterialAddress)
  189. }
  190. cltLedLibraries.Imageinfo.Duration = strconv.Itoa(int(librarie.Duration))
  191. cltLedLibraries.Imageinfo.Urls = urls
  192. cltLedLibraries.Imageinfo.InEffect.Type = "2"
  193. //cltLedLibraries.Imageinfo.InEffect.Time = strconv.Itoa(relations[0].Duration)
  194. cltLedLibraries.Imageinfo.InEffect.Time = "1500"
  195. marshal, err := json.Marshal(cltLedLibraries)
  196. if err != nil {
  197. fmt.Printf("LedPaying err = %v \n", err)
  198. return ""
  199. }
  200. fmt.Printf("cltLedLibraries = %v \n", string(marshal))
  201. str := string(marshal)
  202. //fmt.Printf("str = %v \n", str)
  203. return str
  204. }