-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathlazy-connect.sh
executable file
·212 lines (191 loc) · 5.62 KB
/
lazy-connect.sh
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
#!/bin/bash
TOTP_MODE=${LAZY_CONNECT_TOTP_GENERATOR:-oathtool}
_lazy_connect_config_dir=~/.config/lazy-connect
_lazy_connect_project_dir=~/.lazy-connect
function _lazy_connect_init() {
case $TOTP_MODE in
oathtool)
echo -n "Secret Key: "
read -s secret_key
echo "**********"
echo $secret_key >$_lazy_connect_config_dir/secret
;;
esac
_lazy_connect_vpn_refresh
}
function _lazy_connect_vpn_refresh() {
local backup_file=/tmp/lazy-connect-vpns-`date +%-H-%M-%S-%F`
[ -f $_lazy_connect_config_dir/vpns ] && cp $_lazy_connect_config_dir/vpns $backup_file
osascript <<EOF |
tell application "System Events"
tell process "SystemUIServer"
set vpnMenu to (menu bar item 1 of menu bar 1 where description is "VPN")
tell vpnMenu to click
set vpnMenuItems to (menu items of menu 1 of vpnMenu)
-- Loop till first missing value(that is fisrt menu item seperator) and accumulate VPN Names
set vpnNames to {}
repeat with vpnMenuItem in vpnMenuItems
set vpnName to name of vpnMenuItem
if vpnName is equal to missing value then
exit repeat
end if
set vpnNames to vpnNames & {vpnName}
end repeat
key code 53
get vpnNames
end tell
end tell
EOF
tr ',' '\n' | sed 's/^[[:space:]]//g' > $_lazy_connect_config_dir/vpns
if [ -f $backup_file ]; then
echo -e "\nDiff:\n$(diff -y $backup_file $_lazy_connect_config_dir/vpns)"
else
echo -e "\nVPN List:"
cat $_lazy_connect_config_dir/vpns | nl
fi
}
function _lazy_connect_usage() {
cat <<EOF
USAGE:
lazy-connect - Shell function to fuzzy search an IPSec VPN by name
and connect to it automatically.
-i - Initialize lazy-connect.
Stores the secret and VPN list to ~/.config/lazy-connect/
-u - Update lazy-connect
-r - Refresh vpn list in ~/.config/lazy-connect
-h - Show this help
-d - Disconnect a connected VPN
EOF
}
function _lazy_connect_get_totp() {
secret_key=$1
case $TOTP_MODE in
oathtool)
password=$(oathtool --totp --base32 $secret_key)
return 0
;;
yubikey)
if ! [ -x "$(command -v ykman)" ]; then
echo 'Error: ykman tool not installed.' >&2
exit 1
fi
if [ -z "$LAZY_CONNECT_TOTP_QUERY" ]; then
echo "Error: LAZY_CONNECT_TOTP_QUERY not set"
exit 1
else
password=$(ykman oath code $LAZY_CONNECT_TOTP_QUERY 2>/dev/null | awk '{print $2}')
fi
;;
esac
}
function _lazy_connect() {
vpn_name=$1
_lazy_connect_get_totp $2
if [ -z "$password" ]; then
case $TOTP_MODE in
oathtool)
echo "Error: Unable to generate otp using oathtool"
return 1
;;
yubikey)
echo "Error: No YubiKey found"
return 1
;;
esac
fi
result=$(osascript <<EOF
on connectVpn(vpnName, password)
tell application "System Events"
tell process "SystemUIServer"
set vpnMenu to (menu bar item 1 of menu bar 1 where description is "VPN")
tell vpnMenu to click
try
click menu item vpnName of menu 1 of vpnMenu
delay 1
keystroke password
keystroke return
return "true"
on error errorStr
if errorStr does not contain "Can’t get menu item" and errorStr does not contain vpnName then
display dialog errorStr
end if
end try
end tell
end tell
end connectVpn
connectVpn("$vpn_name", "$password")
EOF
)
[[ $result -eq "true" ]] && echo $vpn_name | sed 's/Connect/Disconnect/g' >> "$_lazy_connect_config_dir/connected_vpns"
}
function _lazy_disconnect() {
vpn_name=$1
osascript <<EOF
on disconnectVpn(vpnName)
tell application "System Events"
tell process "SystemUIServer"
set vpnMenu to (menu bar item 1 of menu bar 1 where description is "VPN")
tell vpnMenu to click
try
click menu item vpnName of menu 1 of vpnMenu
on error errorStr
if errorStr does not contain "Can’t get menu item" and errorStr does not contain vpnName then
display dialog errorStr
end if
end try
end tell
end tell
end disconnectVpn
disconnectVpn("$vpn_name")
EOF
sed "/Disconnect ${vpn_name}/d" $_lazy_connect_config_dir/connected_vpns | sort -u > $_lazy_connect_config_dir/connected_vpns
}
function _lazy_connect_update() {
git -C $_lazy_connect_project_dir pull origin master
echo -e "\n\nRun the below command or restart your shell."
echo "$ source $_lazy_connect_project_dir/lazy-connect.sh"
}
function lazy-connect() {
local OPTIND
mkdir -p $_lazy_connect_config_dir
while getopts "iruhd" opt; do
case $opt in
h)
_lazy_connect_usage
return 0
;;
i)
_lazy_connect_init
return 0
;;
r)
echo "Refreshing VPN list..."
_lazy_connect_vpn_refresh
return 0
;;
d)
vpn_name=$(cat $_lazy_connect_config_dir/connected_vpns | fzf --height=10 --ansi --reverse)
_lazy_disconnect "$vpn_name"
return 0
;;
u)
_lazy_connect_update
return 0
;;
\?)
echo "Invalid Option: -$OPTARG."
_lazy_connect_usage
return 1
;;
:)
echo "Option -$OPTARG requires an argument."
_lazy_connect_usage
return 1
;;
esac
done
secret=$(cat $_lazy_connect_config_dir/secret)
vpn_name=$(cat $_lazy_connect_config_dir/vpns \
| fzf --height=10 --ansi --reverse --query "$*" --select-1)
[ -z "$vpn_name" ] || _lazy_connect "$vpn_name" "$secret"
}