72 lines
1.4 KiB
Go
72 lines
1.4 KiB
Go
package main
|
|
|
|
import (
|
|
"flag"
|
|
"fmt"
|
|
"net/http"
|
|
"os"
|
|
|
|
"git.algo.com.cn/public/saasapi"
|
|
"git.algo.com.cn/public/saasapi/pkg/saashttp"
|
|
"google.golang.org/protobuf/encoding/protojson"
|
|
)
|
|
|
|
type listExpParams struct {
|
|
saasHttp *saashttp.SaasClient
|
|
}
|
|
|
|
func RunExpList(args ...string) error {
|
|
fs := flag.NewFlagSet("list", flag.ExitOnError)
|
|
cfgFile := paramConfig(fs)
|
|
|
|
if err := fs.Parse(args); err != nil {
|
|
fmt.Fprintln(os.Stderr, "command line parse error", "err", err)
|
|
return err
|
|
}
|
|
|
|
if fs.NArg() > 0 {
|
|
fs.PrintDefaults()
|
|
return nil
|
|
}
|
|
|
|
cfg, err := LoadConfigFile(*cfgFile)
|
|
if err != nil {
|
|
fmt.Fprintln(os.Stderr, "LoadConfigFile error", "err", err)
|
|
return err
|
|
}
|
|
|
|
listExpParams := listExpParams{
|
|
saasHttp: &saashttp.SaasClient{
|
|
Client: &http.Client{},
|
|
ApiUrls: saashttp.InitAPIUrl(&cfg.ApiUrls),
|
|
Auth: &cfg.Auth,
|
|
},
|
|
}
|
|
return doExpList(listExpParams)
|
|
}
|
|
|
|
func doExpList(listExpParams listExpParams) error {
|
|
saasReq := &saasapi.SaasReq{
|
|
Cmd: &saasapi.SaasReq_ExpList{
|
|
ExpList: &saasapi.ExpList{},
|
|
},
|
|
}
|
|
|
|
res, err := listExpParams.saasHttp.ExpList(saasReq)
|
|
|
|
if err != nil {
|
|
fmt.Fprintln(os.Stderr, "submit ListExp error", "err", err)
|
|
return err
|
|
}
|
|
|
|
if res.Code != saasapi.ErrorCode_SUCC {
|
|
fmt.Fprintln(os.Stderr, "list exp failed", "code", res.Code, "status", res.Status)
|
|
return nil
|
|
}
|
|
|
|
listExpRes := res.GetExpListRes()
|
|
|
|
fmt.Printf("exp res: %v\n", protojson.Format(listExpRes))
|
|
return nil
|
|
}
|