From 38ad449f562af439640563112e2dc38fe2a960cd Mon Sep 17 00:00:00 2001 From: kaotisk Date: Tue, 16 Jul 2024 05:24:52 +0300 Subject: Moved `ak-sm-files` to module `smfiles` Also, cleaning up the `bin/` directory: - ak-sm-filejoiner and - ak-sm-filesplitter are now part of `lib/_ak_smfiles` Updated README as well removing the above scripts and fixing the typo: - sm-files -> smfiles from the modules list. Note that the module part, as well as the `files` module are going to be removed in favor of `ak-fs`. Stay tuned for that. To update, do: ``` git pull ./update.sh ``` --- bin/ak-sm-filejoiner | 88 -------------------------- bin/ak-sm-files | 163 ------------------------------------------------- bin/ak-sm-filesplitter | 134 ---------------------------------------- 3 files changed, 385 deletions(-) delete mode 100755 bin/ak-sm-filejoiner delete mode 100755 bin/ak-sm-files delete mode 100755 bin/ak-sm-filesplitter (limited to 'bin') diff --git a/bin/ak-sm-filejoiner b/bin/ak-sm-filejoiner deleted file mode 100755 index f4165f9..0000000 --- a/bin/ak-sm-filejoiner +++ /dev/null @@ -1,88 +0,0 @@ -#!/bin/bash -# -set -xe - -PROGRAM="$(basename $0)" - -usage(){ - echo "$PROGRAM " -} - -cdaw(){ - pwd > tmp_holder -} - -cdaw - -CURDIR="$(cat tmp_holder)" - -TMPWD="/tmp/rjs" - -if [ ! -d "$TMPWD" ] -then - mkdir -p "$TMPWD" - if [ $? -ne 0 ] - then - echo "Can't create $TMPWD dir" - exit 1 - fi -fi - -MAPSDIR="$AK_WORKDIR/fmp" - -CHKDIR="$AK_WORKDIR/ftr" - -cd $CHKDIR -if [ $? -ne 0 ] -then - echo "Can't get dir" - exit 1 -fi - -if [ ! -z $1 ] -then - MAPSFILE="$1" - - echo '#!/bin/bash' > script - - # We create a script to copy all the chunks and rename them to their serialized - # name produced by split when we splitted the file - awk '{print "cp '$CHKDIR'/"$1" '$TMPWD'/"$2" "}' $MAPSDIR/$MAPSFILE| grep chk >> script - - bash script - - if [ $? -ne 0 ] - then - echo "Error executing copy script" - exit 1 - fi - rm script - - cd $TMPWD - - echo "$PWD" - - # Final name we are going to rename to - OUTPUT="$(tail -n1 $MAPSDIR/$MAPSFILE | awk '{print $2}')" - - echo $OUTPUT - - # We grep the MAPSFILE for chk filenames in lines and we print them all in - # one line so the first `cat` will concatenate all chunks to OUTPUT - cat $(echo -n $(cat $MAPSDIR/$MAPSFILE|grep chk|awk '{print $2" "}'|tr -d '\n')) > $OUTPUT - - # We check if everything is okay - sha512sum -c $MAPSDIR/$MAPSFILE - if [ $? -ne 0 ]; then - _ak_log_error "Error while checking sums" - exit 1 - fi - - mv $OUTPUT $CURDIR - - rm -rf "$TMPWD" - - rm $CURDIR/tmp_holder -else - usage -fi diff --git a/bin/ak-sm-files b/bin/ak-sm-files deleted file mode 100755 index 317149e..0000000 --- a/bin/ak-sm-files +++ /dev/null @@ -1,163 +0,0 @@ -#!/bin/bash -## sm files -## -## -h, --help Prints this help message -## -## --add Adds file to zchain as a zblock -## -## --index List files -## -## --full-index List all files -## -## --ls-map-files List map files -## -ZFILESDIR="$AK_WORKDIR/files" -pwd > .pwd -CRD=$(cat .pwd) - -PROGRAM="$(basename $0)" -#set -xe -source $AK_LIBDIR/_ak_log -source $AK_LIBDIR/_ak_ipfs -source $AK_LIBDIR/_ak_gpg -source $AK_LIBDIR/_ak_zblock - -if [ ! -d $ZFILESDIR ]; then - mkdir $ZFILESDIR - if [ $? == 0 ] - then - _ak_log_info "Folder $ZFILESDIR created!" - else - _ak_log_error "Failed to create $ZFILESDIR folder" - exit 1 - fi - cd $ZFILESDIR -else - _ak_log_info "$ZFILESDIR found!" -fi - - -_ak_sm_files_add(){ - FILENAME="$1" - _ak_sm_files_main $FILENAME $CRD - cat data | jq -M -} -_ak_sm_files_main(){ - FILENAME="$1" - CRP="$2" - - TEMPASSIN="$(_ak_make_temp_directory)" - cd $TEMPASSIN - - echo "Adding $FILENAME" - _ak_log_info "Switching to tmp folder..." - if [ $? == 0 ]; then - _ak_log_info "Success" - else - _ak_log_error "Error with tmp folder" - exit 5 - fi - _ak_log_info "Copying $1 to $TEMPASSIN" - - cp $CRP/$FILENAME $FILENAME - if [ $? == 0 ]; then - _ak_log_info "Copied successfully" - else - _ak_log_error "Error copying..." - fi - - _ak_log_info "Adding $FILENAME to IPFS..." - FILE_IPFS_HASH=$(_ak_ipfs_add $FILENAME) - if [ $? == 0 ]; then - _ak_log_info "Added $FILENAME to IPFS" - else - _ak_log_error "Error in adding the $FILENAME to IPFS" - fi - - _ak_log_info "Adding $FILE to SHAMAPSYS..." - FILEMAP_SHA512_HASH=$(ak-sm-filesplitter $FILENAME) - if [ $? == 0 ]; then - _ak_log_info "Added $FILENAME to SHAMAPSYS" - else - _ak_log_error "Error in adding the $FILENAME to SHAMAPSYS" - fi - - _ak_log_info "Signing..." - SIGN_FILE=$FILENAME".asc" - _ak_gpg_sign_detached $SIGN_FILE $FILENAME - if [ $? == 0 ]; then - _ak_log_info "Signed" - else - _ak_log_error "Error while signing" - fi - - _ak_log_info "Adding signature to IPFS" - SIGNATURE=$(_ak_ipfs_add $SIGN_FILE) - if [ $? == 0 ]; then - _ak_log_info "Added" - else - _ak_log_error "Error while adding" - fi - - _ak_log_info "Adding signature to SHAMAPSYS" - SHAMAPSIGMAP=$(ak-sm-filesplitter $SIGN_FILE) - if [ $? == 0 ]; then - _ak_log_info "Added" - else - _ak_log_error "Error while adding" - fi - - cat > data < $TEMPORARYDIR/cmd_queue.sh - -# We get the SHA512 hash for the $FILE given -CHECKSUM=$(sha512sum "$FILE"|awk '{print $1}') - -# We split the file into 1048576 bytes and output the chunks into TECHDIR -split -b 1048576 --additional-suffix ".chk" -d "$FILE" "$TECHDIR$(basename "$FILE")-" - -# We go over there... -cd $TECHDIR - -# We get every chunks' SHA512 and we craft a script to rename the chunks and -# move them to CHKDIR -sha512sum * > $TEMPORARYDIR/map; while IFS="" read -r p || [ -n "$p" ] -do - echo $p | awk '{print "mv " $2 " '$CHKDIR'" $1}' >> $TEMPORARYDIR/cmd_queue.sh -done < $TEMPORARYDIR/map - -# We run the crafted script -sh $TEMPORARYDIR/cmd_queue.sh - -# and we delete it -rm $TEMPORARYDIR/cmd_queue.sh - -# We inform the map about the original $FILE name and SHA512 -echo "$CHECKSUM $(basename "$FILE")" >> $TEMPORARYDIR/map - -# We get the SHA512 hash of the resulted map file -MAPFILEHASH="$(sha512sum $TEMPORARYDIR/map | awk '{ print $1 }')" - -# and we rename it with it and move it to FILEMAPSDIR -`sha512sum $TEMPORARYDIR/map | awk '{print "mv " $2 " '$FILEMAPSDIR'" $1}'` - -# We remove the TEMPORARYDIR -rm -rf $TEMPORARYDIR - -# and print the MAPFILEHASH -echo "$MAPFILEHASH" -- cgit v1.2.3