aboutsummaryrefslogtreecommitdiff
path: root/lib/keyringer/actions/edit
blob: 54d0fecc0692e894682c7ecfac0ce4cbf042f0bb (plain)
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
#!/bin/bash
#
# Edit keys.
#

# Load functions
LIB="`dirname $0`/../functions"
source "$LIB" || exit 1

# Get file
keyringer_get_file "$2"

# Set recipients file
keyringer_set_recipients "$FILE"

# Warn user
echo "Make sure that $BASEDIR is atop of an encrypted volume."

# Set a tmp file
keyringer_set_tmpfile edit

# Decrypt the information to the file
$GPG --yes -o "$TMPWORK" --use-agent -d "$KEYDIR/$FILE"

if [ "$BASENAME" == "edit" ]; then
  APP="$EDITOR"
elif [ "$BASENAME" == "open" ]; then
  if which xdg-open &> /dev/null; then
    APP="xdg-open"
  else
    echo "You should have xdg-open application to perform this action, aborting."
    exit 1
  fi
fi

# Prompt
echo "Press any key to open the decrypted data with $APP, Ctrl-C to abort"
read key
$APP "$TMPWORK"

# Encrypt again
$GPG --yes -o "$KEYDIR/$FILE" --use-agent --armor -e -s $(keyringer_recipients "$RECIPIENTS_FILE") "$TMPWORK"

# Remove temp file
keyringer_unset_tmpfile "$TMPWORK"