@@ -5,16 +5,18 @@ import (
5
5
"context"
6
6
"encoding/json"
7
7
"fmt"
8
+ "io"
9
+ "net/http"
10
+
8
11
"github.com/openimsdk/openim-sdk-core/v3/internal/util"
9
12
"github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
10
13
"github.com/openimsdk/openim-sdk-core/v3/pkg/sdkerrs"
11
14
"github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
12
15
authPB "github.com/openimsdk/protocol/auth"
13
16
"github.com/openimsdk/protocol/msg"
17
+ "github.com/openimsdk/tools/errs"
14
18
"github.com/openimsdk/tools/log"
15
19
"github.com/openimsdk/tools/mcontext"
16
- "io"
17
- "net/http"
18
20
)
19
21
20
22
const (
@@ -55,17 +57,16 @@ func (m *MetaManager) NewApiMsgSender() *ApiMsgSender {
55
57
func (m * MetaManager ) apiPost (ctx context.Context , route string , req , resp any ) (err error ) {
56
58
operationID , _ := ctx .Value ("operationID" ).(string )
57
59
if operationID == "" {
58
- err := sdkerrs .ErrArgs .Wrap ("call api operationID is empty" )
59
- return err
60
+ return errs .ErrArgs .WrapMsg ("call api operationID is empty" )
60
61
}
61
62
reqBody , err := json .Marshal (req )
62
63
if err != nil {
63
- return sdkerrs . ErrSdkInternal . Wrap ("json.Marshal(req) failed " + err .Error ())
64
+ return errs . ErrArgs . WrapMsg ("json.Marshal(req) failed " + err .Error ())
64
65
}
65
66
reqUrl := m .apiAddr + route
66
67
request , err := http .NewRequestWithContext (ctx , http .MethodPost , reqUrl , bytes .NewReader (reqBody ))
67
68
if err != nil {
68
- return sdkerrs . ErrSdkInternal . Wrap ("sdk http.NewRequestWithContext failed " + err .Error ())
69
+ return errs . ErrArgs . WrapMsg ("sdk http.NewRequestWithContext failed " + err .Error ())
69
70
}
70
71
log .ZDebug (ctx , "ApiRequest" , "url" , reqUrl , "body" , string (reqBody ))
71
72
request .ContentLength = int64 (len (reqBody ))
@@ -76,18 +77,18 @@ func (m *MetaManager) apiPost(ctx context.Context, route string, req, resp any)
76
77
}
77
78
response , err := new (http.Client ).Do (request )
78
79
if err != nil {
79
- return sdkerrs . ErrNetwork . Wrap ("ApiPost http.Client.Do failed " + err .Error ())
80
+ return errs . ErrArgs . WrapMsg ("ApiPost http.Client.Do failed " + err .Error ())
80
81
}
81
82
defer response .Body .Close ()
82
83
respBody , err := io .ReadAll (response .Body )
83
84
if err != nil {
84
85
log .ZError (ctx , "ApiResponse" , err , "type" , "read body" , "status" , response .Status )
85
- return sdkerrs . ErrSdkInternal . Wrap ("io.ReadAll(ApiResponse) failed " + err .Error ())
86
+ return errs . ErrArgs . WrapMsg ("io.ReadAll(ApiResponse) failed " + err .Error ())
86
87
}
87
88
log .ZDebug (ctx , "ApiResponse" , "url" , reqUrl , "status" , response .Status , "body" , string (respBody ))
88
89
var baseApi util.ApiResponse
89
90
if err := json .Unmarshal (respBody , & baseApi ); err != nil {
90
- return sdkerrs . ErrSdkInternal . Wrap (fmt .Sprintf ("api %s json.Unmarshal(%q, %T) failed %s" , m .apiAddr , string (respBody ), & baseApi , err .Error ()))
91
+ return errs . ErrArgs . WrapMsg (fmt .Sprintf ("api %s json.Unmarshal(%q, %T) failed %s" , m .apiAddr , string (respBody ), & baseApi , err .Error ()))
91
92
}
92
93
if baseApi .ErrCode != 0 {
93
94
err := sdkerrs .New (baseApi .ErrCode , baseApi .ErrMsg , baseApi .ErrDlt )
@@ -97,7 +98,7 @@ func (m *MetaManager) apiPost(ctx context.Context, route string, req, resp any)
97
98
return nil
98
99
}
99
100
if err := json .Unmarshal (baseApi .Data , resp ); err != nil {
100
- return sdkerrs . ErrSdkInternal . Wrap (fmt .Sprintf ("json.Unmarshal(%q, %T) failed %s" , string (baseApi .Data ), resp , err .Error ()))
101
+ return errs . ErrArgs . WrapMsg (fmt .Sprintf ("json.Unmarshal(%q, %T) failed %s" , string (baseApi .Data ), resp , err .Error ()))
101
102
}
102
103
return nil
103
104
}
0 commit comments