publishLibrariesService.go 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359
  1. package service
  2. import (
  3. "encoding/json"
  4. "errors"
  5. "fmt"
  6. "gorm.io/gorm"
  7. "iot_manager_service/app/multimedia/dao"
  8. "iot_manager_service/app/multimedia/model"
  9. "iot_manager_service/app/system/service"
  10. "iot_manager_service/util/common"
  11. "iot_manager_service/util/logger"
  12. "strconv"
  13. "strings"
  14. "time"
  15. )
  16. var PublishLibrariesService = new(publishLibrariesService)
  17. type publishLibrariesService struct{}
  18. /**
  19. TODO: 此接口都未对接边缘端
  20. */
  21. func (s *publishLibrariesService) List(tenantId string, searchValue string, current, size int, sysType int) ([]dao.PublishLibraries, int64,
  22. *common.Errors) {
  23. program := &dao.PublishLibraries{
  24. TenantId: tenantId,
  25. SysType: sysType,
  26. }
  27. offset := (current - 1) * size
  28. limit := size
  29. if searchValue != "" {
  30. program.Name = searchValue
  31. }
  32. list, total, err := program.GetList(offset, limit)
  33. if err != nil {
  34. return nil, 0, common.FailResponse(err.Error(), nil)
  35. }
  36. return list, total, nil
  37. }
  38. // Audit 素材发布
  39. func (s *publishLibrariesService) Audit(req model.ReqProgramAudit) error {
  40. if !common.MultimediaEfficacyTime(req.StartTime, req.EndTime, req.KsTime) {
  41. panic("任务时间已过,请重新定义时间。")
  42. }
  43. program := dao.Program{ID: req.ProgramLibrariesId}
  44. err := program.Get()
  45. if err != nil {
  46. return err
  47. }
  48. PublishLibrariesService.Create(&program, req)
  49. return nil
  50. }
  51. // SaveOrUpdate 保存
  52. func (s *publishLibrariesService) Create(program *dao.Program, req model.ReqProgramAudit) *common.Errors {
  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. IsDeleted: 0,
  76. Status: 1,
  77. TenantId: program.TenantId,
  78. Remarks: remarks,
  79. SysType: program.SysType,
  80. KsTime: req.KsTime,
  81. JsTime: req.JsTime,
  82. FileId: program.ID,
  83. PlayTime: req.PlayTime,
  84. PlayInterval: req.PlayInterval,
  85. }
  86. libraries.CreateTime = time.Now()
  87. if err := libraries.Create(); err != nil {
  88. logger.Logger.Errorf("Create err = %s \n", err.Error())
  89. return common.FailResponse(err.Error(), nil)
  90. }
  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 int, tenantId string, id int) *common.Errors {
  117. // 创建查询实例
  118. device := &dao.PublishLibraries{
  119. ID: int64(id),
  120. IsDeleted: 1,
  121. UpdateUser: 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 errors.Is(err, gorm.ErrRecordNotFound) {
  151. return ""
  152. }
  153. if err != nil {
  154. logger.Logger.Errorf("LedPaying err = %v \n", err)
  155. return ""
  156. }
  157. if librarie.ID < 1 {
  158. //没有新节目不更新
  159. return ""
  160. }
  161. program, _ := s.GetProgram(int(librarie.ID))
  162. relation := &dao.ProgramRelation{
  163. ProgramId: program,
  164. TenantId: librarie.TenantId,
  165. }
  166. relations, err := relation.GetByProgram()
  167. if errors.Is(err, gorm.ErrRecordNotFound) {
  168. return ""
  169. }
  170. if err != nil {
  171. logger.Logger.Errorf("LedPaying err = %s \n", err.Error())
  172. return ""
  173. }
  174. var libraryIds []int
  175. for _, relation := range relations {
  176. libraryIds = append(libraryIds, relation.LibraryId)
  177. }
  178. library := &dao.Library{TenantId: librarie.TenantId}
  179. getLibrariesByIds, _ := library.GetLibrariesByIds(libraryIds)
  180. if len(getLibrariesByIds) < 1 {
  181. logger.Logger.Errorf("无素材")
  182. return ""
  183. }
  184. var cltLedLibraries CltLedLibraries
  185. cltLedLibraries.Name = fmt.Sprintf("%v-%v", librarie.Name, librarie.ID)
  186. if strings.EqualFold(cltLedLibraries.Name, strings.ReplaceAll(playing, ".vsn", "")) {
  187. logger.Logger.Errorf("节目相同无需要更新")
  188. return ""
  189. }
  190. cltLedLibraries.Type = "2"
  191. if strings.Contains(getLibrariesByIds[0].MaterialAddress, "mp4") {
  192. cltLedLibraries.Type = "3"
  193. }
  194. var urls []string
  195. for _, getLibrariesById := range getLibrariesByIds {
  196. urls = append(urls, getLibrariesById.MaterialAddress)
  197. }
  198. cltLedLibraries.Imageinfo.Duration = strconv.Itoa(int(librarie.Duration))
  199. cltLedLibraries.Imageinfo.Urls = urls
  200. cltLedLibraries.Imageinfo.InEffect.Type = "2"
  201. //cltLedLibraries.Imageinfo.InEffect.Time = strconv.Itoa(relations[0].Duration)
  202. cltLedLibraries.Imageinfo.InEffect.Time = "1500"
  203. marshal, err := json.Marshal(cltLedLibraries)
  204. if err != nil {
  205. return ""
  206. }
  207. str := string(marshal)
  208. return str
  209. }
  210. type iPCastPayingMp3Info struct {
  211. Type int `json:"Type"`
  212. PlayTimes int `json:"PlayTimes"`
  213. FileIds []int `json:"FileIds"`
  214. TermIds []int `json:"TermIds"`
  215. }
  216. type iPCastPayingContentInfo struct {
  217. Content string `json:"Content"`
  218. Playtime int `json:"Playtime"`
  219. TermIds []int `json:"TermIds"`
  220. PlayVol int `json:"PlayVol"`
  221. PromptTone int `json:"PromptTone"`
  222. }
  223. func (s *publishLibrariesService) IPCastPaying(id int) (string, int) {
  224. publishLibraries := dao.PublishLibraries{}
  225. libraries, err := publishLibraries.GetProgramByIpCastId(id)
  226. if err != nil {
  227. logger.Logger.Errorf("IPCastPaying err = %v \n", err)
  228. return "", 0
  229. }
  230. if len(libraries) < 1 {
  231. //没有新节目不更新
  232. return "", 0
  233. }
  234. var librarie dao.PublishLibraries
  235. //判断当前到底要放哪个节目
  236. for _, library := range libraries {
  237. library.Ptype = 1
  238. if library.JsTime == "" {
  239. library.Ptype = 0
  240. }
  241. if library.Ptype == 1 && library.JsTime != "" {
  242. currTime := time.Now()
  243. parse, err := time.Parse("2006-01-02 15:04", fmt.Sprintf("%v %v", time.Now().Format("2006-01-02"), library.JsTime))
  244. if err != nil {
  245. logger.Logger.Errorf("IPCastPaying parse err = %v \n", err)
  246. continue
  247. }
  248. if parse.Before(currTime) {
  249. continue
  250. }
  251. } else {
  252. cTime := time.Now()
  253. kTime, err := time.Parse("2006-01-02 15:04", fmt.Sprintf("%v %v", time.Now().Format("2006-01-02"), library.KsTime))
  254. if err != nil {
  255. logger.Logger.Errorf("IPCastPaying kTime err = %v \n", err)
  256. }
  257. //这里要作限制 ,只有是当前时分 才操作
  258. if cTime.Minute() != kTime.Minute() || cTime.Hour() == kTime.Hour() {
  259. continue
  260. }
  261. }
  262. librarie = library
  263. }
  264. program, _ := s.GetProgram(int(librarie.ID))
  265. relation := &dao.ProgramRelation{
  266. ProgramId: program,
  267. TenantId: librarie.TenantId,
  268. }
  269. relations, err := relation.GetByProgram()
  270. if err != nil {
  271. logger.Logger.Errorf("IPCastPaying err = %s \n", err)
  272. return "", 0
  273. }
  274. var libraryIds []int
  275. for _, relation := range relations {
  276. libraryIds = append(libraryIds, relation.LibraryId)
  277. }
  278. library := &dao.Library{TenantId: librarie.TenantId}
  279. getLibrariesByIds, _ := library.GetLibrariesByIds(libraryIds)
  280. if len(getLibrariesByIds) < 1 {
  281. logger.Logger.Errorf("无素材")
  282. return "", 0
  283. }
  284. // 音频播放
  285. if librarie.Ptype == 1 {
  286. paytime := diffTime(librarie.KsTime, librarie.JsTime)
  287. if paytime < 0 {
  288. //logger.Logger.Errorf("过了播放结束时间啦 ")
  289. return "", 0
  290. }
  291. fileIds := []int{}
  292. for _, libs := range getLibrariesByIds {
  293. fid, _ := strconv.Atoi(libs.FileId)
  294. fileIds = append(fileIds, fid)
  295. }
  296. info := iPCastPayingMp3Info{
  297. Type: 1,
  298. PlayTimes: paytime,
  299. FileIds: fileIds,
  300. TermIds: []int{1, 2, 3, 4, 5, 6, 7, 8},
  301. }
  302. marshal, err := json.Marshal(info)
  303. if err != nil {
  304. logger.Logger.Errorf("IPCastPaying iPCastPayingMp3Info err = %v \n", err)
  305. return "", 0
  306. }
  307. return string(marshal), librarie.Ptype
  308. //文字播放
  309. } else {
  310. contentInfo := iPCastPayingContentInfo{
  311. Content: getLibrariesByIds[0].MaterialAddress,
  312. Playtime: librarie.PlayTime,
  313. TermIds: []int{1, 2, 3, 4, 5, 6, 7, 8},
  314. PlayVol: 50,
  315. PromptTone: librarie.PlayInterval,
  316. }
  317. marshal, err := json.Marshal(contentInfo)
  318. if err != nil {
  319. logger.Logger.Errorf("IPCastPaying contentInfo err = %v \n", err)
  320. return "", 0
  321. }
  322. return string(marshal), librarie.Ptype
  323. }
  324. }
  325. // 计算还有多久结束
  326. func diffTime(stime, etime string) int {
  327. //stimeT, err := time.Parse("2006-01-02 15:04", fmt.Sprintf("%v %v", time.Now().Format("2006-01-02"), stime))
  328. stimeT, err := time.Parse("2006-01-02 15:04", fmt.Sprintf("%v", time.Now().Format("2006-01-02 15:04")))
  329. if err != nil {
  330. return -1
  331. }
  332. etimeT, err2 := time.Parse("2006-01-02 15:04", fmt.Sprintf("%v %v", time.Now().Format("2006-01-02"), etime))
  333. if err2 != nil {
  334. return -1
  335. }
  336. diff := int(etimeT.Sub(stimeT).Seconds())
  337. return diff
  338. }