You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.8 KiB
56 lines
1.8 KiB
2 years ago
|
package clientInit
|
||
|
|
||
|
import (
|
||
|
api "Open_IM/pkg/base_info"
|
||
|
imdb "Open_IM/pkg/common/db/mysql_model/im_mysql_model"
|
||
|
"Open_IM/pkg/common/log"
|
||
|
"Open_IM/pkg/utils"
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/gin-gonic/gin"
|
||
|
)
|
||
|
|
||
|
func SetClientInitConfig(c *gin.Context) {
|
||
|
var req api.SetClientInitConfigReq
|
||
|
var resp api.SetClientInitConfigResp
|
||
|
if err := c.BindJSON(&req); err != nil {
|
||
|
log.NewError("0", utils.GetSelfFuncName(), err.Error())
|
||
|
c.JSON(http.StatusBadRequest, gin.H{"errCode": 400, "errMsg": err.Error()})
|
||
|
return
|
||
|
}
|
||
|
log.NewInfo(req.OperationID, utils.GetSelfFuncName(), "req: ", req)
|
||
|
m := make(map[string]interface{})
|
||
|
if req.DiscoverPageURL != nil {
|
||
|
m["discover_page_url"] = *req.DiscoverPageURL
|
||
|
}
|
||
|
if len(m) > 0 {
|
||
|
err := imdb.SetClientInitConfig(m)
|
||
|
if err != nil {
|
||
|
log.NewError(req.OperationID, utils.GetSelfFuncName(), err.Error())
|
||
|
c.JSON(http.StatusInternalServerError, gin.H{"errCode": 500, "errMsg": err.Error()})
|
||
|
}
|
||
|
}
|
||
|
log.NewInfo(req.OperationID, utils.GetSelfFuncName(), "resp: ", resp)
|
||
|
c.JSON(http.StatusOK, resp)
|
||
|
}
|
||
|
|
||
|
func GetClientInitConfig(c *gin.Context) {
|
||
|
var req api.GetClientInitConfigReq
|
||
|
var resp api.GetClientInitConfigResp
|
||
|
if err := c.BindJSON(&req); err != nil {
|
||
|
log.NewError("0", utils.GetSelfFuncName(), err.Error())
|
||
|
c.JSON(http.StatusBadRequest, gin.H{"errCode": 400, "errMsg": err.Error()})
|
||
|
return
|
||
|
}
|
||
|
log.NewInfo(req.OperationID, utils.GetSelfFuncName(), "req: ", req)
|
||
|
config, err := imdb.GetClientInitConfig()
|
||
|
if err != nil {
|
||
|
log.NewError(req.OperationID, utils.GetSelfFuncName(), err.Error())
|
||
|
c.JSON(http.StatusInternalServerError, gin.H{"errCode": 500, "errMsg": err.Error()})
|
||
|
}
|
||
|
resp.Data.DiscoverPageURL = config.DiscoverPageURL
|
||
|
log.NewInfo(req.OperationID, utils.GetSelfFuncName(), "resp ", resp)
|
||
|
c.JSON(http.StatusOK, resp)
|
||
|
|
||
|
}
|