Skip to content
This repository was archived by the owner on May 12, 2021. It is now read-only.

Commit dddd74d

Browse files
committed
Pretty print schema if JSON object; close #3
1 parent 7424901 commit dddd74d

File tree

1 file changed

+16
-6
lines changed

1 file changed

+16
-6
lines changed

schema-registry-cli/cmd/helpers.go

+16-6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ package cmd
22

33
import (
44
"bufio"
5+
"bytes"
6+
"encoding/json"
57
"fmt"
68
"io/ioutil"
79
"log"
@@ -19,6 +21,18 @@ func stdinToString() string {
1921
return string(bs)
2022
}
2123

24+
func printSchema(sch schemaregistry.Schema) {
25+
log.Printf("version: %d\n", sch.Version)
26+
log.Printf("id: %d\n", sch.Id)
27+
var indented bytes.Buffer
28+
if err := json.Indent(&indented, []byte(sch.Schema), "", " "); err != nil {
29+
fmt.Println(sch.Schema) //isn't a json object, which is legal
30+
return
31+
}
32+
indented.WriteTo(os.Stdout)
33+
os.Stdout.WriteString("\n")
34+
}
35+
2236
func getById(id int) error {
2337
cl := assertClient()
2438
sch, err := cl.GetSchemaById(id)
@@ -35,9 +49,7 @@ func getLatestBySubject(subj string) error {
3549
if err != nil {
3650
return err
3751
}
38-
log.Printf("version: %d\n", sch.Version)
39-
log.Printf("id: %d\n", sch.Id)
40-
fmt.Println(sch.Schema)
52+
printSchema(sch)
4153
return nil
4254
}
4355

@@ -47,9 +59,7 @@ func getBySubjectVersion(subj string, ver int) error {
4759
if err != nil {
4860
return err
4961
}
50-
log.Printf("version: %d\n", sch.Version)
51-
log.Printf("id: %d\n", sch.Id)
52-
fmt.Println(sch.Schema)
62+
printSchema(sch)
5363
return nil
5464
}
5565

0 commit comments

Comments
 (0)