huangjiajun vor 1 Tag
Ursprung
Commit
622c8aa10d
2 geänderte Dateien mit 10 neuen und 10 gelöschten Zeilen
  1. +8
    -8
      app/hdl/hdl_set_center.go
  2. +2
    -2
      app/md/md_set_center.go

+ 8
- 8
app/hdl/hdl_set_center.go Datei anzeigen

@@ -6,7 +6,7 @@ import (
"applet/app/svc"
"applet/app/utils"
db "code.fnuoos.com/zhimeng/model.git/src"
"code.fnuoos.com/zhimeng/model.git/src/super/implement"
"code.fnuoos.com/zhimeng/model.git/src/super/model"
"github.com/gin-gonic/gin"
)

@@ -22,20 +22,20 @@ import (
// @Router /api/setCenter/share/index [GET]
func ShareIndex(c *gin.Context) {
masterId := svc.GetMasterId(c)
userAppDomainDb := implement.NewUserAppDomainDb(db.Db)
agent, err := userAppDomainDb.GetAppDomainByType("agent", masterId)
medium := new(model.UserAppDomain)
_, err := db.Db.Where("type =?", "medium").And("uuid =?", masterId).And("is_ssl =1").Get(medium)
if err != nil {
e.OutErr(c, e.ERR_DB_ORM, err.Error())
return
}
agentDomain := ""
if agent != nil {
agentDomain = agent.Domain
mediumDomain := ""
if medium != nil {
mediumDomain = medium.Domain
}
user := svc.GetUser(c)
e.OutSuc(c, md.ShareIndexResp{
MasterId: masterId,
AgentDomain: agentDomain + "?agent_id=" + utils.IntToStr(user.AgentId),
MasterId: masterId,
MediumDomain: mediumDomain + "?agent_id=" + utils.IntToStr(user.AgentId),
}, nil)
return
}

+ 2
- 2
app/md/md_set_center.go Datei anzeigen

@@ -1,6 +1,6 @@
package md

type ShareIndexResp struct {
MasterId string `json:"master_id"`
AgentDomain string `json:"agent_domain" example:"代理分享地址"`
MasterId string `json:"master_id"`
MediumDomain string `json:"medium_domain" example:"媒体分享地址"`
}

Laden…
Abbrechen
Speichern