-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathansible-server.plugin.zsh
363 lines (324 loc) · 11.1 KB
/
ansible-server.plugin.zsh
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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
# hosts/groups completion from https://github.com/zsh-users/zsh-completions/blob/master/src/_ansible-playbook
ANSIBLE_SERVER_PATH="${ANSIBLE_SERVER_PATH:-.}"
exclude_regexp="(_examples|_old|_disabled)"
__as_not_found_msg () {
echo 'Define $ANSIBLE_SERVER_PATH or use from ansible-server root'
}
__as_path () {
if [ -d "$ANSIBLE_SERVER_PATH/build" ]; then
echo "$ANSIBLE_SERVER_PATH/build"
else
echo "$ANSIBLE_SERVER_PATH"
fi
}
__as_ll_group_list () {
# parses the ini hostfile for groups only: [...]
HOST_FILE="$(__as_path)/hosts_all"
if [ ! -e "$HOST_FILE" ]; then
return
fi
local -a group_list
group_list=$(command \
cat ${HOST_FILE} \
| awk '$1 ~ /^\[.*\]$/ && !/=/ && !/:vars/ \
{ gsub(/[\[\]]/, "", $1); gsub(/:children/, "", $1) ; print $1 }' \
| uniq )
echo ${group_list}
}
__as_asite_tags_list () {
_values -s , apache,nginx,php apache cron dns letsencrypt nginx php ssh-keys sync sync_files sync_mysql
}
__as_aproject_tags_list () {
_values -s , config,deploy cron dns ssl nginx ssh-keys docker deploy config
}
__as_host_list ()
{
# parses the ini hostfile for hosts only
# but then has to remove all group occurrences
HOST_FILE="$(__as_path)/hosts_all"
if [ ! -e "$HOST_FILE" ]; then
return
fi
# this will also contain groups if they are referenced in other groups
local -a mixed_host_list
mixed_host_list=$(command \
cat ${HOST_FILE} \
| awk 'NF && $1 !~ /[\[:=]/ { print $1 }' \
| sort | uniq)
# compute set difference h1 - h2
local -a h1 h2 host_list
h1=${mixed_host_list}
h2=$(__as_ll_group_list)
host_list=($(command \
sort <(echo $h1) <(echo $h2) <(echo $h2) \
| uniq -u \
| paste -s -d ' ' - )
)
_wanted application expl 'hosts' _values -s , ${host_list}
}
__as_group_list ()
{
gl=($(command echo $(__as_ll_group_list) | paste -s -d ' ' - )) # 'a\nb\nc' -> (a b c)
_wanted application2 expl 'groups' _values -s , $gl
}
# completion of playbooks/hosts/*
_ansible_host_complete () {
_arguments -C \
"1:first_arg:->hosts" \
"--changed[only changed or ANSIBLE_STDOUT_CALLBACK=actionable]" \
"--check[dry-run]" \
case "$state" in
hosts)
local -a results
#_message -r "$(__as_not_found_msg)" # always show
local playbooks_path="$(__as_path)/playbooks/hosts"
if [ -d "$playbooks_path" ]; then
local playbooks_path_sed="$(echo "$playbooks_path/" | sed 's|\/|\\\/|g')"
results=( $(find "$playbooks_path/" -name '*.yml' | sed "s/$playbooks_path_sed//g" | sed 's/\.yml$//g' | sort) )
_values 'results' $results
else
_message -r "$(__as_not_found_msg)"
fi
;;
esac
}
_ansible_deploy_complete () {
_arguments -C \
"1:first_arg:->deploy" \
"--limit[limit selected hosts to hosts/groups]:subset pattern:->pattern" \
"--changed[only changed or ANSIBLE_STDOUT_CALLBACK=actionable]" \
"--check[dry-run]" \
case "$state" in
pattern)
_arguments '*:feature:__as_host_list'
_arguments '*:feature:__as_group_list'
;;
deploy)
local -a results
_message -r "$(__as_not_found_msg)"
local playbooks_path="$(__as_path)/playbooks/deploy"
if [ -d "$playbooks_path" ]; then
local playbooks_path_sed="$(echo "$playbooks_path/" | sed 's|\/|\\\/|g')"
results=( $(find "$playbooks_path" -name '*.yml' | sed "s/$playbooks_path_sed//g" | sed 's/\.yml$//g') )
_values 'results' $results
else
_message -r "$(__as_not_found_msg)"
fi
;;
esac
}
_ansible_role_complete () {
_arguments -C \
"1:first_arg:->roles" \
"--limit[limit selected hosts to hosts/groups]:subset pattern:->pattern" \
"--changed[only changed or ANSIBLE_STDOUT_CALLBACK=actionable]" \
"--check[dry-run]" \
"--fast[do not check tags]" \
case "$state" in
pattern)
_arguments '*:feature:__as_host_list'
_arguments '*:feature:__as_group_list'
;;
roles)
local -a results
local playbooks_path="$(__as_path)/playbooks/roles"
if [ -d "$playbooks_path" ]; then
local playbooks_path_sed="$(echo "$playbooks_path/" | sed 's|\/|\\\/|g')"
results=( $(find "$playbooks_path" -name '*.yml' | sed "s/$playbooks_path_sed//g" | sed 's/\.yml$//g') )
_values 'results' $results
else
_message -r "$(__as_not_found_msg)"
fi
;;
esac
}
_ansible_site_complete () {
_arguments -C \
"1:first_arg:->sites" \
"--tags[SUBSET tags to an additional pattern]:subset pattern:->pattern" \
"--changed[only changed or ANSIBLE_STDOUT_CALLBACK=actionable]" \
"--check[dry-run]" \
"--fast[do not check tags]" \
'--force[force files and mysql or --extra-vars="site_sync_files_force=yes site_sync_mysql_force=yes"]' \
'--force-files[force files or --extra-vars="site_sync_files_force=yes"]' \
'--force-mysql[force mysql or --extra-vars="site_sync_mysql_force=yes"]'
case "$state" in
pattern)
_arguments '*:feature:__as_asite_tags_list'
;;
sites)
local -a results
local playbooks_path="$(__as_path)/vars/sites/hosts"
# echo "playbooks_path: $playbooks_path"
if [ -d "$playbooks_path" ]; then
local playbooks_path_sed="$(echo "$playbooks_path/" | sed 's|\/|\\\/|g')"
results=( $(find "$playbooks_path" -name '*.yml' | sed "s/$playbooks_path_sed//g" | sed 's/\.yml$//g') )
_values 'results' $results
#_multi_parts -i / results # buggy
else
_message -r "$(__as_not_found_msg)"
fi
;;
esac
}
_ansible_env_complete () {
_arguments -C \
"1:first_arg:->env" \
case "$state" in
env)
local -a results
local config_path="${HOME}/.ansible-server.yml"
if [ -e "$config_path" ]; then
results=( $(cat "$config_path" | yq '.env[].name') )
_values 'results' $results
else
_message -r "$(__as_not_found_msg)"
fi
;;
esac
}
_ansible_list_complete () {
_arguments -C \
"1:first_arg:->list" \
case "$state" in
list)
local -a results
results=( host project site )
_values 'results' $results
;;
esac
}
_ansible_project_complete () {
_arguments -C \
"1:first_arg:->projects" \
"--tags[SUBSET tags to an additional pattern]:subset pattern:->pattern" \
"--changed[only changed or ANSIBLE_STDOUT_CALLBACK=actionable]" \
"--check[dry-run]" \
"--fast[do not check tags]" \
case "$state" in
pattern)
_arguments '*:feature:__as_aproject_tags_list'
;;
projects)
local -a results
local playbooks_path="$(__as_path)/vars/projects/hosts"
if [ -d "$playbooks_path" ]; then
local playbooks_path_sed="$(echo "$playbooks_path/" | sed 's|\/|\\\/|g')"
results=( $(find "$playbooks_path" -name '*.yml' | sed "s/$playbooks_path_sed//g" | sed 's/\.yml$//g') )
#_values 'results' $results
_multi_parts -i / results # buggy
else
_message -r "$(__as_not_found_msg)"
fi
;;
esac
}
_ansible_shell_complete () {
_arguments -C \
'(-): :->limit' \
case "$state" in
(limit)
_arguments '*:feature:__as_host_list'
_arguments '*:feature:__as_group_list'
;;
esac
}
_ansible_sites_foreach_complete () {
_arguments -C \
"1:first_arg:->groups"
case "$state" in
groups)
local -a results
local playbooks_path="$(__as_path)/vars/sites/hosts"
if [ -d "$playbooks_path" ]; then
local playbooks_path_sed="$(echo "$playbooks_path/" | sed 's|\/|\\\/|g')"
results=( $(find "$playbooks_path" -mindepth 1 -type d | grep -vE "$exclude_regexp" | sed "s/$playbooks_path_sed//g") )
_values 'results' $results
_values 'results' all
#_multi_parts -i / results # buggy
else
_message -r "$(__as_not_found_msg)"
fi
;;
esac
}
_ansible_projects_foreach_complete () {
_arguments -C \
"1:first_arg:->groups"
case "$state" in
groups)
local -a results
local playbooks_path="$(__as_path)/vars/projects/hosts"
if [ -d "$playbooks_path" ]; then
local playbooks_path_sed="$(echo "$playbooks_path/" | sed 's|\/|\\\/|g')"
results=( $(find "$playbooks_path" -mindepth 1 -type d | grep -vE "$exclude_regexp" | sed "s/$playbooks_path_sed//g") )
_values 'results' $results
_values 'results' all
#_multi_parts -i / results # buggy
else
_message -r "$(__as_not_found_msg)"
fi
;;
esac
}
_ansible_server_complete () {
_arguments -C \
'(-): :->command' \
'(-)*:: :->option-or-argument'
case "$state" in
(command)
_values 'results' role deploy host site project env link list
;;
(option-or-argument)
curcontext=${curcontext%:*:*}:ansible-server-$words[1]:
_ansible_server_subcommand
;;
esac
}
_ansible_server_subcommand () {
case "$words[1]" in
(role)
_ansible_role_complete
;;
(deploy)
_ansible_deploy_complete
;;
(host)
_ansible_host_complete
;;
(project)
_ansible_project_complete
;;
(site)
_ansible_site_complete
;;
(env)
_ansible_env_complete
;;
(list)
_ansible_list_complete
;;
esac
}
compdef _ansible_server_complete ansible-server
compdef _ansible_host_complete ansible-host
compdef _ansible_deploy_complete ansible-deploy
compdef _ansible_role_complete ansible-role
compdef _ansible_site_complete ansible-site
compdef _ansible_project_complete ansible-project
compdef _ansible_env_complete ansible-env
compdef _ansible_list_complete ansible-list
compdef _ansible_shell_complete ansible-shell
compdef _ansible_sites_foreach_complete sites-foreach
compdef _ansible_projects_foreach_complete projects-foreach
alias ahost='ansible-server host'
alias adeploy='ansible-server deploy'
alias arole='ansible-server role'
alias asite='ansible-server site'
alias aproject='ansible-server project'
alias aenv='ansible-server env'
alias alink='ansible-server link'
alias aforeach=sites-foreach
alias asites=sites-foreach
alias aprojects=projects-foreach
alias ashell=ansible-shell