This commit is contained in:
lwl0608 2024-12-19 16:53:41 +08:00
parent 72ab59c9fe
commit 97380ed80b
1 changed files with 15 additions and 0 deletions
app/mix/controller

View File

@ -8,6 +8,7 @@ import (
"service/bizcommon/util"
"service/library/logger"
"service/library/mediafiller"
"strings"
"github.com/gin-gonic/gin"
)
@ -158,6 +159,20 @@ func ApiGetZoneMomentListByZid(ctx *gin.Context) {
mediafiller.FillList(ctx, mediaFillableList)
service.DefaultService.UtilEncryptVideosForZoneMomentVOs(ctx, list)
if *req.Zid == 1 {
for _, vo := range list {
for _, mc := range vo.MediaComp.Images {
oldUrl := ""
oldUrls := mc.Urls
if len(oldUrls) >= 0 {
oldUrl = oldUrls[0]
}
newUrl := strings.ReplaceAll(oldUrl, "https://filecdntx01.tiefen.fun/", "https://levianderwinv01.tiefen.space/")
mc.Urls = []string{newUrl}
}
}
}
data := &zonemomentproto.ApiListByZidData{
List: list,
Offset: req.Offset + len(list),