mirror of
https://github.com/XTLS/Xray-core.git
synced 2025-04-29 16:58:34 +00:00
Commands: Use creflect.MarshalToJson() as output (#3674)
This commit is contained in:
parent
498d8eb3cc
commit
f0547bc04d
2 changed files with 16 additions and 10 deletions
|
@ -13,10 +13,10 @@ import (
|
|||
"time"
|
||||
|
||||
"google.golang.org/grpc/credentials/insecure"
|
||||
"google.golang.org/protobuf/encoding/protojson"
|
||||
|
||||
"github.com/xtls/xray-core/common/buf"
|
||||
"github.com/xtls/xray-core/main/commands/base"
|
||||
creflect "github.com/xtls/xray-core/common/reflect"
|
||||
"google.golang.org/grpc"
|
||||
"google.golang.org/protobuf/proto"
|
||||
)
|
||||
|
@ -107,20 +107,16 @@ func fetchHTTPContent(target string) ([]byte, error) {
|
|||
return content, nil
|
||||
}
|
||||
|
||||
func protoToJSONString(m proto.Message, prefix, indent string) (string, error) {
|
||||
return strings.TrimSpace(protojson.MarshalOptions{Indent: indent}.Format(m)), nil
|
||||
}
|
||||
|
||||
func showJSONResponse(m proto.Message) {
|
||||
if isNil(m) {
|
||||
return
|
||||
}
|
||||
output, err := protoToJSONString(m, "", " ")
|
||||
if err != nil {
|
||||
if j, ok := creflect.MarshalToJson(m, true); ok {
|
||||
fmt.Println(j)
|
||||
} else {
|
||||
fmt.Fprintf(os.Stdout, "%v\n", m)
|
||||
base.Fatalf("error encode json: %s", err)
|
||||
base.Fatalf("error encode json")
|
||||
}
|
||||
fmt.Println(output)
|
||||
}
|
||||
|
||||
func isNil(i interface{}) bool {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue