// Copyright (c) 2022 Alibaba Group Holding Ltd. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package wrapper import ( "net/http" "strconv" "github.com/google/uuid" "github.com/tetratelabs/proxy-wasm-go-sdk/proxywasm" ) type ResponseCallback func(statusCode int, responseHeaders http.Header, responseBody []byte) type HttpClient interface { Get(path string, headers [][2]string, cb ResponseCallback, timeoutMillisecond ...uint32) error Head(path string, headers [][2]string, cb ResponseCallback, timeoutMillisecond ...uint32) error Options(path string, headers [][2]string, cb ResponseCallback, timeoutMillisecond ...uint32) error Post(path string, headers [][2]string, body []byte, cb ResponseCallback, timeoutMillisecond ...uint32) error Put(path string, headers [][2]string, body []byte, cb ResponseCallback, timeoutMillisecond ...uint32) error Patch(path string, headers [][2]string, body []byte, cb ResponseCallback, timeoutMillisecond ...uint32) error Delete(path string, headers [][2]string, body []byte, cb ResponseCallback, timeoutMillisecond ...uint32) error Connect(path string, headers [][2]string, body []byte, cb ResponseCallback, timeoutMillisecond ...uint32) error Trace(path string, headers [][2]string, body []byte, cb ResponseCallback, timeoutMillisecond ...uint32) error } type ClusterClient[C Cluster] struct { cluster C } func NewClusterClient[C Cluster](cluster C) *ClusterClient[C] { return &ClusterClient[C]{cluster: cluster} } func (c ClusterClient[C]) Get(path string, headers [][2]string, cb ResponseCallback, timeoutMillisecond ...uint32) error { return HttpCall(c.cluster, http.MethodGet, path, headers, nil, cb, timeoutMillisecond...) } func (c ClusterClient[C]) Head(path string, headers [][2]string, cb ResponseCallback, timeoutMillisecond ...uint32) error { return HttpCall(c.cluster, http.MethodHead, path, headers, nil, cb, timeoutMillisecond...) } func (c ClusterClient[C]) Options(path string, headers [][2]string, cb ResponseCallback, timeoutMillisecond ...uint32) error { return HttpCall(c.cluster, http.MethodOptions, path, headers, nil, cb, timeoutMillisecond...) } func (c ClusterClient[C]) Post(path string, headers [][2]string, body []byte, cb ResponseCallback, timeoutMillisecond ...uint32) error { return HttpCall(c.cluster, http.MethodPost, path, headers, body, cb, timeoutMillisecond...) } func (c ClusterClient[C]) Put(path string, headers [][2]string, body []byte, cb ResponseCallback, timeoutMillisecond ...uint32) error { return HttpCall(c.cluster, http.MethodPut, path, headers, body, cb, timeoutMillisecond...) } func (c ClusterClient[C]) Patch(path string, headers [][2]string, body []byte, cb ResponseCallback, timeoutMillisecond ...uint32) error { return HttpCall(c.cluster, http.MethodPatch, path, headers, body, cb, timeoutMillisecond...) } func (c ClusterClient[C]) Delete(path string, headers [][2]string, body []byte, cb ResponseCallback, timeoutMillisecond ...uint32) error { return HttpCall(c.cluster, http.MethodDelete, path, headers, body, cb, timeoutMillisecond...) } func (c ClusterClient[C]) Connect(path string, headers [][2]string, body []byte, cb ResponseCallback, timeoutMillisecond ...uint32) error { return HttpCall(c.cluster, http.MethodConnect, path, headers, body, cb, timeoutMillisecond...) } func (c ClusterClient[C]) Trace(path string, headers [][2]string, body []byte, cb ResponseCallback, timeoutMillisecond ...uint32) error { return HttpCall(c.cluster, http.MethodTrace, path, headers, body, cb, timeoutMillisecond...) } func HttpCall(cluster Cluster, method, path string, headers [][2]string, body []byte, callback ResponseCallback, timeoutMillisecond ...uint32) error { for i := len(headers) - 1; i >= 0; i-- { key := headers[i][0] if key == ":method" || key == ":path" || key == ":authority" { headers = append(headers[:i], headers[i+1:]...) } } // default timeout is 500ms var timeout uint32 = 500 if len(timeoutMillisecond) > 0 { timeout = timeoutMillisecond[0] } headers = append(headers, [2]string{":method", method}, [2]string{":path", path}, [2]string{":authority", cluster.HostName()}) requestID := uuid.New().String() _, err := proxywasm.DispatchHttpCall(cluster.ClusterName(), headers, body, nil, timeout, func(numHeaders, bodySize, numTrailers int) { respBody, err := proxywasm.GetHttpCallResponseBody(0, bodySize) if err != nil { proxywasm.LogCriticalf("failed to get response body: %v", err) } respHeaders, err := proxywasm.GetHttpCallResponseHeaders() if err != nil { proxywasm.LogCriticalf("failed to get response headers: %v", err) } code := http.StatusBadGateway var normalResponse bool headers := make(http.Header) for _, h := range respHeaders { if h[0] == ":status" { code, err = strconv.Atoi(h[1]) if err != nil { proxywasm.LogErrorf("failed to parse status: %v", err) code = http.StatusInternalServerError } else { normalResponse = true } } headers.Add(h[0], h[1]) } proxywasm.LogDebugf("http call end, id: %s, code: %d, normal: %t, body: %s", requestID, code, normalResponse, respBody) callback(code, headers, respBody) }) proxywasm.LogDebugf("http call start, id: %s, cluster: %s, method: %s, path: %s, body: %s, timeout: %d", requestID, cluster.ClusterName(), method, path, body, timeout) return err }