-
Notifications
You must be signed in to change notification settings - Fork 21
/
thunar-gpg-encrypt.sh
executable file
·363 lines (312 loc) · 7.96 KB
/
thunar-gpg-encrypt.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
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
#!/bin/sh
#
# List available public recipient keys, encrypt the file/folder
# for the specified recipient by his/her public key and sign it
# with your own key.
#
# * Put this file into your home binary dir: ~/bin/
# * Make it executable: chmod +x
#
#
# Required Software:
# -------------------------
# * gpg
# * zenity
# * pinentry-gtk-2 or pinentry-mac
#
#
# Thunar Integration
# ------------------------
#
# Command: ~/bin/thunar-gpg-encrypt.sh -f %f
# File Pattern: *
# Appear On: Select everything
#
#
# Usage:
# -------------------------
# thunar-gpg-encrypt.sh -f <filename>/<directory>
#
# required:
# -f input filename/directory
#
# Note:
# -------------------------
#
# Feel free to adjust/improve and commit back to:
# https://github.com/cytopia/thunar-custom-actions
#
################################################################################
#
# Functions
#
################################################################################
#
# Display usage
#
usage() {
echo "$0 -f <filename>/<folder>"
echo
echo " required:"
echo " -f input filename/folder"
echo
}
################################################################################
#
# GET PUBLIC KEYS
#
################################################################################
getAllPubKeysShort() {
gpg --list-public-keys --keyid-format short 2>/dev/null | \
grep '^pub' | \
sed 's/^pub[[:space:]]*[0-9]*.\///g' | \
grep -oE '^[0-9A-Fa-f]+'
}
getNameByPubKey() {
_key="${1}"
if [ "${_key}" = "" ]; then
echo ""
return
fi
gpg --list-public-keys --keyid-format short "${_key}" 2>/dev/null | \
grep '^uid' | \
sed 's/^uid[[:space:]]*//g' | \
sed 's/\s*<.*@.*>$//g'
}
getMailByPubKey() {
_key="${1}"
if [ "${_key}" = "" ]; then
echo ""
return
fi
gpg --list-public-keys --keyid-format short "${_key}" 2>/dev/null | \
grep '^uid' | \
sed 's/^uid[[:space:]]*//g' | \
grep -oE '<.+@.+>' | \
sed 's/<//g' | \
sed 's/>//g'
}
getBitByPubKey() {
_key="${1}"
if [ "${_key}" = "" ]; then
echo ""
return
fi
gpg --list-public-keys --keyid-format short "${_key}" 2>/dev/null | \
grep '^pub' | \
sed 's/^pub[[:space:]]*//g' | \
grep -oE '[0-9]+./' | \
grep -oE '[0-9]+'
}
################################################################################
#
# GET PRIVATE KEYS
#
################################################################################
getAllSecKeysShort() {
gpg --list-secret-keys --keyid-format short 2>/dev/null | \
grep '^sec' | \
sed 's/^sec[[:space:]]*[0-9]*.\///g' | \
grep -oE '^[0-9A-Fa-f]+'
}
getNameBySecKey() {
_key="${1}"
if [ "${_key}" = "" ]; then
echo ""
return
fi
gpg --list-secret-keys --keyid-format short "${_key}" 2>/dev/null | \
grep '^uid' | \
sed 's/^uid[[:space:]]*//g' | \
sed 's/\s*<.*@.*>$//g'
}
getMailBySecKey() {
_key="${1}"
if [ "${_key}" = "" ]; then
echo ""
return
fi
gpg --list-secret-keys --keyid-format short "${_key}" 2>/dev/null | \
grep '^uid' | \
sed 's/^uid[[:space:]]*//g' | \
grep -oE '<.+@.+>' | \
sed 's/<//g' | \
sed 's/>//g'
}
getBitBySecKey() {
_key="${1}"
if [ "${_key}" = "" ]; then
echo ""
return
fi
gpg --list-secret-keys --keyid-format short "${_key}" 2>/dev/null | \
grep '^sec' | \
sed 's/^sec[[:space:]]*//g' | \
grep -oE '[0-9]+./' | \
grep -oE '[0-9]+'
}
################################################################################
#
# ZENITY FUNCTIONS
#
################################################################################
#
# Display zenity box for choosing the recipient
# from a list of all public key.
#
# @output string Public key string (bits, key, name, email)
#
chooseRecipient () {
output=""
IFS='
'
for key in $( getAllPubKeysShort ); do
name="$( getNameByPubKey "${key}" )"
mail="$( getMailByPubKey "${key}" )"
bit="$( getBitByPubKey "${key}" )"
output="${output}\"${bit}\" \"${key}\" \"${name}\" \"${mail}\" "
done
CMD="zenity --list \
--width=550 --height=250 \
--title=\"GPG Encrypt File for...\" \
--print-column=2 \
--text=\"Choose Recipient\" \
--column=\"Bit\" --column=\"Key\" --column=\"Name\" --column=\"Email\" ${output}"
eval "${CMD}"
}
#
# Display zenity box for choosing your own private keys
# from a list.
#
# @output string Private key string (bits, key, name, email)
#
chooseSecret () {
output=""
IFS='
'
for key in $( getAllSecKeysShort ); do
name="$( getNameBySecKey "${key}" )"
mail="$( getMailBySecKey "${key}" )"
bit="$( getBitBySecKey "${key}" )"
output="${output}\"${bit}\" \"${key}\" \"${name}\" \"${mail}\" "
done
CMD="zenity --list \
--width=550 --height=250 \
--title=\"Choose private key...\" \
--print-column=2 \
--text=\"Choose your private key\" \
--column=\"Bit\" --column=\"Key\" --column=\"Name\" --column=\"Email\" ${output}"
eval "${CMD}"
}
#
# Display secure dialog to read in the pasword
#
# @param string My chosen secret key
# @output string My entered password
readPassword () {
_my_key="$1"
_my_mail="$(getMailBySecKey "${_my_key}")"
printf "SETDESC Enter your password for: %s (%s)\nGETPIN\n" "${_my_key}" "${_my_mail}" | ${BIN_PINENTRY} 2> /dev/null | grep "D" | awk '{print $2}'
}
################################################################################
#
# Evaluate command line arguments
#
################################################################################
# Loop over cmd args
while getopts ":f:" i; do
case "${i}" in
f)
f=${OPTARG}
;;
*)
echo "Error - unrecognized option $1" 1>&2;
usage
;;
esac
done
shift $((OPTIND-1))
# Check if file is specified
if [ -z "${f}" ]; then
echo "Error - no file specified" 1>&2;
usage
exit 1
fi
################################################################################
#
# Check binary requirements
#
################################################################################
# Check if gpg exists
if ! command -v gpg >/dev/null 2>&1 ; then
echo "Error - 'gpg' not found." 1>&2
exit 1
fi
# Check if pinentry-gtk-2 exists
BIN_PINENTRY=""
if [ "$(uname)" != "Darwin" ]; then
if ! command -v pinentry-gtk-2 >/dev/null 2>&1 ; then
echo "Error - 'pinentry-gtk-2' not found." 1>&2
exit 1
fi
BIN_PINENTRY="pinentry-gtk-2"
else
if ! command -v pinentry-mac >/dev/null 2>&1 ; then
echo "Error - 'pinentry-mac' not found." 1>&2
exit 1
fi
BIN_PINENTRY="pinentry-mac"
fi
# Check if zenity exists
if ! command -v zenity >/dev/null 2>&1 ; then
echo "Error - 'zenity' not found." 1>&2
exit 1
fi
# Check if input is file or folder
if [ ! -f "${f}" ] && [ ! -d "${f}" ]; then
zenity --error --text="Input is neither a file, nor a folder."
exit 1
fi
################################################################################
#
# Main entry point
#
################################################################################
r="$(chooseRecipient)"
if [ -z "${r}" ]; then
zenity --error --text="No Recipient specified."
exit 1
fi
# fix zenity bug on double click
# https://bugzilla.gnome.org/show_bug.cgi?id=698683
r="$(echo "${r}" | awk '{split($0,a,"|"); print a[1]}')"
u="$(chooseSecret)"
if [ -z "${u}" ]; then
zenity --error --text="No Secret key specified."
exit 1
fi
# fix zenity bug on double click
# https://bugzilla.gnome.org/show_bug.cgi?id=698683
u="$(echo "${u}" | awk '{split($0,a,"|"); print a[1]}')"
p="$(readPassword "${u}")"
if [ -z "${p}" ]; then
zenity --error --text="No Password specified."
exit 1
fi
# Encrypt folder
if [ -d "${f}" ]; then
parentdir="$(dirname "${f}")"
directory="$(basename "${f}")"
error="$(tar c -C "${parentdir}" "${directory}" | gpg -e -s --yes --batch --local-user "${u}" --recipient "${r}" --passphrase "${p}" -o "${parentdir}/${directory}.tar.gpg" 2>&1)"
errno=$?
else
error="$(gpg -e -s --yes --batch --local-user "${u}" --recipient "${r}" --passphrase "${p}" "${f}" 2>&1)"
errno=$?
fi
if [ "$errno" -gt "0" ]; then
zenity --error --text="${error}\nreturn code: ${errno}"
exit 1
else
zenity --info --text="Encrypted."
exit $?
fi