forked from cytopia/thunar-custom-actions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
thunar-gpg-functions.sh
executable file
·286 lines (249 loc) · 6.2 KB
/
thunar-gpg-functions.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
#!/bin/bash
#
# Common functions used for encryptions
#
# * Put this file into your home binary dir: ~/bin/
# * Make it executable: chmod +x
#
#
# Required Software:
# -------------------------
# * gpg
# * zenity
# * pinentry-gtk-2 or pinentry-mac
#
#
# Note:
# -------------------------
#
# Feel free to adjust/improve and commit back to:
# https://github.com/cytopia/thunar-custom-actions
#
################################################################################
#
# Common variables
#
################################################################################
export sedUIDExtractionString="s/^\(pub\|sec\)[[:space:]]*[A-Za-z]\{3\}[0-9]*.\///g"
################################################################################
#
# Functions
#
################################################################################
#
# Display usage
#
usage() {
echo "$0 -f <filename>/<folder>"
echo
echo " required:"
echo " -f input filename/folder"
echo
}
################################################################################
#
# Evaluate command line arguments
#
################################################################################
# Loop over cmd args
checkCommandLineArg() {
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
checkFileArg() {
if [ -z "${f}" ]; then
echo "Error - no file specified" 1>&2;
usage
exit 1
fi
}
################################################################################
#
# Check binary requirements
#
################################################################################
checkBinaryReq() {
# 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 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
}
################################################################################
#
# GET PUBLIC KEYS
#
################################################################################
getAllPubKeysShort() {
gpg --list-public-keys --keyid-format short 2>/dev/null | \
grep '^pub' | \
sed ${sedUIDExtractionString} | \
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 ${sedUIDExtractionString} | \
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 ${sedUIDExtractionString} | \
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 ${sedUIDExtractionString} | \
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 ${sedUIDExtractionString} | \
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 ${sedUIDExtractionString} | \
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 ${sedUIDExtractionString} | \
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 ${sedUIDExtractionString} | \
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}'
}