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.
129 lines
4.5 KiB
129 lines
4.5 KiB
package admin
|
|
|
|
import (
|
|
apiStruct "Open_IM/pkg/cms_api_struct"
|
|
"Open_IM/pkg/common/config"
|
|
"Open_IM/pkg/common/constant"
|
|
"Open_IM/pkg/common/log"
|
|
"Open_IM/pkg/getcdv3"
|
|
pbAdmin "Open_IM/pkg/proto/admin_cms"
|
|
pbCommon "Open_IM/pkg/proto/sdk_ws"
|
|
"Open_IM/pkg/utils"
|
|
"context"
|
|
"net/http"
|
|
"strings"
|
|
|
|
"github.com/minio/minio-go/v7"
|
|
"github.com/minio/minio-go/v7/pkg/credentials"
|
|
|
|
url2 "net/url"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
var (
|
|
minioClient *minio.Client
|
|
)
|
|
|
|
func init() {
|
|
log.NewPrivateLog(constant.LogFileName)
|
|
operationID := utils.OperationIDGenerator()
|
|
log.NewInfo(operationID, utils.GetSelfFuncName(), "minio config: ", config.Config.Credential.Minio)
|
|
var initUrl string
|
|
if config.Config.Credential.Minio.EndpointInnerEnable {
|
|
initUrl = config.Config.Credential.Minio.EndpointInner
|
|
} else {
|
|
initUrl = config.Config.Credential.Minio.Endpoint
|
|
}
|
|
log.NewInfo(operationID, utils.GetSelfFuncName(), "use initUrl: ", initUrl)
|
|
minioUrl, err := url2.Parse(initUrl)
|
|
if err != nil {
|
|
log.NewError(operationID, utils.GetSelfFuncName(), "parse failed, please check config/config.yaml", err.Error())
|
|
return
|
|
}
|
|
opts := &minio.Options{
|
|
Creds: credentials.NewStaticV4(config.Config.Credential.Minio.AccessKeyID, config.Config.Credential.Minio.SecretAccessKey, ""),
|
|
}
|
|
if minioUrl.Scheme == "http" {
|
|
opts.Secure = false
|
|
} else if minioUrl.Scheme == "https" {
|
|
opts.Secure = true
|
|
}
|
|
log.NewInfo(operationID, utils.GetSelfFuncName(), "Parse ok ", config.Config.Credential.Minio)
|
|
minioClient, err = minio.New(minioUrl.Host, opts)
|
|
log.NewInfo(operationID, utils.GetSelfFuncName(), "new ok ", config.Config.Credential.Minio)
|
|
if err != nil {
|
|
log.NewError(operationID, utils.GetSelfFuncName(), "init minio client failed", err.Error())
|
|
return
|
|
}
|
|
}
|
|
|
|
func GetUserToken(c *gin.Context) {
|
|
var (
|
|
req apiStruct.GetUserTokenRequest
|
|
resp apiStruct.GetUserTokenResponse
|
|
reqPb pbAdmin.GetUserTokenReq
|
|
respPb *pbAdmin.GetUserTokenResp
|
|
)
|
|
if err := c.BindJSON(&req); err != nil {
|
|
log.NewError(req.OperationID, utils.GetSelfFuncName(), err.Error())
|
|
c.JSON(http.StatusBadRequest, gin.H{"errCode": 400, "errMsg": err.Error()})
|
|
return
|
|
}
|
|
reqPb.OperationID = req.OperationID
|
|
reqPb.UserID = req.UserID
|
|
reqPb.PlatformID = req.PlatFormID
|
|
etcdConn := getcdv3.GetDefaultConn(config.Config.Etcd.EtcdSchema, strings.Join(config.Config.Etcd.EtcdAddr, ","), config.Config.RpcRegisterName.OpenImAdminCMSName, reqPb.OperationID)
|
|
if etcdConn == nil {
|
|
errMsg := reqPb.OperationID + "getcdv3.GetDefaultConn == nil"
|
|
log.NewError(reqPb.OperationID, errMsg)
|
|
c.JSON(http.StatusInternalServerError, gin.H{"errCode": 500, "errMsg": errMsg})
|
|
return
|
|
}
|
|
client := pbAdmin.NewAdminCMSClient(etcdConn)
|
|
respPb, err := client.GetUserToken(context.Background(), &reqPb)
|
|
if err != nil {
|
|
log.NewError(reqPb.OperationID, utils.GetSelfFuncName(), "rpc failed", err.Error())
|
|
c.JSON(http.StatusInternalServerError, gin.H{"errCode": 500, "errMsg": err.Error()})
|
|
return
|
|
}
|
|
resp.Token = respPb.Token
|
|
resp.ExpTime = respPb.ExpTime
|
|
c.JSON(http.StatusOK, gin.H{"errCode": respPb.CommonResp.ErrCode, "errMsg": respPb.CommonResp.ErrMsg, "data": resp})
|
|
}
|
|
|
|
// register
|
|
func AdminLogin(c *gin.Context) {
|
|
var (
|
|
req apiStruct.AdminLoginRequest
|
|
resp apiStruct.AdminLoginResponse
|
|
reqPb pbAdmin.AdminLoginReq
|
|
)
|
|
if err := c.BindJSON(&req); err != nil {
|
|
log.NewError(req.OperationID, utils.GetSelfFuncName(), err.Error())
|
|
c.JSON(http.StatusBadRequest, gin.H{"errCode": 400, "errMsg": err.Error()})
|
|
return
|
|
}
|
|
reqPb.Secret = req.Secret
|
|
reqPb.AdminID = req.AdminName
|
|
reqPb.OperationID = utils.OperationIDGenerator()
|
|
etcdConn := getcdv3.GetDefaultConn(config.Config.Etcd.EtcdSchema, strings.Join(config.Config.Etcd.EtcdAddr, ","), config.Config.RpcRegisterName.OpenImAdminCMSName, reqPb.OperationID)
|
|
if etcdConn == nil {
|
|
errMsg := reqPb.OperationID + "getcdv3.GetDefaultConn == nil"
|
|
log.NewError(reqPb.OperationID, errMsg)
|
|
c.JSON(http.StatusInternalServerError, gin.H{"errCode": 500, "errMsg": errMsg})
|
|
return
|
|
}
|
|
client := pbAdmin.NewAdminCMSClient(etcdConn)
|
|
respPb, err := client.AdminLogin(context.Background(), &reqPb)
|
|
if err != nil {
|
|
log.NewError(reqPb.OperationID, utils.GetSelfFuncName(), "rpc failed", err.Error())
|
|
c.JSON(http.StatusInternalServerError, gin.H{"errCode": 500, "errMsg": err.Error()})
|
|
return
|
|
}
|
|
resp.FaceURL = respPb.FaceURL
|
|
resp.UserName = respPb.UserName
|
|
resp.Token = respPb.Token
|
|
c.JSON(http.StatusOK, gin.H{"errCode": respPb.CommonResp.ErrCode, "errMsg": respPb.CommonResp.ErrMsg, "data": resp})
|
|
}
|