-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
cmd_list.go
126 lines (121 loc) · 2.53 KB
/
cmd_list.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
package main
import (
"bytes"
"context"
"encoding/json"
"fmt"
"io"
"net/http"
"github.com/urfave/cli/v2"
)
func init() {
command := &cli.Command{
Name: "list",
Aliases: []string{"ls"},
Usage: "Show papers",
Action: func(c *cli.Context) error {
dboxpaper := app.Metadata["dboxpaper"].(*DboxPaper)
docIds, err := listDocs(c)
if c.Bool("title") {
for _, item := range docIds {
var in, out bytes.Buffer
err = json.NewEncoder(&in).Encode(map[string]interface{}{"doc_id": item})
if err != nil {
return err
}
err = dboxpaper.doAPI(
context.Background(),
http.MethodPost,
"/2/paper/docs/get_metadata",
&request{
ct: "application/json",
in: &in,
out: &out,
})
if err != nil {
continue
}
var docmeta DocsMeta
err = json.NewDecoder(&out).Decode(&docmeta)
if err != nil {
return err
}
fmt.Fprintf(c.App.Writer, "%s %s\n", docmeta.DocID, docmeta.Title)
}
} else if c.Bool("json") {
fmt.Fprint(c.App.Writer, "[")
n := 0
for _, item := range docIds {
var in, out bytes.Buffer
err = json.NewEncoder(&in).Encode(map[string]interface{}{"doc_id": item})
if err != nil {
return err
}
if dboxpaper.doAPI(
context.Background(),
http.MethodPost,
"/2/paper/docs/get_metadata",
&request{
ct: "application/json",
in: &in,
out: &out,
}) != nil {
continue
}
if n > 0 {
fmt.Fprint(c.App.Writer, ",")
}
n++
io.Copy(c.App.Writer, &out)
}
fmt.Fprint(c.App.Writer, "]")
} else {
for _, item := range docIds {
fmt.Fprintln(c.App.Writer, item)
}
return nil
}
return nil
},
}
command.Flags = []cli.Flag{
&cli.BoolFlag{
Name: "title",
Usage: "show title",
},
&cli.BoolFlag{
Name: "json",
Usage: "show as JSON",
},
}
app.Commands = append(app.Commands, command)
}
func listDocs(c *cli.Context) ([]string, error) {
dboxpaper := app.Metadata["dboxpaper"].(*DboxPaper)
var buf bytes.Buffer
err := dboxpaper.doAPI(
context.Background(),
http.MethodPost,
"/2/paper/docs/list",
&request{
out: &buf,
})
if err != nil {
return nil, err
}
var docslist DocsList
err = json.NewDecoder(&buf).Decode(&docslist)
if err != nil {
return nil, err
}
return docslist.DocIds, nil
}
func docIDCompletion(c *cli.Context) {
docIds, err := listDocs(c)
if err != nil {
return
}
for _, item := range docIds {
fmt.Fprintln(c.App.Writer, item)
}
}