-
Notifications
You must be signed in to change notification settings - Fork 46
/
magic.go
261 lines (205 loc) · 8.13 KB
/
magic.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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
// Copyright (c) 2018 Dean Jackson <[email protected]>
// MIT Licence - http://opensource.org/licenses/MIT
package aw
import (
"fmt"
"log"
"strings"
)
/*
MagicAction is a command that is called directly by AwGo (i.e. your workflow
code is not run) if its keyword is passed in a user query.
To use Magic Actions, it's imperative that your workflow call Workflow.Args().
Calls to Workflow.Args() check the workflow's arguments (os.Args[1:])
for the magic prefix ("workflow:" by default), and hijack control of the
workflow if found.
If an exact keyword match is found (e.g. "workflow:log"), the corresponding
action is executed, and the workflow exits.
If no exact match is found, AwGo runs a Script Filter for the user to
select an action. Hitting TAB or RETURN on an item will run it.
Magic Actions are mainly aimed at making debugging and supporting users easier
(via the built-in actions), but they also provide a simple way to integrate
your own commands that don't need a "real" UI.
For example, setting an Updater on Workflow adds an "update" command that
checks for & installs a new version of the workflow.
Defaults
There are several built-in magic actions, which are registered by
default:
<prefix>log Open workflow's log file in the default app (usually
Console).
<prefix>data Open workflow's data directory in the default app
(usually Finder).
<prefix>cache Open workflow's data directory in the default app
(usually Finder).
<prefix>deldata Delete everything in the workflow's data directory.
<prefix>delcache Delete everything in the workflow's cache directory.
<prefix>reset Delete everything in the workflow's data and cache directories.
<prefix>help Open help URL in default browser.
Only registered if you have set a HelpURL.
<prefix>update Check for updates and install a newer version of the
workflow if available.
Only registered if you have configured an Updater.
Custom Actions
To add custom magicActions, you must register them with your Workflow
*before* you call Workflow.Args()
To do this, configure Workflow with the AddMagic option.
*/
type MagicAction interface {
// Keyword is what the user must enter to run the action after
// AwGo has recognised the magic prefix. So if the prefix is
// "workflow:" (the default), a user must enter the query
// "workflow:<keyword>" to execute this action.
Keyword() string
// Description is shown when a user has entered "magic" mode, but
// the query does not yet match a keyword.
Description() string
// RunText is sent to Alfred and written to the log file &
// debugger when the action is run.
RunText() string
// Run is called when the Magic Action is triggered.
Run() error
}
// magicActions contains the registered magic actions. See the MagicAction
// interface for full documentation.
type magicActions struct {
actions map[string]MagicAction
wf *Workflow
}
// register adds a MagicAction to the mapping. Previous entries are overwritten.
func (ma *magicActions) register(actions ...MagicAction) {
for _, action := range actions {
ma.actions[action.Keyword()] = action
}
}
// unregister removes a MagicAction from the mapping (based on its keyword).
func (ma *magicActions) unregister(actions ...MagicAction) {
for _, action := range actions {
delete(ma.actions, action.Keyword())
}
}
// args runs a magic action or returns command-line arguments.
// It parses args for magic actions. If it finds one, it takes
// control of your workflow and runs the action. Control is
// not returned to your code.
//
// If no magic actions are found, it returns args.
func (ma *magicActions) args(args []string, prefix string) []string {
args, handled := ma.handleArgs(args, prefix)
if handled {
finishLog(false)
exitFunc(0)
}
return args
}
// handleArgs checks args for the magic prefix. Returns args and true if
// it found and handled a magic argument.
func (ma *magicActions) handleArgs(args []string, prefix string) ([]string, bool) {
var handled bool
for _, arg := range args {
arg = strings.TrimSpace(arg)
if strings.HasPrefix(arg, prefix) {
query := arg[len(prefix):]
action := ma.actions[query]
if action != nil {
log.Print(action.RunText())
ma.wf.NewItem(action.RunText()).
Icon(IconInfo).
Valid(false)
ma.wf.SendFeedback()
if err := action.Run(); err != nil {
log.Printf("Error running magic arg `%s`: %s", action.Description(), err)
finishLog(true)
}
handled = true
} else {
for kw, action := range ma.actions {
ma.wf.NewItem(action.Keyword()).
Subtitle(action.Description()).
Valid(false).
Icon(IconInfo).
UID(action.Description()).
Autocomplete(prefix + kw).
Match(fmt.Sprintf("%s %s", action.Keyword(), action.Description()))
}
ma.wf.Filter(query)
ma.wf.WarnEmpty("No matching action", "Try another query?")
ma.wf.SendFeedback()
handled = true
}
}
}
return args, handled
}
// Opens workflow's log file.
type logMA struct {
wf *Workflow
}
func (a logMA) Keyword() string { return "log" }
func (a logMA) Description() string { return "Open workflow's log file" }
func (a logMA) RunText() string { return "Opening log file…" }
func (a logMA) Run() error { return a.wf.OpenLog() }
// Opens workflow's data directory.
type dataMA struct {
wf *Workflow
}
func (a dataMA) Keyword() string { return "data" }
func (a dataMA) Description() string { return "Open workflow's data directory" }
func (a dataMA) RunText() string { return "Opening data directory…" }
func (a dataMA) Run() error { return a.wf.OpenData() }
// Opens workflow's cache directory.
type cacheMA struct {
wf *Workflow
}
func (a cacheMA) Keyword() string { return "cache" }
func (a cacheMA) Description() string { return "Open workflow's cache directory" }
func (a cacheMA) RunText() string { return "Opening cache directory…" }
func (a cacheMA) Run() error { return a.wf.OpenCache() }
// Deletes the contents of the workflow's cache directory.
type clearCacheMA struct {
wf *Workflow
}
func (a clearCacheMA) Keyword() string { return "delcache" }
func (a clearCacheMA) Description() string { return "Delete workflow's cached data" }
func (a clearCacheMA) RunText() string { return "Deleted workflow's cached data" }
func (a clearCacheMA) Run() error { return a.wf.ClearCache() }
// Deletes the contents of the workflow's data directory.
type clearDataMA struct {
wf *Workflow
}
func (a clearDataMA) Keyword() string { return "deldata" }
func (a clearDataMA) Description() string { return "Delete workflow's saved data" }
func (a clearDataMA) RunText() string { return "Deleted workflow's saved data" }
func (a clearDataMA) Run() error { return a.wf.ClearData() }
// Deletes the contents of the workflow's cache & data directories.
type resetMA struct {
wf *Workflow
}
func (a resetMA) Keyword() string { return "reset" }
func (a resetMA) Description() string { return "Delete all saved and cached workflow data" }
func (a resetMA) RunText() string { return "Deleted workflow saved and cached data" }
func (a resetMA) Run() error { return a.wf.Reset() }
// Opens URL in default browser.
type helpMA struct {
wf *Workflow
}
func (a helpMA) Keyword() string { return "help" }
func (a helpMA) Description() string { return "Open workflow help URL in default browser" }
func (a helpMA) RunText() string { return "Opening help in your browser…" }
func (a helpMA) Run() error { return a.wf.OpenHelp() }
// Updates the workflow if a newer release is available.
type updateMA struct {
updater Updater
}
func (a updateMA) Keyword() string { return "update" }
func (a updateMA) Description() string { return "Check for updates, and install if one is available" }
func (a updateMA) RunText() string { return "Fetching update…" }
func (a updateMA) Run() error {
if err := a.updater.CheckForUpdate(); err != nil {
return err
}
if a.updater.UpdateAvailable() {
return a.updater.Install()
}
log.Println("No update available")
return nil
}