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.
66 lines
2.0 KiB
66 lines
2.0 KiB
package group
|
|
|
|
import (
|
|
"Open_IM/pkg/common/config"
|
|
"Open_IM/pkg/common/log"
|
|
"Open_IM/pkg/common/token_verify"
|
|
"Open_IM/pkg/grpc-etcdv3/getcdv3"
|
|
"Open_IM/pkg/proto/group"
|
|
"context"
|
|
"github.com/gin-gonic/gin"
|
|
"net/http"
|
|
"strings"
|
|
)
|
|
|
|
type paramsTransferGroupOwner struct {
|
|
OperationID string `json:"operationID" binding:"required"`
|
|
GroupID string `json:"groupID" binding:"required"`
|
|
UID string `json:"uid" binding:"required"`
|
|
}
|
|
|
|
func newTransferGroupOwnerReq(params *paramsTransferGroupOwner) *group.TransferGroupOwnerReq {
|
|
pbData := group.TransferGroupOwnerReq{
|
|
OperationID: params.OperationID,
|
|
GroupID: params.GroupID,
|
|
NewOwner: params.UID,
|
|
}
|
|
return &pbData
|
|
}
|
|
|
|
func TransferGroupOwner(c *gin.Context) {
|
|
log.Info("", "", "api TransferGroupOwner init ....")
|
|
etcdConn := getcdv3.GetConn(config.Config.Etcd.EtcdSchema, strings.Join(config.Config.Etcd.EtcdAddr, ","), config.Config.RpcRegisterName.OpenImGroupName)
|
|
client := group.NewGroupClient(etcdConn)
|
|
//defer etcdConn.Close()
|
|
|
|
params := paramsTransferGroupOwner{}
|
|
if err := c.BindJSON(¶ms); err != nil {
|
|
c.JSON(http.StatusBadRequest, gin.H{"errCode": 400, "errMsg": err.Error()})
|
|
return
|
|
}
|
|
pbData := newTransferGroupOwnerReq(¶ms)
|
|
|
|
token := c.Request.Header.Get("token")
|
|
if claims, err := token_verify.ParseToken(token); err != nil {
|
|
c.JSON(http.StatusBadRequest, gin.H{"errCode": 400, "errMsg": "token validate err"})
|
|
return
|
|
} else {
|
|
pbData.OldOwner = claims.UID
|
|
}
|
|
|
|
log.Info("", "", "api TransferGroupOwner is server, [data: %s]", pbData.String())
|
|
reply, err := client.TransferGroupOwner(context.Background(), pbData)
|
|
if err != nil {
|
|
log.Error("", "", "api TransferGroupOwner call rpc fail, [data: %s] [err: %s]", pbData.String(), err.Error())
|
|
c.JSON(http.StatusInternalServerError, gin.H{"errCode": 500, "errMsg": err.Error()})
|
|
return
|
|
}
|
|
log.Info("", "", "api TransferGroupOwner call rpc success, [data: %s] [reply: %s]", pbData.String(), reply.String())
|
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"errCode": reply.ErrCode,
|
|
"errMsg": reply.ErrMsg,
|
|
})
|
|
|
|
}
|