Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

lib: improve help information for api parameters #909

Merged
merged 1 commit into from
Dec 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions cli/color.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,23 +121,23 @@ func APIListColor() string {
return apiListColor
}

func colorized(color string, a ...interface{}) string {
func Colorized(color string, a ...interface{}) string {
if withColor && color != "" {
return color + fmt.Sprint(a...) + ColorOff
}
return fmt.Sprint(a...)
}

func PrintWithColor(w io.Writer, color string, a ...interface{}) (n int, err error) {
return Print(w, colorized(color, a...))
return Print(w, Colorized(color, a...))
}

func Notice(w io.Writer, a ...interface{}) (n int, err error) {
return Print(w, colorized(NoticeColor, a...))
return Print(w, Colorized(NoticeColor, a...))
}

func Error(w io.Writer, a ...interface{}) (n int, err error) {
return Print(w, colorized(ErrorColor, a...))
return Print(w, Colorized(ErrorColor, a...))
}

func Noticef(w io.Writer, format string, args ...interface{}) (n int, err error) {
Expand Down
4 changes: 2 additions & 2 deletions cli/color_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ func TestColor(t *testing.T) {
assert.Empty(t, ProductListColor())
assert.Empty(t, APIListColor())

assert.Equal(t, "a", colorized("", "a"))
assert.Equal(t, "a", Colorized("", "a"))
EnableColor()
assert.Equal(t, "reda\033[0m", colorized("red", "a"))
assert.Equal(t, "reda\033[0m", Colorized("red", "a"))
}

func TestCotainWriter(t *testing.T) {
Expand Down
56 changes: 56 additions & 0 deletions newmeta/meta.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,40 @@ type API struct {
Deprecated bool `json:"deprecated"`
}

// {
// "name": "AddEntriesToAcl",
// "deprecated": false,
// "protocol": "HTTP|HTTPS",
// "method": "GET|POST",
// "pathPattern": "",
// "parameters": [
// {
// "name": "AclEntries",
// "description": "The IP entries that you want to add. You can add up to 20 IP entries in each call.",
// "position": "Query",
// "type": "Array",
// "required": true
// }
// ]
// }

type APIDetail struct {
Name string `json:"name"`
Deprecated bool `json:"deprecated"`
Protocol string `json:"protocol"`
Method string `json:"method"`
PathPattern string `json:"pathPattern"`
Parameters []RequestParameter `json:"parameters"`
}

type RequestParameter struct {
Name string `json:"name"`
Description string `json:"description"`
Position string `json:"position"`
Type string `json:"type"`
Required bool `json:"required"`
}

func GetProductName(language, code string) (name string, err error) {
content, err := GetMetadata(language, "/products.json")
if err != nil {
Expand All @@ -81,6 +115,9 @@ func GetProductName(language, code string) (name string, err error) {

products := new(ProductSet)
err = json.Unmarshal(content, &products)
if err != nil {
return
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

这里不需要【return nil, err】吗

}

for _, p := range products.Products {
if strings.EqualFold(p.Code, code) {
Expand All @@ -100,6 +137,9 @@ func GetAPI(language, code, name string) (api *API, err error) {

version := new(Version)
err = json.Unmarshal(content, &version)
if err != nil {
return
}

if found, ok := version.APIs[name]; ok {
api = &found
Expand All @@ -108,6 +148,22 @@ func GetAPI(language, code, name string) (api *API, err error) {
return
}

func GetAPIDetail(language, code, name string) (api *APIDetail, err error) {
content, err := GetMetadata(language, "/"+strings.ToLower(code)+"/"+name+".json")
if err != nil {
return
}

detail := new(APIDetail)
err = json.Unmarshal(content, &detail)
if err != nil {
return
}

api = detail
return
}

func GetMetadataPrefix(language string) string {
if language == "en" {
return "en-US"
Expand Down
8 changes: 8 additions & 0 deletions newmeta/meta_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,11 @@ func TestGetAPI(t *testing.T) {
assert.Nil(t, err)
assert.Nil(t, api2)
}

func TestGetAPIDetail(t *testing.T) {
api, err := GetAPIDetail("en", "ecs", "DescribeRegions")
assert.Nil(t, err)
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

这里的err一直为nil

assert.Equal(t, "DescribeRegions", api.Name)
assert.Equal(t, "GET|POST", api.Method)
assert.Equal(t, false, api.Deprecated)
}
47 changes: 30 additions & 17 deletions openapi/library.go
Original file line number Diff line number Diff line change
Expand Up @@ -135,24 +135,27 @@ func (a *Library) PrintApiUsage(productCode string, apiName string) error {
return &InvalidApiError{Name: apiName, product: &product}
}

productName, _ := newmeta.GetProductName(i18n.GetLanguage(), productCode)

if product.ApiStyle == "restful" {
cli.Printf(a.writer, "\nProduct: %s (%s)\n", product.Code, product.Name[i18n.GetLanguage()])
cli.Printf(a.writer, "\nProduct: %s (%s)\n", product.Code, productName)
cli.Printf(a.writer, "Method: %s\n", api.Method)
cli.Printf(a.writer, "PathPattern: %s\n", api.PathPattern)
} else {
cli.Printf(a.writer, "\nProduct: %s (%s)\n", product.Code, product.Name[i18n.GetLanguage()])
cli.Printf(a.writer, "\nProduct: %s (%s)\n", product.Code, productName)
}

cli.Printf(a.writer, "\nParameters:\n")

w := tabwriter.NewWriter(a.writer, 8, 0, 1, ' ', 0)
printParameters(w, api.Parameters, "")
detail, _ := newmeta.GetAPIDetail(i18n.GetLanguage(), productCode, apiName)
printParameters(w, api.Parameters, "", detail)
w.Flush()

return nil
}

func printParameters(w io.Writer, params []meta.Parameter, prefix string) {
func printParameters(w io.Writer, params []meta.Parameter, prefix string, detail *newmeta.APIDetail) {

sort.Sort(meta.ParameterSlice(params))

Expand All @@ -171,16 +174,26 @@ func printParameters(w io.Writer, params []meta.Parameter, prefix string) {

if param.Type == "RepeatList" {
if len(param.SubParameters) > 0 {
printParameters(w, param.SubParameters, prefix+param.Name+".n.")
printParameters(w, param.SubParameters, prefix+param.Name+".n.", detail)
} else {
fmt.Fprintf(w, " --%s%s.n\t%s\t%s\t%s\n", prefix, param.Name, param.Type, required(param.Required), getDescription(param.Description))
fmt.Fprintf(w, " --%s%s.n\t%s\t%s\n\n", cli.Colorized(cli.BBlack, prefix), cli.Colorized(cli.BBlack, param.Name), param.Type, required(param.Required))
displayDescription(w, getDescription(detail, param.Name))
}
} else {
fmt.Fprintf(w, " --%s%s\t%s\t%s\t%s\n", prefix, param.Name, param.Type, required(param.Required), getDescription(param.Description))
fmt.Fprintf(w, " --%s%s\t%s\t%s\n\n", cli.Colorized(cli.BBlack, prefix), cli.Colorized(cli.BBlack, param.Name), param.Type, required(param.Required))
displayDescription(w, getDescription(detail, param.Name))
}
}
}

func displayDescription(w io.Writer, desc string) {
lines := strings.Split(desc, "\n")
for _, v := range lines {
fmt.Fprintf(w, " %s\n", v)
}
fmt.Fprintf(w, "\n")
}

func required(r bool) string {
if r {
return "Required"
Expand All @@ -189,15 +202,15 @@ func required(r bool) string {
}
}

func getDescription(d map[string]string) string {
func getDescription(detail *newmeta.APIDetail, name string) string {
if detail == nil {
return ""
}
for _, p := range detail.Parameters {
if name == p.Name {
return strings.TrimSpace(p.Description)
}
}

return ""
// TODO: description too long, need optimize for display
//if d == nil {
// return ""
//}
//if v, ok := d[i18n.GetLanguage()]; ok {
// return v
//} else {
// return ""
//}
}
3 changes: 2 additions & 1 deletion openapi/library_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ package openapi

import (
"github.com/aliyun/aliyun-cli/meta"
"github.com/aliyun/aliyun-cli/newmeta"
"github.com/stretchr/testify/assert"

"bytes"
Expand Down Expand Up @@ -97,7 +98,7 @@ func Test_printParameters(t *testing.T) {
},
},
}
printParameters(w, params, "")
printParameters(w, params, "", &newmeta.APIDetail{})
}

func getRepository(content string) *meta.Repository {
Expand Down
Loading