forked from DataDog/yubikey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
env.sh
274 lines (258 loc) · 6.79 KB
/
env.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
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
#!/usr/bin/env bash
function which_flavour {
if [[ -f /etc/os-release ]]; then
detected="$(grep '^ID=' /etc/os-release | cut -d= -f2)"
fi
echo "$detected"
}
case "$OSTYPE" in
darwin*)
OS='macos'
;;
linux*)
OS=$(which_flavour)
;;
*)
OS="not detected"
;;
esac
echo "OS detected is $OS"
case $(echo "$OS" | tr "[:upper:]" "[:lower:]") in
macos)
PKG_MANAGER="brew"
PKG_MANAGER_ENV=""
PKG_MANAGER_INSTALL="install"
PKG_MANAGER_UPDATE="update"
PKG_MANAGER_UPGRADE="upgrade"
PKG_CHECK="brew"
PKG_CHECK_ARGS="list"
HOMEBREW_PREFIX=$(brew --prefix)
HOMEBREW_BIN=$HOMEBREW_PREFIX/bin
USER_BIN_DIR=${HOME}/.local/bin
GIT=$HOMEBREW_BIN/git
GPG=$HOMEBREW_BIN/gpg
GPG_AGENT=$HOMEBREW_BIN/gpg-agent
GPGCONF=$HOMEBREW_BIN/gpgconf
YKMAN=$HOMEBREW_BIN/ykman
CLIP="pbcopy"
CLIP_ARGS=""
PINENTRY_SETUP="${HOMEBREW_BIN}/pinentry-tty"
PINENTRY="${HOMEBREW_BIN}/pinentry-mac"
OPEN="open"
DEPS=(
"expect"
"git"
"gpg"
"pinentry-mac"
"ykman"
)
set +e
read -r -d '' NOTIFICATION_NOTIFY << EOF
osascript -e 'display notification "'"\$body"'" with title "'"\$title"'"'
EOF
set -e
NOTIFICATION_SCRIPT_PATH="${USER_BIN_DIR}/yubinotif"
SCDAEMON_CONF="disable-ccid\nreader-port \"$(pcsctest <<< 01 | grep 'Reader 01' | awk -F ': ' '{print $2}' | head -n1)\""
export HOMEBREW_NO_AUTO_UPDATE=1
;;
ubuntu|debian)
PKG_MANAGER="apt"
PKG_MANAGER_ENV="sudo"
PKG_MANAGER_INSTALL="install"
PKG_MANAGER_UPDATE="update"
PKG_MANAGER_UPGRADE="install"
PKG_CHECK="apt"
PKG_CHECK_ARGS="show"
BIN_PATH="/usr/bin"
USER_BIN_DIR=${HOME}/.local/bin
GIT="${BIN_PATH}/git"
GPG="${BIN_PATH}/gpg"
GPG_AGENT="${BIN_PATH}/gpg-agent"
GPGCONF="${BIN_PATH}/gpgconf"
YKMAN="${BIN_PATH}/ykman"
CLIP="${BIN_PATH}/xclip"
CLIP_ARGS="-selection clipboard -i"
PINENTRY_SETUP="/usr/bin/pinentry-tty"
PINENTRY="/usr/bin/pinentry-gnome3"
OPEN="xdg-open"
DEPS=(
"expect"
"git"
"gpg"
"pinentry-tty"
"python3"
"scdaemon"
"yubikey-manager"
"xclip"
)
set +e
read -r -d '' NOTIFICATION_NOTIFY << EOF
notify-send "\$title" "\$body"
EOF
set -e
NOTIFICATION_SCRIPT_PATH="${USER_BIN_DIR}/yubinotif"
SCDAEMON_CONF=""
if ! grep -rqE '^deb http://ppa.launchpad.net/yubico/stable/ubuntu' /etc/apt/sources.list.d/*.list; then
sudo apt-add-repository ppa:yubico/stable
fi
;;
arch)
PKG_MANAGER="pacman"
PKG_MANAGER_ENV="sudo"
PKG_MANAGER_INSTALL="-S"
PKG_MANAGER_UPDATE="-Sy"
PKG_MANAGER_UPGRADE="-S"
PKG_CHECK="pacman"
PKG_CHECK_ARGS="-Qi"
BIN_PATH="/usr/bin"
USER_BIN_DIR=${HOME}/.local/bin
GIT="${BIN_PATH}/git"
GPG="${BIN_PATH}/gpg"
GPG_AGENT="${BIN_PATH}/gpg-agent"
GPGCONF="${BIN_PATH}/gpgconf"
YKMAN="${BIN_PATH}/ykman"
CLIP="${BIN_PATH}/xclip"
CLIP_ARGS="-selection clipboard -i"
PINENTRY_SETUP="/usr/bin/pinentry"
PINENTRY="/usr/bin/pinentry"
OPEN="xdg-open"
# shellcheck disable=SC2034
DEPS=(
"expect"
"gnupg"
"pinentry"
"git"
"yubikey-manager"
"xclip"
"pcsclite"
)
set +e
read -r -d '' NOTIFICATION_NOTIFY << EOF
notify-send "\$title" "\$body"
EOF
set -e
NOTIFICATION_SCRIPT_PATH="${USER_BIN_DIR}/yubinotif"
# shellcheck disable=SC2034
SCDAEMON_CONF=""
;;
*)
echo "Sorry, your OS is not supported"
exit 1
esac
# Use Homebrew binaries.
export PKG_MANAGER
export PKG_MANAGER_ENV
export PKG_MANAGER_INSTALL
export PKG_MANAGER_UPDATE
export PKG_MANAGER_UPGRADE
export PKG_CHECK
export PKG_CHECK_ARGS
export GIT
export GPG
export GPG_AGENT
export GPGCONF
export YKMAN
export CLIP
export CLIP_ARGS
export OPEN
export PINENTRY_SETUP
export PINENTRY
export NOTIFICATION_SCRIPT_PATH
export USER_BIN_DIR
# Colors galore.
BOLD=$(tput bold)
export BOLD
RED=$(tput setaf 1)
export RED
GREEN=$(tput setaf 2)
export GREEN
YELLOW=$(tput setaf 3)
export YELLOW
BLUE=$(tput setaf 4)
export BLUE
MAGENTA=$(tput setaf 5)
export MAGENTA
RESET=$(tput sgr0) # Reset text
export RESET
# SSH.
export SSH_ENV="$HOME/.ssh/environment"
# Folders and files.
export DEFAULT_GPG_HOMEDIR=$HOME/.gnupg
export DEFAULT_GPG_AGENT_CONF=$DEFAULT_GPG_HOMEDIR/gpg-agent.conf
export DEFAULT_GPG_CONF=$DEFAULT_GPG_HOMEDIR/gpg.conf
export DEFAULT_GPG_SCDAEMON_CONF=${DEFAULT_GPG_HOMEDIR}/scdaemon.conf
# Functions.
# Backup configuration in default GPG homedir, if it exists.
function backup_conf {
local conf
local conf_backup
conf="$1"
if [[ -e "$conf" ]]
then
conf_backup=$conf.$(date +%s)
if [[ -e $conf_backup ]]
then
echo "Unlikely for $conf_backup to exist!"
exit 4
else
echo "Backing up $conf to $conf_backup"
mv "$conf" "$conf_backup"
fi
else
echo "$conf doesn't exist"
fi
}
# Get the GPG keyid using the given homedir.
function get_keyid {
$GPG --homedir="$1" --card-status | grep 'Signature key' | cut -f2 -d: | tr -d ' '
}
function vercomp {
if [[ $1 == "$2" ]]
then
return 0
fi
local IFS=.
# shellcheck disable=SC2206
local i ver1=($1) ver2=($2)
# fill empty fields in ver1 with zeros
for ((i=${#ver1[@]}; i<${#ver2[@]}; i++))
do
ver1[i]=0
done
for ((i=0; i<${#ver1[@]}; i++))
do
if [[ -z ${ver2[i]} ]]
then
# fill empty fields in ver2 with zeros
ver2[i]=0
fi
if ((10#${ver1[i]} > 10#${ver2[i]}))
then
return 1
fi
if ((10#${ver1[i]} < 10#${ver2[i]}))
then
return 2
fi
done
return 0
}
function join { local IFS="$1"; shift; echo "$*"; }
# https://stackoverflow.com/a/44348249
function install_or_upgrade {
local pkg
pkg="$1"
if "$PKG_CHECK" "$PKG_CHECK_ARGS" "$pkg" >/dev/null; then
eval "$PKG_MANAGER_ENV" "$PKG_MANAGER" "$PKG_MANAGER_UPGRADE" "$pkg"
else
eval "$PKG_MANAGER_ENV" "$PKG_MANAGER" "$PKG_MANAGER_INSTALL" "$pkg"
fi
}
function check_presence {
local pkg
pkg="$1"
if ! "$PKG_CHECK" "$PKG_CHECK_ARGS" "$pkg" >/dev/null 2>&1; then
echo "$pkg is missing, please install it"
return 1
fi
}