-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
106 lines (88 loc) · 2.5 KB
/
main.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
package main
import (
"context"
"encoding/json"
"fmt"
"github.com/Crocmagnon/paperless-alfred-go/internal/alfred"
"github.com/Crocmagnon/paperless-alfred-go/internal/paperless"
"golang.org/x/text/unicode/norm"
"io"
"net/http"
"net/url"
"os"
"strings"
)
func main() {
ctx := context.Background()
if err := run(ctx, os.Args[1:], os.Stdout, http.DefaultClient); err != nil {
_, _ = fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
}
func run(ctx context.Context, args []string, stdout io.Writer, httpClient *http.Client) error {
if len(args) != 3 {
return fmt.Errorf("usage: ppl-go <base_url> <token> '<query>'")
}
baseURL := norm.NFC.String(args[0])
token := norm.NFC.String(args[1])
query := norm.NFC.String(args[2])
if len(query) == 0 {
return fmt.Errorf("no query specified")
}
res, err := paperless.Search(ctx, httpClient, baseURL, token, query)
if err != nil {
return err
}
correspondents, err := paperless.GetCorrespondents(ctx, httpClient, baseURL, token)
if err != nil {
return err
}
docTypes, err := paperless.GetDocTypes(ctx, httpClient, baseURL, token)
if err != nil {
return err
}
alfredItems := paperlessToAlfred(res, baseURL, query, correspondents, docTypes)
out, err := json.Marshal(alfred.Result{Items: alfredItems})
if err != nil {
return fmt.Errorf("marshalling alfred results: %w", err)
}
_, _ = fmt.Fprintln(stdout, string(out))
return nil
}
func paperlessToAlfred(
results []paperless.DocumentSearch,
baseURL, query string,
correspondents map[int]paperless.Correspondent,
docTypes map[int]paperless.DocumentType,
) []alfred.Item {
var items []alfred.Item
encodedQuery := url.Values{"query": []string{query}}.Encode()
if len(results) == 0 {
items = append(items, alfred.Item{
UID: "paperless:open-search",
Title: "Open search in Paperless",
Arg: fmt.Sprintf("%s/documents?%s", baseURL, encodedQuery),
Subtitle: fmt.Sprintf("Search for %q in Paperless", query),
})
return items
}
for _, result := range results {
items = append(items, alfred.Item{
UID: result.DetailsURL(baseURL),
Title: result.Title,
Subtitle: strings.Join(result.Metadata(correspondents, docTypes), " - "),
Arg: result.DetailsURL(baseURL),
Icon: &alfred.Icon{
Type: "filetype",
Path: "com.adobe.pdf",
},
Mods: map[string]alfred.Mod{
"cmd": {
Arg: fmt.Sprintf("%s/documents?%s", baseURL, encodedQuery),
Subtitle: fmt.Sprintf("Open search for %q in Paperless", query),
},
},
})
}
return items
}