aboutsummaryrefslogtreecommitdiff
path: root/libexec/recit-edit-entry
blob: 47ca072cfe1600728486d82989bf833e73ad5c61 (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
#!/usr/bin/env bash
# Usage: recit edit-entry uuid
# Summary: Edit an entry given its UUID

set -e

# shellcheck source=/dev/null
source lib/loader

recfile=$(load_recit)

uuid=$1

notes=$(recsel -e "Id = '$uuid'" -t Entry -P Notes "${recfile}")
time=$(recsel -e "Id = '$uuid'" -t Entry -P Time "${recfile}")

if [[ -z $notes ]]; then
  echo "record not found"
  exit 1
fi

if [[ -z ${EDITOR+x} ]]; then
  echo "$EDITOR is not defined please pass a message"
  exit 1
fi

tmpfile="$(mktemp)"
echo "$notes" > $tmpfile
command $EDITOR "$tmpfile"
notes=$(cat "$tmpfile")
rm "$tmpfile"

recins -e "Id = '$uuid'" -t Entry -f Id -v "$uuid" -f Notes -v "$notes" -f Time -v "$time" "${recfile}"