aboutsummaryrefslogtreecommitdiff
path: root/bin/ak-data-expand
diff options
context:
space:
mode:
authorkaotisk <kaotisk@arching-kaos.org>2024-07-05 00:32:55 +0300
committerkaotisk <kaotisk@arching-kaos.org>2024-07-05 00:32:55 +0300
commit681358adcfc8d1471ca53c3af246bf80a885ef98 (patch)
tree1b339d01f5ed5bee99c5c1be4403a6d23b7c05c4 /bin/ak-data-expand
parentc0dbfc8dc7cf7af278de1d233d87ffbe481ba704 (diff)
downloadarching-kaos-tools-681358adcfc8d1471ca53c3af246bf80a885ef98.tar.gz
arching-kaos-tools-681358adcfc8d1471ca53c3af246bf80a885ef98.tar.bz2
arching-kaos-tools-681358adcfc8d1471ca53c3af246bf80a885ef98.zip
Refactoring
- Edited log messages and types - IPFS `cat` is now calling `get` which in turn searches for already gotten file, otherwise fetches it. - ak-data-expand is now a function of _ak_zblock lib (_ak_data_expand) - Removed ak-sm-hash-to-path as it lives in _ak_fs lib now - Removed _ak_title_description and _ak_help from ak in favor of _ak_usage - Tweaks around native FS over IPFS strategy Note that we are preparing the ground for migration to AKFS as well
Diffstat (limited to 'bin/ak-data-expand')
-rwxr-xr-xbin/ak-data-expand104
1 files changed, 0 insertions, 104 deletions
diff --git a/bin/ak-data-expand b/bin/ak-data-expand
deleted file mode 100755
index 09b5377..0000000
--- a/bin/ak-data-expand
+++ /dev/null
@@ -1,104 +0,0 @@
-#!/bin/bash
-PROGRAM="$(basename $0)"
-source $AK_LIBDIR/_ak_log
-source $AK_LIBDIR/_ak_ipfs
-source $AK_LIBDIR/_ak_gpg
-
-if [ ! -d $AK_WORKDIR/ipfs ]
-then
- mkdir $AK_WORKDIR/ipfs
-fi
-
-if [ ! -z $1 ] && [ ! -z $2 ]
-then
- echo -n "$1" | grep -e 'Qm.\{44\}' >/dev/null
- if [ $? -ne 0 ]
- then
- _ak_log_error "Invalid hash format for $1"
- exit 1
- fi
- _ak_ipfs_cat $1 > /dev/null
- if [ $? -ne 0 ]
- then
- _ak_log_error "Error while reading $1"
- exit 1
- fi
- _ak_ipfs_cat $1 | jq -M > /dev/null
- if [ $? -ne 0 ]
- then
- _ak_log_error "Error while parsing JSON for $1"
- exit 1
- fi
- _ak_ipfs_cat $1 | jq | grep ipfs > /dev/null
- if [ $? -ne 0 ]
- then
- _ak_log_error "Error while extracting data from JSON for $1"
- exit 1
- fi
- DATA="$(_ak_ipfs_cat $1 | jq | grep ipfs | sed -e 's/"ipfs": "//g; s/[",]//g; s/ //g')"
- if [ $? -ne 0 ]
- then
- _ak_log_error "Error while extracting data from JSON for $1"
- exit 1
- fi
- _ak_ipfs_cat $1 | jq | grep detach > /dev/null
- if [ $? -ne 0 ]
- then
- _ak_log_error "Error while extracting data from JSON for $1"
- exit 1
- fi
- DETACH="$(_ak_ipfs_cat $1 | jq | grep detach | sed -e 's/"detach": "//g; s/[",]//g; s/ //g')"
- if [ $? -ne 0 ]
- then
- _ak_log_error "Error while extracting data from JSON for $1"
- exit 1
- fi
- echo -n "$2" | grep -e 'Qm.\{44\}' >/dev/null
- if [ $? -ne 0 ]
- then
- _ak_log_error "Invalid hash format for $2"
- exit 1
- fi
- gpg="$2"
- _ak_ipfs_get $gpg > /dev/null 2>&1
- if [ $? -ne 0 ]
- then
- _ak_log_error "Could not get GPG key: $gpg"
- exit 1
- fi
- _ak_gpg_key_import_from_file $gpg > /dev/null 2>&1
- if [ $? -ne 0 ]
- then
- _ak_log_error "Could not import GPG key: $gpg"
- exit 1
- fi
- _ak_ipfs_get $DETACH > /dev/null 2>&1
- if [ $? -ne 0 ]
- then
- _ak_log_error "Error while getting signature: $DETACH for data: $DATA"
- exit 1
- fi
- mv $DETACH $DATA.asc
- _ak_log_info "Block signature downloaded"
- _ak_ipfs_get $DATA > /dev/null 2>&1
- if [ $? -ne 0 ]
- then
- _ak_log_error "Error while getting data: $DATA"
- exit 1
- fi
- _ak_log_info "Data downloaded: $DATA"
- _ak_gpg_verify_signature $DATA.asc $DATA > /dev/null 2>&1
- if [ $? -ne 0 ]
- then
- _ak_log_error "Error while verifying signature for $DATA"
- exit 1
- fi
- mv $DATA $AK_WORKDIR/ipfs
- _ak_log_info "Block signature verified"
- echo -n '"data":"'$1'","'$1'":'$(_ak_ipfs_cat $1|jq -M -c)','
- exit 0
-else
- echo "Usage: $PROGRAM HASH GPG"
- exit 1
-fi
-