all repos — dotfiles @ 6a54117d652767b463d7be4e29c150c826e27d4d

linux dotfiles

Merge pull request #1 from prithugoswami/pd-crypt

Pd crypt
Prithu Goswami prithugoswami524@gmail.com
Sat, 26 May 2018 10:46:56 +0530
commit

6a54117d652767b463d7be4e29c150c826e27d4d

parent

b8a35db4d6f7dff6b7cf4b5c9c37baffc8eec0c5

2 files changed, 100 insertions(+), 12 deletions(-)

jump to
M .zshrc.zshrc

@@ -97,8 +97,14 @@ alias rn="shutdown -r now"

alias :wq="exit" alias tmux="tmux -u" alias n="nautilus" -alias pdrl="cp ~/Dropbox/pd/pd.txt /tmp/pd.tmp ; less /tmp/pd.tmp" # Read the local copy of pd -alias pdrc="rclone cat drop:/pd/pd.txt > /tmp/pd.tmp ; less /tmp/pd.tmp" # Read pd from the cloud +# Read the local copy of pd +alias pdrl="cp ~/Dropbox/pd/pd /tmp/pd \ + ; gpg --passphrase-file ~/.pdkey --batch -o /tmp/pd.tmp -d /tmp/pd \ + ; less /tmp/pd.tmp ; rm /tmp/pd.tmp" +# Read pd from the cloud +alias pdrc="rclone cat drop:/pd/pd > /tmp/pd \ + ; gpg --passphrase-file ~/.pdkey --batch -o /tmp/pd.tmp -d /tmp/pd \ + ; less /tmp/pd.tmp ; rm /tmp/pd.tmp" # Task warrior Alias
M scripts/pdscripts/pd

@@ -1,21 +1,80 @@

#!/usr/bin/env python3 -# This script opens a temp file in a vim buffer and after wrting and quiting from vim, it writes the contents to the file -# specified by the file_path with a date and timestamp. +# +# ------------------------------------------------------------- +# Journal Keeping Script [aka Personal Diary (pd)] +# Author : Prithu Goswami <prithugoswami524@gmail.com> +# ------------------------------------------------------------- +# Prerequisites : make sure these programs are available on the +# machine: +# 'rclone' +# 'vim' +# 'gpg' (v2.X) +# +# This is a very messy script and is just a quick hack and is not +# a very super secure way of keeping a journal but I hope to improve on +# it with time. +# +# This script opens a temp file in a vim buffer and after wrting +# and quiting from vim, it appends the contents to the file +# 'pd_path' that is in the 'pd_dir' in the $HOME dir of the machine, +# with a date and timestamp. +# +# NOTE : 'rclone' should be configured +# with a remote first. run 'rlone config'. +# The remote should have directory with the encrypted 'pd' file +# Path to remote directory should be stored in 'rclone_dir' +# # I use 'rclone' to sync the journal to my dropbox -# the script first fetches any changes done to the pd.txt file -# and then appends the entry and uploads it. -# I use this for my journal. +# the script first fetches any changes done to the pd file, +# decryptis it using 'gpg' using the passhprase-file as '$HOME/.pdkey' +# and then appends the entry, encrypts it and uploads it. +# +# VARIABLES +# +# 'key_path' : passphrase for AES encrypted file +# default alogrithm used by gpg v2.2 is AES-128 according +# to the man page +# 'pd_dir' : The directory where the pd file is stored +# 'pd_path' : The path to the pd file +# 'rclone_dir' ; The direrctory of the pd file on the 'remote' +# in this case the 'remote' is 'drop:' +# +# NOTE : +# Make sure there already exists a symmetrically encrypted AES file +# in 'pd_path' and also in 'rclone_dir' +# +# To symmetrically encrypt an empty file run: +# `touch empty ; gpg2 --passphrase <secret> --batch -o pd -c empty` +# this should create a symmetrically encrypted AES file named 'pd' with +# the passphrase <secret> +# This is not the most secure thing in the world I don't even intend it +# to be. So anyways, the <secret> has to be saved as .pdkey in your home +# directory or elsewhere ( if you're saving it elsewhere, then change +# the 'key_path' variable accordingly + import os import datetime import tempfile +import subprocess +import shlex -file_path = r'/home/prithu/Dropbox/pd/pd.txt' +env_home = os.environ['HOME'] +tmp_pd_path = '/tmp/pd' +key_path = env_home + '/.pdkey' +pd_dir = env_home + '/Dropbox/pd' +pd_path = pd_dir + '/pd' +rclone_dir = 'drop:/pd' +if not os.path.exists(key_path): + print("Exiting..No .pdkey found in home dir") + exit() +if os.path.exists(tmp_pd_path): + os.remove(tmp_pd_path) entry = None -with tempfile.NamedTemporaryFile(suffix='.pdtemp') as temp: +with tempfile.NamedTemporaryFile(suffix='.pdentry') as temp: command = "vim {}".format(temp.name) os.system(command) entry = open(temp.name, 'r').read()

@@ -24,12 +83,21 @@ print("Nothing was entered...")

exit() print("Fetching changes...") -if not os.system('rclone sync drop:/pd/ ~/Dropbox/pd/'): +if not os.system('rclone sync {}/ {}/'.format(rclone_dir, pd_dir)): print("Done") + decrypt_cmd = ('gpg --passphrase-file {} --batch -o {} -d {}' + .format(key_path, tmp_pd_path, pd_path)) + args = shlex.split(decrypt_cmd) + p = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE, + universal_newlines=True) + out, err = p.communicate() + if p.returncode: # if gpg exits with a non-zero return code + print("Error while decrypting :\n" + err) + exit() else: print("Something went wrong") -with open(file_path, 'a', encoding='utf8') as fp: +with open(tmp_pd_path, 'a', encoding='utf8') as fp: dt = datetime.datetime.now() date_string = dt.strftime('%a, %d %b %Y') time_string = dt.strftime('%I:%M %p')

@@ -38,8 +106,22 @@

fp.write('\n\n\n===============================\n' + date_and_time + '\n') fp.write(entry) + +if os.path.exists(pd_path): + os.remove(pd_path) +encrypt_cmd = ('gpg --passphrase-file {} --batch -o {} -c {}' + .format(key_path, pd_path, tmp_pd_path)) +args = shlex.split(encrypt_cmd) +p = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE, + universal_newlines=True) +out, err = p.communicate() +if p.returncode: + print("Error while encrypting :\n" + err) + exit() + +os.remove(tmp_pd_path) print("Pushing changes...") -if not os.system('rclone sync ~/Dropbox/pd/ drop:/pd/'): +if not os.system('rclone sync {}/ {}/'.format(pd_dir, rclone_dir)): print("Done") else: print("Something went wrong")