forked from cytopia/thunar-custom-actions
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththunar-gpg-encrypt.sh
executable file
·190 lines (154 loc) · 3.86 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
#!/bin/sh
#
# List available public recipient keys, encrypt the file
# 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
#
#
# Thunar Integration
# ------------------------
#
# Command: ~/bin/thunar-gpg-encrypt.sh -f %f
# File Pattern: *
# Appear On: Select everything
#
#
# Usage:
# -------------------------
# thunar-gpg-encrypt.sh -f <filename>
#
# required:
# -f input filename
#
# Note:
# -------------------------
#
# Feel free to adjust/improve and commit back to:
# https://github.com/cytopia/thunar-custom-actions
#
usage() {
echo "$0 -f <filename>"
echo
echo " required:"
echo " -f input filename"
echo
}
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 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
if ! command -v pinentry-gtk-2 >/dev/null 2>&1 ; then
echo "Error - 'pinentry-gtk-2' 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
chooseRecipient () {
pubkeys="$(gpg --list-public-keys \
| grep -A 1 "^pub" \
| sed -n -e "s:^pub *\([A-Za-z0-9]\+\)/\([A-F0-9]\+\) .*$:\1 \2:p" -e "s:^uid *\(.*\)$:\"\1\":p" \
| tr '\n' ' ')"
CMD="zenity --list \
--width=550 --height=250 \
--title=\"GPG Encrypt File for...\" \
--print-column=1 \
--text=\"Choose Recipient\" \
--column=\"Key\" --column=\"Bit\" --column=\"Recipient\" ${pubkeys}"
eval "${CMD}"
}
chooseSecret () {
seckeys="$(gpg --list-secret-keys \
| grep -A 1 "^sec" \
| sed -n -e "s:^sec *\([A-Za-z0-9]\+\)/\([A-F0-9]\+\) .*$:\1 \2:p" -e "s:^uid *\(.*\)$:\"\1\":p" \
| tr '\n' ' ')"
CMD="zenity --list \
--width=550 --height=250 \
--title=\"Choose private key...\" \
--print-column=1 \
--text=\"Choose your private key\" \
--column=\"Key\" --column=\"Bit\" --column=\"Secret Key\" ${seckeys}"
eval "${CMD}"
}
readPassword () {
echo "GETPIN" | pinentry-gtk-2 2> /dev/null | grep "D" | awk '{print $2}'
}
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)"
if [ -z "${p}" ]; then
zenity --error --text="No Password specified."
exit 1
fi
error="$(gpg -e -s --yes --batch --local-user "${u}" --recipient "${r}" --passphrase "${p}" "${f}" 2>&1)"
errno=$?
if [ "$errno" -gt "0" ]; then
zenity --error --text="${error}\nreturn code: ${errno}"
exit 1
else
zenity --info --text="Encrypted."
exit $?
fi
###### old CMD Version
# show keys so you can choose the recipient
#echo "key type recipient"
#echo "---------------------------------------------"
#gpg --list-keys \
# | grep -A 1 pub \
# | awk '{print $2,$3,$4}' \
# | egrep -v "^[[:space:]]*$" \
# | awk 'NR%2{printf $1" ";next;}1' \
# | awk '{print substr($0,7,8)" (" substr($0,1,5)") "$2,$3,$4,$5}'
#echo "---------------------------------------------"
#
#
## Start interactive encryption
#gpg --sign --encrypt "${f}"
#
#exit 0