|
@@ -13,10 +13,12 @@ import (
|
|
"strings"
|
|
"strings"
|
|
)
|
|
)
|
|
|
|
|
|
|
|
+// PublishLibraries 节目播放
|
|
var PublishLibraries = new(PublishLibrariesCtl)
|
|
var PublishLibraries = new(PublishLibrariesCtl)
|
|
|
|
|
|
type PublishLibrariesCtl struct{}
|
|
type PublishLibrariesCtl struct{}
|
|
|
|
|
|
|
|
+// List 节目播放列表
|
|
func (c *PublishLibrariesCtl) List(ctx *gin.Context) {
|
|
func (c *PublishLibrariesCtl) List(ctx *gin.Context) {
|
|
searchValue := ctx.Query("searchValue")
|
|
searchValue := ctx.Query("searchValue")
|
|
current, _ := strconv.Atoi(ctx.Query("current"))
|
|
current, _ := strconv.Atoi(ctx.Query("current"))
|
|
@@ -55,6 +57,7 @@ func (c *PublishLibrariesCtl) List(ctx *gin.Context) {
|
|
ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, rsp))
|
|
ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, rsp))
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+// GetLibraryList 节目播放 预览
|
|
func (c *PublishLibrariesCtl) GetLibraryList(ctx *gin.Context) {
|
|
func (c *PublishLibrariesCtl) GetLibraryList(ctx *gin.Context) {
|
|
id := ctx.Query("id")
|
|
id := ctx.Query("id")
|
|
librariesId, e := strconv.Atoi(id)
|
|
librariesId, e := strconv.Atoi(id)
|
|
@@ -70,7 +73,6 @@ func (c *PublishLibrariesCtl) GetLibraryList(ctx *gin.Context) {
|
|
ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(e.Error(), nil))
|
|
ctx.JSON(http.StatusOK, common.ParamsInvalidResponse(e.Error(), nil))
|
|
return
|
|
return
|
|
}
|
|
}
|
|
-
|
|
|
|
list, errors := service.ProgramService.GetLibraryList(claims.TenantId, programId)
|
|
list, errors := service.ProgramService.GetLibraryList(claims.TenantId, programId)
|
|
if errors != nil {
|
|
if errors != nil {
|
|
ctx.JSON(http.StatusOK, e)
|
|
ctx.JSON(http.StatusOK, e)
|
|
@@ -95,7 +97,7 @@ func (c *PublishLibrariesCtl) AffiliateEquipment(ctx *gin.Context) {
|
|
ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, devices))
|
|
ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, devices))
|
|
}
|
|
}
|
|
|
|
|
|
-// 变更状态
|
|
|
|
|
|
+// UpdateStatus 变更状态
|
|
func (c *PublishLibrariesCtl) UpdateStatus(ctx *gin.Context) {
|
|
func (c *PublishLibrariesCtl) UpdateStatus(ctx *gin.Context) {
|
|
id, _ := strconv.Atoi(ctx.Query("id"))
|
|
id, _ := strconv.Atoi(ctx.Query("id"))
|
|
status, _ := strconv.Atoi(ctx.Query("status"))
|
|
status, _ := strconv.Atoi(ctx.Query("status"))
|