aboutsummaryrefslogtreecommitdiff
path: root/modules/folders/main.sh
blob: a87881d9fec45d3a7a45bacd155160529c614121 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#!/bin/bash
## The following creates a folder data message
##
##
##    -h, --help                  Prints this help message
##
##
##     add <folder>               Try ak-folders add <folder>
##
fullprogrampath="$(realpath $0)"
PROGRAM="$(basename $0)"
descriptionString="Module for adding folders"
ZFOLDERSDIR="$AK_WORKDIR/folders"
TEMP="/tmp/aktmp"

source $AK_LIBDIR/_ak_log
source $AK_LIBDIR/_ak_script
source $AK_LIBDIR/_ak_ipfs
source $AK_LIBDIR/_ak_zblock

if [ ! -d $ZFOLDERSDIR ]; then
    mkdir $ZFOLDERSDIR
    _ak_log_error "error $ZFOLDERSDIR not found or/and could not be created"
else
    _ak_log_info "Found $ZFOLDERSDIR"
    exit 1
fi
TEMPASSIN="$(_ak_make_temp_directory)"
cd $TEMPASSIN


_ak_modules_folders_add(){
    CRP="$(pwd)"
    FOLDERNAME="$1"
    _ak_modules_folders_main $FOLDERNAME $CRP
    cat data | jq -M
}

_ak_modules_folders_main(){
    FOLDERNAME="$1"
    CRP="$2"
    echo "Adding $FOLDERNAME"
    _ak_log_info "Copying $1 to temporary folder"
    cp -r $2/$1 $1
    if [ $? == 0 ]; then
        _ak_log_info "Copied successfully"
    else
        _ak_log_error "Error copying..."
    fi

    FOLDER="$1"

    _ak_log_info "Adding $FOLDER to IPFS..."
    FOLDER_IPFS_HASH=$(_ak_ipfs_add $FOLDER)
    if [ $? == 0 ]; then
        _ak_log_info "done"
    else
        _ak_log_error "error"
    fi
    _ak_log_warning "Folders are not signing..."

    printf '{"timestamp":"%s","foldername":"%s","ipfs":"%s"}' $(date -u +%s) $FOLDERNAME $FOLDER_IPFS_HASH

    echo "Printing data..."
    cat data
    echo "Publishing..."

    _ak_zblock_pack folders/add $(pwd)/data
    if [ $? == 0 ]
    then
        echo "cool"
    else
        echo "not?"
        exit 2
    fi
}

_ak_modules_folders_title(){
    echo "$PROGRAM - Folder block creator"
}

if [ ! -z $1 ]; then
    case $1 in
        -h | --help) _ak_usage; exit;;
        add) _ak_modules_folders_add $2; exit;;
        *) _ak_usage; exit;;
    esac
else _ak_usage
fi