-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
67 lines (56 loc) · 1.36 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
package main
import (
"encoding/json"
"os"
"github.com/o98k-ok/alfred-manager-flow/core"
"github.com/o98k-ok/lazy/v2/alfred"
)
func main() {
cli := alfred.NewApp("alfred workflows manager plugin")
cli.Bind("get", core.GetWorkflows)
cli.Bind("path", func(s []string) {
if len(s) <= 0 {
alfred.Deliver(alfred.EmptyItems().Encode())
return
}
var flow core.Flow
if err := json.Unmarshal([]byte(s[0]), &flow); err != nil {
alfred.Deliver(alfred.ErrItems("get path error", err).Encode())
return
}
alfred.Deliver(flow.Path)
})
cli.Bind("envs", func(s []string) {
if len(s) <= 0 {
alfred.Deliver(alfred.EmptyItems().Encode())
return
}
var flow core.Flow
if err := json.Unmarshal([]byte(s[0]), &flow); err != nil {
alfred.Deliver(alfred.ErrItems("get envs error", err).Encode())
return
}
var result alfred.Items
for k, v := range flow.Envs {
result.Append(alfred.NewItem(k, v, v))
}
alfred.Deliver(result.Encode())
})
cli.Bind("url", func(s []string) {
if len(s) <= 0 {
alfred.Deliver(alfred.EmptyItems().Encode())
return
}
var flow core.Flow
if err := json.Unmarshal([]byte(s[0]), &flow); err != nil {
alfred.Deliver(alfred.ErrItems("get envs error", err).Encode())
return
}
alfred.Deliver(flow.WebSite)
})
err := cli.Run(os.Args)
if err != nil {
alfred.ErrItems("run error", err)
return
}
}