diff options
author | kaotisk <kaotisk@arching-kaos.com> | 2021-12-18 08:33:02 +0200 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.com> | 2021-12-18 08:33:02 +0200 |
commit | 606e3bd269fdc2cf687db82c43a5346f8081864f (patch) | |
tree | 2f88a716af27ebeacc7ef4c33fa467cf236c4477 /pack_z_block | |
parent | 6cbf9b47f966556f92565392e83b410729c8be35 (diff) | |
download | arching-kaos-tools-606e3bd269fdc2cf687db82c43a5346f8081864f.tar.gz arching-kaos-tools-606e3bd269fdc2cf687db82c43a5346f8081864f.tar.bz2 arching-kaos-tools-606e3bd269fdc2cf687db82c43a5346f8081864f.zip |
Different approach on installing, now symlinks
Diffstat (limited to 'pack_z_block')
-rwxr-xr-x | pack_z_block | 113 |
1 files changed, 0 insertions, 113 deletions
diff --git a/pack_z_block b/pack_z_block deleted file mode 100755 index da5e22b..0000000 --- a/pack_z_block +++ /dev/null @@ -1,113 +0,0 @@ -#!/bin/bash -# This file describe the structure of the ArchingKaos messages in their basis. -# -# As previously thought, we exchange one IPFS hash through whatever means we can. -# -# GPG is mentioned as a signing algorithm for encryption, decryption and signing. -# Let's say we have a file named as `example` -# -# We can extend this with calling the encoder and further send the transaction -# - -#FINGERPRINT="CHANGE THIS TO YOUR DEFAULT FINGERPRINT" -# We acquire the GPG fingerprint by email address -# The following example finds kaos@kaos.kaos' GPG fingerprint like this -# FINGERPRINT="$(gpg2 --list-keys | grep kaos@kaos.kaos -1 | head -n1 | awk '{print $1}')" - -# Below, the usage information -usage(){ - echo "$0 - action data_file" - echo "Creates and publishes a ZBLOCK based on ACTION and DATA file." - echo "" - echo "action An action for the render to grasp" - echo "data_file A data file that according to the action is valid" -} - -main(){ - - echo "We are doing" $ACTION "with content" $MESSAGE - # We add it to IPFS - MESSAGE_HASH=$(ipfs add -q $MESSAGE) - - # We create a detached and armor signature of it - MESSAGE_SIGN_FILE=$MESSAGE".asc" - gpg2 --detach-sign --sign-with $FINGERPRINT --armor --output $MESSAGE_SIGN_FILE $MESSAGE - - # We add the signature to IPFS - MESSAGE_SIGNATURE=$(ipfs add -q $MESSAGE_SIGN_FILE) - - # We will be using our public key also to put it in the block later - KEY="gpg.pub" - gpg2 --armour --output $KEY --export $FINGERPRINT - GPG_PUB_KEY=$(ipfs add -q $KEY) - - # Acquire last block of information, to chain this one with previous posted - PREVIOUS=$(ipfs files stat /zlatest | head -n 1) - - # We create a block of json like this: - cat > block <<EOF -{ - "action":"$ACTION", - "data":"$MESSAGE_HASH", - "detach":"$MESSAGE_SIGNATURE", - "gpg":"$GPG_PUB_KEY", - "previous":"$PREVIOUS" -} -EOF - BLOCK="block" - BLOCK_SIG=$BLOCK".asc" - # We have a block now, so we sign it - gpg2 --detach-sign --sign-with $FINGERPRINT --armor --output $BLOCK_SIG $BLOCK - - # We now add the signature to IPFS - BLOCK_SIGNATURE=$(ipfs add -q $BLOCK_SIG) - - # We also add the block! - BLOCK=$(ipfs add -q $BLOCK) - - # So we now do the think almost again - cat > zblock << EOF -{ - "block":"$BLOCK", - "block_signature":"$BLOCK_SIGNATURE" -} -EOF - ZBL="zblock" - # and we add it on IPFS - ZBLOCK=$(ipfs add -q $ZBL) - echo $ZBLOCK -} - -title(){ - echo "AK zblock creator" - echo "=================" -} - -title -if [ ! -z $2 ]; -then - PWD="$(pwd)" - MESSAGE="$PWD/$2" - ACTION="$1" - if [ -f "$MESSAGE" ]; then - main - else - echo "File does not exist. Aborting..." - exit 1 - fi - - # cat $PWD/zblock | json_pp - # Optional or extending with - # python send_as_ak_tx $ZBLOCK - # or for "offline" use - echo $ZBLOCK > $ZLATEST - ipfs name publish --key=zchain $ZBLOCK - ipfs files mkdir /zarchive - ipfs files cp /zlatest /zarchive/$(date -u +%s)-$(ipfs files stat /zlatest | head -n 1) - ipfs files rm /zlatest - ipfs files cp /ipfs/$ZBLOCK /zlatest -else - usage - exit 0 -fi - |