goc/pkg/client/client.go

147 lines
3.6 KiB
Go
Raw Normal View History

2021-07-12 08:39:16 +00:00
package client
import (
"encoding/json"
"fmt"
2021-07-12 12:09:45 +00:00
"golang.org/x/term"
2021-07-12 08:39:16 +00:00
"io"
"io/ioutil"
"net"
"net/http"
"net/url"
"os"
2021-07-12 12:09:45 +00:00
"github.com/olekukonko/tablewriter"
"github.com/qiniu/goc/v2/pkg/log"
2021-07-12 08:39:16 +00:00
)
// Action provides methods to contact with the covered agent under test
type Action interface {
2021-07-12 12:09:45 +00:00
ListAgents(bool)
2021-07-12 08:39:16 +00:00
}
const (
// CoverAgentsListAPI list all the registered agents
CoverAgentsListAPI = "/v2/rpcagents"
)
type client struct {
Host string
client *http.Client
}
// gocListAgents response of the list request
type gocListAgents struct {
Items []gocCoveredAgent `json:"items"`
}
// gocCoveredAgent represents a covered client
type gocCoveredAgent struct {
Id string `json:"id"`
RemoteIP string `json:"remoteip"`
Hostname string `json:"hostname"`
CmdLine string `json:"cmdline"`
Pid string `json:"pid"`
}
// NewWorker creates a worker to contact with host
func NewWorker(host string) Action {
_, err := url.ParseRequestURI(host)
if err != nil {
2021-07-12 12:09:45 +00:00
log.Fatalf("parse url %s failed, err: %v", host, err)
2021-07-12 08:39:16 +00:00
}
return &client{
Host: host,
client: http.DefaultClient,
}
}
2021-07-12 12:09:45 +00:00
func (c *client) ListAgents(wide bool) {
2021-07-12 08:39:16 +00:00
u := fmt.Sprintf("%s%s", c.Host, CoverAgentsListAPI)
_, body, err := c.do("GET", u, "", nil)
if err != nil && isNetworkError(err) {
_, body, err = c.do("GET", u, "", nil)
}
if err != nil {
2021-07-12 12:09:45 +00:00
err = fmt.Errorf("goc list failed: %v", err)
2021-07-12 08:39:16 +00:00
log.Fatalf(err.Error())
}
agents := gocListAgents{}
err = json.Unmarshal(body, &agents)
if err != nil {
2021-07-12 12:09:45 +00:00
err = fmt.Errorf("goc list failed: json unmarshal failed: %v", err)
2021-07-12 08:39:16 +00:00
log.Fatalf(err.Error())
}
table := tablewriter.NewWriter(os.Stdout)
2021-07-12 12:09:45 +00:00
table.SetCenterSeparator("")
table.SetColumnSeparator("")
table.SetRowSeparator("")
table.SetHeaderLine(false)
table.SetBorder(false)
table.SetTablePadding(" ") // pad with 3 blank spaces
table.SetNoWhiteSpace(true)
table.SetReflowDuringAutoWrap(false)
table.SetHeaderAlignment(tablewriter.ALIGN_LEFT)
if wide {
table.SetHeader([]string{"ID", "REMOTEIP", "HOSTNAME", "PID", "CMD"})
table.SetColumnAlignment([]int{tablewriter.ALIGN_LEFT, tablewriter.ALIGN_LEFT, tablewriter.ALIGN_LEFT, tablewriter.ALIGN_LEFT, tablewriter.ALIGN_LEFT, tablewriter.ALIGN_LEFT})
} else {
table.SetHeader([]string{"ID", "REMOTEIP", "CMD"})
table.SetColumnAlignment([]int{tablewriter.ALIGN_LEFT, tablewriter.ALIGN_LEFT, tablewriter.ALIGN_LEFT})
}
2021-07-12 08:39:16 +00:00
for _, agent := range agents.Items {
2021-07-12 12:09:45 +00:00
if wide {
table.Append([]string{agent.Id, agent.RemoteIP, agent.Hostname, agent.Pid, agent.CmdLine})
} else {
preLen := len(agent.Id) + len(agent.RemoteIP) + 9
table.Append([]string{agent.Id, agent.RemoteIP, getSimpleCmdLine(preLen, agent.CmdLine)})
}
2021-07-12 08:39:16 +00:00
}
table.Render()
return
}
2021-07-12 12:09:45 +00:00
// getSimpleCmdLine
func getSimpleCmdLine(preLen int, cmdLine string) string {
pathLen := len(cmdLine)
width, _, err := term.GetSize(int(os.Stdin.Fd()))
if err != nil || width <= preLen+16 {
width = 16 + preLen // show at least 16 words of the command
}
if pathLen > width-preLen {
return cmdLine[:width-preLen]
}
return cmdLine
}
2021-07-12 08:39:16 +00:00
func (c *client) do(method, url, contentType string, body io.Reader) (*http.Response, []byte, error) {
req, err := http.NewRequest(method, url, body)
if err != nil {
return nil, nil, err
}
if contentType != "" {
req.Header.Set("Content-Type", contentType)
}
res, err := c.client.Do(req)
if err != nil {
return nil, nil, err
}
defer res.Body.Close()
responseBody, err := ioutil.ReadAll(res.Body)
if err != nil {
return res, nil, err
}
return res, responseBody, nil
}
func isNetworkError(err error) bool {
if err == io.EOF {
return true
}
_, ok := err.(net.Error)
return ok
}