From 65a479aba3c6d1f5accde1fefb7095ab6b204077 Mon Sep 17 00:00:00 2001 From: Danielle McLean Date: Wed, 10 May 2017 14:48:20 +1000 Subject: [PATCH] Add push script, which loads Simplepush credentials from pass and pushes a notification taken from standard input or a file --- local/bin/push | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 local/bin/push diff --git a/local/bin/push b/local/bin/push new file mode 100755 index 0000000..788efaf --- /dev/null +++ b/local/bin/push @@ -0,0 +1,19 @@ +#!/bin/zsh +zparseopts -D -A opts -- t: e: +autoload pass-unpack +typeset -A creds +pass-unpack Productivity/Simplepush creds + +enc_key=$(echo -n $creds[password]$creds[salt] | sha1sum | awk '{print toupper($1)}' | cut -c1-32) +iv=$(openssl enc -aes-128-cbc -k dummy -P -md sha1 | grep iv | cut -d = -f 2) + +encrypt() { + openssl aes-128-cbc -base64 -K $enc_key -iv $iv | awk '{print}' ORS='' | tr + - | tr / _ +} + +msg="$(cat -- "$@" | encrypt)" +extras=() +[[ -n $opts[-t] ]] && extras+=(title=$(encrypt <<<$opts[-t])) +[[ -n $opts[-e] ]] && extras+=(event=$opts[-e]) + +http -f --ignore-stdin https://api.simplepush.io/send key=$creds[key] msg=$msg iv=$iv encrypted=true $extras