Files
open-im-server/internal/api/third.go
T

108 lines
2.9 KiB
Go
Raw Normal View History

2023-03-03 17:20:36 +08:00
package api
import (
"context"
2023-05-08 12:39:45 +08:00
"math/rand"
"net/http"
"strconv"
2023-03-17 11:27:34 +08:00
"github.com/OpenIMSDK/Open-IM-Server/pkg/a2r"
2023-03-16 10:46:06 +08:00
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/config"
2023-03-28 17:11:04 +08:00
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/constant"
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/mcontext"
2023-03-16 10:46:06 +08:00
"github.com/OpenIMSDK/Open-IM-Server/pkg/discoveryregistry"
"github.com/OpenIMSDK/Open-IM-Server/pkg/errs"
"github.com/OpenIMSDK/Open-IM-Server/pkg/proto/third"
2023-03-03 17:20:36 +08:00
"github.com/gin-gonic/gin"
2023-05-30 16:15:11 +08:00
"google.golang.org/grpc"
2023-03-03 17:20:36 +08:00
)
2023-05-30 16:15:11 +08:00
func NewThird(discov discoveryregistry.SvcDiscoveryRegistry) *Third {
conn, err := discov.GetConn(context.Background(), config.Config.RpcRegisterName.OpenImThirdName)
if err != nil {
panic(err)
}
return &Third{conn: conn}
2023-03-03 17:20:36 +08:00
}
type Third struct {
2023-05-30 16:15:11 +08:00
conn *grpc.ClientConn
2023-03-03 17:20:36 +08:00
}
2023-05-08 12:39:45 +08:00
func (o *Third) client(ctx context.Context) (third.ThirdClient, error) {
2023-05-30 16:15:11 +08:00
return third.NewThirdClient(o.conn), nil
2023-03-03 17:20:36 +08:00
}
func (o *Third) ApplyPut(c *gin.Context) {
a2r.Call(third.ThirdClient.ApplyPut, o.client, c)
}
func (o *Third) GetPut(c *gin.Context) {
a2r.Call(third.ThirdClient.GetPut, o.client, c)
}
func (o *Third) ConfirmPut(c *gin.Context) {
a2r.Call(third.ThirdClient.ConfirmPut, o.client, c)
}
2023-03-29 18:33:02 +08:00
func (o *Third) GetHash(c *gin.Context) {
a2r.Call(third.ThirdClient.GetHashInfo, o.client, c)
}
2023-03-03 17:20:36 +08:00
func (o *Third) GetSignalInvitationInfo(c *gin.Context) {
a2r.Call(third.ThirdClient.GetSignalInvitationInfo, o.client, c)
}
func (o *Third) GetSignalInvitationInfoStartApp(c *gin.Context) {
a2r.Call(third.ThirdClient.GetSignalInvitationInfoStartApp, o.client, c)
}
func (o *Third) FcmUpdateToken(c *gin.Context) {
a2r.Call(third.ThirdClient.FcmUpdateToken, o.client, c)
}
func (o *Third) SetAppBadge(c *gin.Context) {
a2r.Call(third.ThirdClient.SetAppBadge, o.client, c)
}
2023-03-14 19:33:44 +08:00
func (o *Third) GetURL(c *gin.Context) {
if c.Request.Method == http.MethodPost {
a2r.Call(third.ThirdClient.GetUrl, o.client, c)
return
}
name := c.Query("name")
if name == "" {
c.String(http.StatusBadRequest, "name is empty")
return
}
2023-03-29 18:48:07 +08:00
operationID := c.Query("operationID")
if operationID == "" {
operationID = "auto_" + strconv.Itoa(rand.Int())
}
expires, _ := strconv.ParseInt(c.Query("expires"), 10, 64)
if expires <= 0 {
expires = 3600 * 1000
2023-03-28 17:03:52 +08:00
}
2023-03-29 11:17:16 +08:00
attachment, _ := strconv.ParseBool(c.Query("attachment"))
2023-05-08 12:39:45 +08:00
client, err := o.client(c)
2023-03-14 19:33:44 +08:00
if err != nil {
c.String(http.StatusInternalServerError, err.Error())
return
}
2023-03-28 17:11:04 +08:00
c.Set(constant.OperationID, operationID)
2023-03-29 11:17:16 +08:00
resp, err := client.GetUrl(mcontext.SetOperationID(c, operationID), &third.GetUrlReq{Name: name, Expires: expires, Attachment: attachment})
2023-03-14 19:33:44 +08:00
if err != nil {
if errs.ErrArgs.Is(err) {
c.String(http.StatusBadRequest, err.Error())
return
}
if errs.ErrRecordNotFound.Is(err) {
c.String(http.StatusNotFound, err.Error())
return
}
c.String(http.StatusInternalServerError, err.Error())
return
}
c.Redirect(http.StatusTemporaryRedirect, resp.Url)
}