-
Notifications
You must be signed in to change notification settings - Fork 128
/
tag.go
148 lines (125 loc) · 3.99 KB
/
tag.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
package cmd
import (
"fmt"
"io"
"os"
"github.com/mickael-menu/zk/internal/cli"
"github.com/mickael-menu/zk/internal/core"
"github.com/mickael-menu/zk/internal/util/errors"
"github.com/mickael-menu/zk/internal/util/strings"
)
// Tag manages the note tags in the notebook.
type Tag struct {
List TagList `cmd group:"cmd" default:"withargs" help:"List all the note tags."`
}
// TagList lists all the note tags.
type TagList struct {
Format string `group:format short:f placeholder:TEMPLATE help:"Pretty print the list using a custom template or one of the predefined formats: name, full, json, jsonl."`
Header string `group:format help:"Arbitrary text printed at the start of the list."`
Footer string `group:format default:\n help:"Arbitrary text printed at the end of the list."`
Delimiter string "group:format short:d default:\n help:\"Print tags delimited by the given separator.\""
Delimiter0 bool "group:format short:0 name:delimiter0 help:\"Print tags delimited by ASCII NUL characters. This is useful when used in conjunction with `xargs -0`.\""
NoPager bool `group:format short:P help:"Do not pipe output into a pager."`
Quiet bool `group:format short:q help:"Do not print the total number of tags found."`
Sort []string `group:sort short:s placeholder:TERM help:"Order the tags by the given criterion."`
}
func (cmd *TagList) Run(container *cli.Container) error {
cmd.Header = strings.ExpandWhitespaceLiterals(cmd.Header)
cmd.Footer = strings.ExpandWhitespaceLiterals(cmd.Footer)
cmd.Delimiter = strings.ExpandWhitespaceLiterals(cmd.Delimiter)
if cmd.Delimiter0 {
if cmd.Delimiter != "\n" {
return errors.New("--delimiter and --delimiter0 can't be used together")
}
if cmd.Header != "" {
return errors.New("--footer and --delimiter0 can't be used together")
}
if cmd.Footer != "\n" {
return errors.New("--footer and --delimiter0 can't be used together")
}
cmd.Delimiter = "\x00"
cmd.Footer = "\x00"
}
if cmd.Format == "json" || cmd.Format == "jsonl" {
if cmd.Header != "" {
return errors.New("--header can't be used with JSON format")
}
if cmd.Footer != "\n" {
return errors.New("--footer can't be used with JSON format")
}
if cmd.Delimiter != "\n" {
return errors.New("--delimiter can't be used with JSON format")
}
switch cmd.Format {
case "json":
cmd.Delimiter = ","
cmd.Header = "["
cmd.Footer = "]\n"
case "jsonl":
// > The last character in the file may be a line separator, and it
// > will be treated the same as if there was no line separator
// > present.
// > https://jsonlines.org/
cmd.Footer = "\n"
}
}
notebook, err := container.CurrentNotebook()
if err != nil {
return err
}
format, err := notebook.NewCollectionFormatter(cmd.tagTemplate())
if err != nil {
return err
}
sorters, err := core.CollectionSortersFromStrings(cmd.Sort)
if err != nil {
return err
}
tags, err := notebook.FindCollections(core.CollectionKindTag, sorters)
if err != nil {
return err
}
count := len(tags)
if count > 0 {
err = container.Paginate(cmd.NoPager, func(out io.Writer) error {
if cmd.Header != "" {
fmt.Fprint(out, cmd.Header)
}
for i, tag := range tags {
if i > 0 {
fmt.Fprint(out, cmd.Delimiter)
}
ft, err := format(tag)
if err != nil {
return err
}
fmt.Fprint(out, ft)
}
if cmd.Footer != "" {
fmt.Fprint(out, cmd.Footer)
}
return nil
})
}
if err == nil && !cmd.Quiet {
fmt.Fprintf(os.Stderr, "\nFound %d %s\n", count, strings.Pluralize("tag", count))
}
return err
}
func (cmd *TagList) tagTemplate() string {
format := cmd.Format
if format == "" {
format = "full"
}
templ, ok := defaultTagFormats[format]
if !ok {
templ = strings.ExpandWhitespaceLiterals(format)
}
return templ
}
var defaultTagFormats = map[string]string{
"json": `{{json .}}`,
"jsonl": `{{json .}}`,
"name": `{{name}}`,
"full": `{{name}} ({{note-count}})`,
}