blob: fe72cd22e3f46ba464eeb994354be48c5154466b (
plain) (
blame)
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
|
#!/bin/sh
set -e
sanitize()
{
s="${1#"${1%%[![:space:]]*}"}"
s="${s%"${s##*[![:space:]]}"}"
if [ "${#s}" -eq 0 ]
then
xnotify 'Invalid Input' 'Empty strings do not constitute valid input'
exit 1
fi
}
usage()
{
cat <<-EOF >&2
Usage: ${0##*/} add [-c]
${0##*/} edit [-c]
${0##*/} get
${0##*/} rm [-c]
EOF
exit 1
}
xecho()
{
printf '%s' "$@"
}
xnotify()
{
notify "${0##*/}" vault "$1" "$2"
}
prompt()
{
if [ -t 2 ]
then
printf '%s ' "$1"
read -r s
else
s="`zenity --title=zenity --entry --text="$1"`"
fi
sanitize "$s"
}
xprompt()
{
if [ -t 2 ]
then
printf '%s ' "$1"
stty -echo
trap 'stty echo' INT
read -r s
stty echo
trap - INT
echo
else
s="`zenity --title=zenity --password --text="$1"`"
fi
sanitize "$s"
}
add()
{
shift
while getopts 'c' opt
do
case $opt in
c)
add_c
exit 0
;;
*)
usage
;;
esac
done
readonly data="`enchive extract <"$VAULT"`"
c="`xecho "$data" | jq -r 'keys | .[]' | osel`"
prompt 'Password name:'
n="$s"
xecho "$data" \
| jq -e --arg c "$c" --arg n "$n" '.[$c] | has($n) | not' >/dev/null || {
xnotify 'Failed To Add Password' "The password ‘$n’ already exists"
exit 1
}
if [ "$VAULT_2FA" = "$c" ]
then
xprompt 'Secret key:'; k="$s"
prompt 'Digits:'; d="$s"
prompt 'Period:'
xecho "$data" \
| jq --arg c "$c" \
--arg n "$n" \
--arg s "$k" \
--arg d "$d" \
--arg p "$s" \
'.[$c] += {($n): {
"secret": $s,
"digits": ($d | tonumber),
"period": ($p | tonumber)
}}' \
| enchive archive >"$VAULT"
[ ! -t 2 ] && xnotify '2FA Key Added' \
"The 2FA key ‘$n’ was added with the digit length ‘$d’ and period ‘$p’"
else
xprompt 'Password:'
xecho "$data" \
| jq --arg c "$c" --arg n "$n" --arg s "$s" '.[$c] += {($n): $s}' \
| enchive archive >"$VAULT"
[ ! -t 2 ] && xnotify 'Password Added' \
"The password ‘$n’ was added to the category ‘$c’"
fi
}
add_c()
{
readonly data="`enchive extract <"$VAULT"`"
prompt 'Category to create:'
xecho "$data" | jq -e --arg s "$s" 'has($s) | not' >/dev/null || {
xnotify 'Failed To Create Category' "The category ‘$s’ already exists"
exit 1
}
xecho "$data" \
| jq --arg s "$s" '. + {($s): {}}' \
| enchive archive >"$VAULT"
[ ! -t 2 ] && \
xnotify 'Category Created' "The password category ‘$s’ was created"
}
get()
{
readonly data="`enchive extract <"$VAULT"`"
c="`xecho "$data" | jq -r 'keys | .[]' | osel`"
o="`xecho "$data" | jq -r --arg c "$c" '.[$c] | keys | .[]' | osel`"
xecho "$data" | if [ "$VAULT_2FA" = "$c" ]
then
eval "`jq -r --arg c "$c" --arg o "$o" '
.[$c]
| .[$o]
| "totp -d"
+ (.digits | tostring)
+ " -p"
+ (.period | tostring)
+ " "
+ .secret
'`" \
| wl-copy -no \
&& [ ! -t 2 ] \
&& xnotify '2FA Code Copied To The Clipboard' \
"The 2FA code for ‘$o’ was copied to the clipboard"
else
jq -r --arg c "$c" --arg o "$o" '.[$c] | .[$o]' \
| wl-copy -no \
&& [ ! -t 2 ] \
&& xnotify 'Password Copied To The Clipboard' \
"The password for ‘$o’ was copied to the clipboard"
fi
}
rm_()
{
shift
while getopts 'c' opt
do
case $opt in
c)
rm_c
exit 0
;;
*)
usage
;;
esac
done
readonly data="`enchive extract <"$VAULT"`"
c="`xecho "$data" | jq -r 'keys | .[]' | osel`"
n="`xecho "$data" | jq -r --arg c "$c" '.[$c] | keys | .[]' | osel`"
xecho "$data" \
| jq --arg c "$c" --arg n "$n" 'del(.[$c] | .[$n])' \
| enchive archive >"$VAULT"
[ ! -t 2 ] && xnotify 'Removed Password' \
"The password ‘$n’ was removed from the category ‘$c’"
}
rm_c()
{
readonly data="`enchive extract <"$VAULT"`"
c="`xecho "$data" | jq -r 'keys | .[]' | osel`"
xecho "$data" \
| jq -e --arg c "$c" '.[$c] | length == 0' >/dev/null || {
xnotify 'Failed To Remove Category' "The category ‘$c’ is not empty"
exit 1
}
xecho "$data" \
| jq --arg c "$c" 'del(.[$c])' \
| enchive archive >"$VAULT"
[ ! -t 2 ] && xnotify 'Removed Category' "The category ‘$c’ was removed"
}
edit()
{
shift
while getopts 'c' opt
do
case $opt in
c)
edit_c
exit 0
;;
*)
usage
;;
esac
done
readonly data="`enchive extract <"$VAULT"`"
c="`xecho "$data" | jq -r 'keys | .[]' | osel`"
n="`xecho "$data" | jq -r --arg c "$c" '.[$c] | keys | .[]' | osel`"
if [ "$VAULT_2FA" = "$c" ]
then
xprompt 'Secret key:'; k="$s"
prompt 'Digits:'; d="$s"
prompt 'Period:'
xecho "$data" \
| jq --arg c "$c" \
--arg n "$n" \
--arg s "$k" \
--arg d "$d" \
--arg p "$s" \
'.[$c] += {($n): {
"secret": $s,
"digits": ($d | tonumber),
"period": ($p | tonumber)
}}' \
| enchive archive >"$VAULT"
[ ! -t 2 ] && xnotify '2FA Key Added' \
"The 2FA key ‘$n’ was added with the digit length ‘$d’ and period ‘$p’"
else
xprompt 'Password:'
xecho "$data" \
| jq --arg c "$c" --arg n "$n" --arg s "$s" '.[$c] += {($n): $s}' \
| enchive archive >"$VAULT"
[ ! -t 2 ] && xnotify 'Password Edit' \
"The password ‘$n’ in the category ‘$c’ was changed"
fi
}
edit_c()
{
readonly data="`enchive extract <"$VAULT"`"
c="`xecho "$data" | jq -r 'keys | .[]' | osel`"
prompt 'Category name:'
xecho "$data" \
| jq --arg o "$c" --arg n "$s" \
'with_entries(if .key == $o then .key = $n else . end)' \
| enchive archive >"$VAULT"
[ ! -t 2 ] && xnotify 'Category Edit' "The category ‘$c’ was renamed"
}
raw()
{
shift
enchive extract <"$VAULT" \
| jq --arg c "$1" --arg n "$2" -r '.[$c] | .[$n]'
}
: ${VAULT_2FA:="2fa"}
: ${VAULT_HOME:=${XDG_DATA_HOME:-$HOME/.local/share}/vault}
readonly VAULT="${VAULT_HOME}/vault.sec"
[ $# -eq 0 ] && usage
case "$1" in
add)
add "$@"
;;
edit)
edit "$@"
;;
get)
get
;;
raw)
raw "$@"
;;
rm)
rm_ "$@"
;;
*)
usage
;;
esac
|