-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdispak_completion.bash
55 lines (53 loc) · 1.58 KB
/
dispak_completion.bash
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
#!/usr/bin/env bash
# Bash completion script.
#
# @copyright © 2018, Amaury Bouchard
# @link https://debian-administration.org/article/316/An_introduction_to_bash_completion_part_1
_dpk() {
# fetch parameters
local CUR PREV PREV2 OPTS
CUR="${COMP_WORDS[COMP_CWORD]}"
PREV="${COMP_WORDS[COMP_CWORD-1]}"
PREV2="${COMP_WORDS[COMP_CWORD-2]}"
# config
_ACTIONS="help branch tags pkg install config"
declare -A _ACTIONS_OPT
_ACTIONS_OPT["help"]="branch tags pkg install config"
_ACTIONS_OPT["branch"]="--list --create --remove --merge --backport --tag="
_ACTIONS_OPT["tags"]="--all"
_ACTIONS_OPT["pkg"]="--tag="
_ACTIONS_OPT["install"]="--platform=dev --platform=test --platform=prod --tag=main --tag= --no-apache --no-crontab --no-xinetd --no-db-migration"
_ACTIONS_OPT["config"]="--platform=dev --platform=test --platform=prod --tag=main --tag="
COMPREPLY=()
if [ "$COMP_CWORD" = "1" ]; then
OPTS="$_ACTIONS"
elif [ "$CUR" = "--platform" ]; then
OPTS="--platform=dev --platform=test --platform=prod"
elif [ "$CUR" = "--tag" ]; then
OPTS="--tag="
elif [ "$CUR" = "=" ]; then
CUR=""
if [ "$PREV" = "--platform" ]; then
OPTS="dev test prod"
elif [ "$PREV" = "--tag" ]; then
OPTS="main"
fi
elif [ "$PREV" = "=" ]; then
if [ "$PREV2" = "--platform" ]; then
OPTS="dev test prod"
elif [ "$PREV2" = "--tag" ]; then
OPTS="main"
fi
else
ACTION="${COMP_WORDS[1]}"
for _ACT in $_ACTIONS; do
if [ "$_ACT" = "$ACTION" ]; then
OPTS="${_ACTIONS_OPT["$ACTION"]}"
break
fi
done
fi
COMPREPLY=( $(compgen -W "${OPTS}" -- ${CUR}) )
return 0
}
complete -F _dpk dpk