publishLibrariesService.go 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366
  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. PlayTime: req.PlayTime,
  85. PlayInterval: req.PlayInterval,
  86. }
  87. libraries.CreateTime = time.Now()
  88. if err := libraries.Create(); err != nil {
  89. logger.Logger.Errorf("Create err = %s \n", err.Error())
  90. return common.FailResponse(err.Error(), nil)
  91. }
  92. fmt.Printf("libraries = %v", libraries)
  93. //TODO: 日志保存
  94. return common.SuccessResponse(common.Succeeded, nil)
  95. }
  96. // GetProgram 取节目
  97. func (s *publishLibrariesService) GetProgram(id int) (int, error) {
  98. libraries := dao.PublishLibraries{ID: int64(id)}
  99. program, err := libraries.GetProgram()
  100. return program, err
  101. }
  102. func (s *publishLibrariesService) putPublishLibraries(programId int, publishLibraries dao.PublishLibraries) {
  103. }
  104. // UpdateStatus 状态变更
  105. func (s *publishLibrariesService) UpdateStatus(tenantId string, id int, status int, name string) (bool, error) {
  106. update := &dao.PublishLibraries{
  107. TenantId: tenantId,
  108. ID: int64(id),
  109. Status: status,
  110. Name: name,
  111. }
  112. err := update.Update()
  113. if err != nil {
  114. return false, err
  115. }
  116. return true, nil
  117. }
  118. func (s *publishLibrariesService) Remove(userId int64, tenantId string, id int) *common.Errors {
  119. // 创建查询实例
  120. device := &dao.PublishLibraries{
  121. ID: int64(id),
  122. IsDeleted: 1,
  123. UpdateUser: strconv.Itoa(int(userId)),
  124. UpdateTime: time.Now(),
  125. }
  126. err := device.Delete()
  127. if err != nil {
  128. return common.FailResponse(err.Error(), nil)
  129. }
  130. service.OperationHisService.Save(userId, tenantId, common.OperationRemove, common.DeviceTypeInfoBoard,
  131. common.DeviceTypeBridge, common.GetDeviceObject(int(device.ID), device.Name), common.OperationSuccess)
  132. return nil
  133. }
  134. type CltLedLibraries struct {
  135. Type string `json:"type"` //文件类型 2:图片3:视频5:文本27:网页
  136. Name string `json:"name"` //节目名字
  137. Imageinfo Imageinfo `json:"imageinfo"` //图片或视频信息
  138. }
  139. type InEffect struct {
  140. Type string `json:"Type"` //翻页类型 2
  141. Time string `json:"Time"` ///翻页花费时间 1000为1秒
  142. }
  143. type Imageinfo struct {
  144. Urls []string `json:"urls"`
  145. Duration string `json:"duration"`
  146. InEffect InEffect `json:"inEffect"`
  147. }
  148. // LedPaying 组装当前led屏要播放的节目json
  149. func (s *publishLibrariesService) LedPaying(ledId int, playing string) string {
  150. libraries := dao.PublishLibraries{}
  151. librarie, err := libraries.GetProgramByLedId(ledId)
  152. if err != nil {
  153. logger.Logger.Errorf("LedPaying err = %v \n", err)
  154. return ""
  155. }
  156. if librarie.ID < 1 {
  157. //没有新节目不更新
  158. return ""
  159. }
  160. //fmt.Printf("librarie = %v \n", librarie)
  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 err != nil {
  168. logger.Logger.Errorf("LedPaying err = %s \n", err.Error())
  169. return ""
  170. }
  171. var libraryIds []int
  172. for _, relation := range relations {
  173. libraryIds = append(libraryIds, relation.LibraryId)
  174. }
  175. //fmt.Printf("libraryIds = %v \n", libraryIds)
  176. library := &dao.Library{TenantId: librarie.TenantId}
  177. getLibrariesByIds, _ := library.GetLibrariesByIds(libraryIds)
  178. if len(getLibrariesByIds) < 1 {
  179. logger.Logger.Errorf("无素材")
  180. return ""
  181. }
  182. var cltLedLibraries CltLedLibraries
  183. cltLedLibraries.Name = fmt.Sprintf("%v-%v", librarie.Name, librarie.ID)
  184. if strings.EqualFold(cltLedLibraries.Name, strings.ReplaceAll(playing, ".vsn", "")) {
  185. logger.Logger.Errorf("节目相同无需要更新")
  186. return ""
  187. }
  188. cltLedLibraries.Type = "2"
  189. if strings.Contains(getLibrariesByIds[0].MaterialAddress, "mp4") {
  190. cltLedLibraries.Type = "3"
  191. }
  192. var urls []string
  193. for _, getLibrariesById := range getLibrariesByIds {
  194. urls = append(urls, getLibrariesById.MaterialAddress)
  195. }
  196. cltLedLibraries.Imageinfo.Duration = strconv.Itoa(int(librarie.Duration))
  197. cltLedLibraries.Imageinfo.Urls = urls
  198. cltLedLibraries.Imageinfo.InEffect.Type = "2"
  199. //cltLedLibraries.Imageinfo.InEffect.Time = strconv.Itoa(relations[0].Duration)
  200. cltLedLibraries.Imageinfo.InEffect.Time = "1500"
  201. fmt.Printf("cltLedLibraries = %v \n", cltLedLibraries)
  202. marshal, err := json.Marshal(cltLedLibraries)
  203. if err != nil {
  204. fmt.Printf("LedPaying err = %v \n", err)
  205. return ""
  206. }
  207. fmt.Printf("cltLedLibraries = %v \n", string(marshal))
  208. str := string(marshal)
  209. //fmt.Printf("str = %v \n", str)
  210. return str
  211. }
  212. type iPCastPayingMp3Info struct {
  213. Type int `json:"Type"`
  214. PlayTimes int `json:"PlayTimes"`
  215. FileIds []int `json:"FileIds"`
  216. TermIds []int `json:"TermIds"`
  217. }
  218. type iPCastPayingContentInfo struct {
  219. Content string `json:"Content"`
  220. Playtime int `json:"Playtime"`
  221. TermIds []int `json:"TermIds"`
  222. PlayVol int `json:"PlayVol"`
  223. PromptTone int `json:"PromptTone"`
  224. }
  225. func (s *publishLibrariesService) IPCastPaying(id int) (string, int) {
  226. publishLibraries := dao.PublishLibraries{}
  227. libraries, err := publishLibraries.GetProgramByIpCastId(id)
  228. if err != nil {
  229. logger.Logger.Errorf("IPCastPaying err = %v \n", err)
  230. return "", 0
  231. }
  232. if len(libraries) < 1 {
  233. //没有新节目不更新
  234. return "", 0
  235. }
  236. //fmt.Printf("libraries = %v \n", libraries)
  237. var librarie dao.PublishLibraries
  238. //判断当前到底要放哪个节目
  239. for _, library := range libraries {
  240. library.Ptype = 1
  241. if library.JsTime == "" {
  242. library.Ptype = 0
  243. }
  244. if library.Ptype == 1 && library.JsTime != "" {
  245. currTime := time.Now()
  246. parse, err := time.Parse("2006-01-02 15:04", fmt.Sprintf("%v %v", time.Now().Format("2006-01-02"), library.JsTime))
  247. if err != nil {
  248. fmt.Printf("IPCastPaying parse err = %v \n", err)
  249. logger.Logger.Errorf("IPCastPaying parse err = %v \n", err)
  250. continue
  251. }
  252. if parse.Before(currTime) {
  253. continue
  254. }
  255. } else {
  256. cTime := time.Now()
  257. kTime, err := time.Parse("2006-01-02 15:04", fmt.Sprintf("%v %v", time.Now().Format("2006-01-02"), library.KsTime))
  258. if err != nil {
  259. fmt.Printf("IPCastPaying kTime err = %v \n", err)
  260. logger.Logger.Errorf("IPCastPaying kTime err = %v \n", err)
  261. }
  262. //这里要作限制 ,只有是当前时分 才操作
  263. if cTime.Minute() != kTime.Minute() || cTime.Hour() == kTime.Hour() {
  264. continue
  265. }
  266. }
  267. librarie = library
  268. }
  269. //fmt.Printf("librarie = %v \n", librarie)
  270. program, _ := s.GetProgram(int(librarie.ID))
  271. relation := &dao.ProgramRelation{
  272. ProgramId: program,
  273. TenantId: librarie.TenantId,
  274. }
  275. relations, err := relation.GetByProgram()
  276. if err != nil {
  277. logger.Logger.Errorf("IPCastPaying err = %s \n", err)
  278. return "", 0
  279. }
  280. var libraryIds []int
  281. for _, relation := range relations {
  282. libraryIds = append(libraryIds, relation.LibraryId)
  283. }
  284. library := &dao.Library{TenantId: librarie.TenantId}
  285. getLibrariesByIds, _ := library.GetLibrariesByIds(libraryIds)
  286. if len(getLibrariesByIds) < 1 {
  287. logger.Logger.Errorf("无素材")
  288. return "", 0
  289. }
  290. //fmt.Printf("getLibrariesByIds = %v \n", getLibrariesByIds)
  291. // 音频播放
  292. if librarie.Ptype == 1 {
  293. paytime := diffTime(librarie.KsTime, librarie.JsTime)
  294. if paytime < 0 {
  295. logger.Logger.Errorf("播放时间出错啦")
  296. return "", 0
  297. }
  298. fileIds := []int{}
  299. for _, libs := range getLibrariesByIds {
  300. fid, _ := strconv.Atoi(libs.FileId)
  301. fileIds = append(fileIds, fid)
  302. }
  303. info := iPCastPayingMp3Info{
  304. Type: 1,
  305. PlayTimes: paytime,
  306. FileIds: fileIds,
  307. TermIds: []int{1, 2, 3, 4, 5, 6, 7, 8},
  308. }
  309. marshal, err := json.Marshal(info)
  310. if err != nil {
  311. logger.Logger.Errorf("IPCastPaying iPCastPayingMp3Info err = %v \n", err)
  312. return "", 0
  313. }
  314. return string(marshal), librarie.Ptype
  315. //文字播放
  316. } else {
  317. contentInfo := iPCastPayingContentInfo{
  318. Content: getLibrariesByIds[0].MaterialAddress,
  319. Playtime: librarie.PlayTime,
  320. TermIds: []int{1, 2, 3, 4, 5, 6, 7, 8},
  321. PlayVol: 50,
  322. PromptTone: librarie.PlayInterval,
  323. }
  324. marshal, err := json.Marshal(contentInfo)
  325. if err != nil {
  326. logger.Logger.Errorf("IPCastPaying contentInfo err = %v \n", err)
  327. return "", 0
  328. }
  329. return string(marshal), librarie.Ptype
  330. }
  331. }
  332. // 计算2个时间相差多少秒
  333. func diffTime(stime, etime string) int {
  334. stimeT, err := time.Parse("2006-01-02 15:04", fmt.Sprintf("%v %v", time.Now().Format("2006-01-02"), stime))
  335. if err != nil {
  336. return -1
  337. }
  338. etimeT, err2 := time.Parse("2006-01-02 15:04", fmt.Sprintf("%v %v", time.Now().Format("2006-01-02"), etime))
  339. if err2 != nil {
  340. return -1
  341. }
  342. diff := int(etimeT.Sub(stimeT).Seconds())
  343. return diff
  344. }