mirror of
https://github.com/tendermint/tendermint.git
synced 2026-02-04 11:02:06 +00:00
The code in the Tendermint repository makes heavy use of import aliasing. This is made necessary by our extensive reuse of common base package names, and by repetition of similar names across different subdirectories. Unfortunately we have not been very consistent about which packages we alias in various circumstances, and the aliases we use vary. In the spirit of the advice in the style guide and https://github.com/golang/go/wiki/CodeReviewComments#imports, his change makes an effort to clean up and normalize import aliasing. This change makes no API or behavioral changes. It is a pure cleanup intended o help make the code more readable to developers (including myself) trying to understand what is being imported where. Only unexported names have been modified, and the changes were generated and applied mechanically with gofmt -r and comby, respecting the lexical and syntactic rules of Go. Even so, I did not fix every inconsistency. Where the changes would be too disruptive, I left it alone. The principles I followed in this cleanup are: - Remove aliases that restate the package name. - Remove aliases where the base package name is unambiguous. - Move overly-terse abbreviations from the import to the usage site. - Fix lexical issues (remove underscores, remove capitalization). - Fix import groupings to more closely match the style guide. - Group blank (side-effecting) imports and ensure they are commented. - Add aliases to multiple imports with the same base package name.
86 lines
1.9 KiB
Go
86 lines
1.9 KiB
Go
package client
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"net/http"
|
|
"strings"
|
|
|
|
rpctypes "github.com/tendermint/tendermint/rpc/jsonrpc/types"
|
|
)
|
|
|
|
const (
|
|
// URIClientRequestID in a request ID used by URIClient
|
|
URIClientRequestID = rpctypes.JSONRPCIntID(-1)
|
|
)
|
|
|
|
// URIClient is a JSON-RPC client, which sends POST form HTTP requests to the
|
|
// remote server.
|
|
//
|
|
// URIClient is safe for concurrent use by multiple goroutines.
|
|
type URIClient struct {
|
|
address string
|
|
client *http.Client
|
|
}
|
|
|
|
var _ HTTPClient = (*URIClient)(nil)
|
|
|
|
// NewURI returns a new client.
|
|
// An error is returned on invalid remote.
|
|
// The function panics when remote is nil.
|
|
func NewURI(remote string) (*URIClient, error) {
|
|
parsedURL, err := newParsedURL(remote)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
httpClient, err := DefaultHTTPClient(remote)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
parsedURL.SetDefaultSchemeHTTP()
|
|
|
|
uriClient := &URIClient{
|
|
address: parsedURL.GetTrimmedURL(),
|
|
client: httpClient,
|
|
}
|
|
|
|
return uriClient, nil
|
|
}
|
|
|
|
// Call issues a POST form HTTP request.
|
|
func (c *URIClient) Call(ctx context.Context, method string,
|
|
params map[string]interface{}, result interface{}) (interface{}, error) {
|
|
|
|
values, err := argsToURLValues(params)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to encode params: %w", err)
|
|
}
|
|
|
|
req, err := http.NewRequestWithContext(
|
|
ctx,
|
|
http.MethodPost,
|
|
c.address+"/"+method,
|
|
strings.NewReader(values.Encode()),
|
|
)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("new request: %w", err)
|
|
}
|
|
req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
|
|
|
|
resp, err := c.client.Do(req)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("post: %w", err)
|
|
}
|
|
defer resp.Body.Close()
|
|
|
|
responseBytes, err := ioutil.ReadAll(resp.Body)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("read response body: %w", err)
|
|
}
|
|
|
|
return unmarshalResponseBytes(responseBytes, URIClientRequestID, result)
|
|
}
|