diff options
Diffstat (limited to 'bin/mixtapes')
-rwxr-xr-x | bin/mixtapes | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/bin/mixtapes b/bin/mixtapes deleted file mode 100755 index aefaf26..0000000 --- a/bin/mixtapes +++ /dev/null @@ -1,48 +0,0 @@ -#!/bin/bash -# The following creates a mixtape data message -# We can extend it by calling the pack_z_block.sh mixtape/add data - -usage(){ - title - echo "$0 - artist title file" -} - -main(){ - echo $MIXTAPE_FILE "by" $MIXTAPE_ARTIST "named as" $MIXTAPE_TITLE - - MIXTAPE_IPFS_HASH=$(ipfs add -q $MIXTAPE_FILE) - - MIXTAPE_SIGN_FILE=$MIXTAPE_FILE".asc" - gpg2 --detach-sign --sign-with $FINGERPRINT --armor --output $MIXTAPE_SIGN_FILE $MIXTAPE_FILE - - MIXTAPE_SIGNATURE=$(ipfs add -q $MIXTAPE_SIGN_FILE) - - cat > data <<EOF -{ - "timestamp":"$(date -u +%s)", - "artist":"$MIXTAPE_ARTIST", - "title":"$MIXTAPE_TITLE", - "ipfs":"$MIXTAPE_IPFS_HASH", - "detach":"$MIXTAPE_SIGNATURE" -} -EOF - -} - -title(){ - echo "AK mixtape block creator" - echo "========================" -} - - -if [ ! -z $3 ]; -then - PWD="$(pwd)" - MIXTAPE_ARTIST="$1" - MIXTAPE_TITLE="$2" - MIXTAPE_FILE="$PWD/$3" - main - cat $PWD/data | json_pp - # sh pack_z_block.sh mixtape/add $PWD/data -else usage -fi |