zid
This commit is contained in:
parent
72ab59c9fe
commit
97380ed80b
app/mix/controller
|
@ -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),
|
||||
|
|
Loading…
Reference in New Issue