aboutsummaryrefslogtreecommitdiff
path: root/bin/ak-folders
blob: 3654b674558f074cc6e99a131620ea8aaa795d39 (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
90
91
92
93
94
95
96
97
98
99
100
101
#!/bin/bash
# The following creates a mixtape data message
ZFOLDERSDIR="$AK_WORKDIR/folders"
TEMP="/tmp/aktmp"
if [ ! -d $ZFOLDERSDIR ]; then
	mkdir $ZFOLDERSDIR
	cd $ZFOLDERSDIR
else
	ak-logthis "error $ZFOLDERSDIR not found"
fi
TEMPASSIN="$(ak-tempassin)"
cd $TEMPASSIN

usage(){
	title
	echo "$0 - folder"
}

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

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

    FOLDER="$1"

    ak-logthis "Adding $FOLDER to IPFS..."
    FOLDER_IPFS_HASH=$(ak-ipfs-add $FOLDER)
    if [ $? == 0 ]; then
	    ak-logthis "done"
    else
	    ak-logthis "error"
    fi
    ak-logthis "Folders are not signing..."

#    NOT NEEDED HERE
#    SIGN_FOLDER=$FOLDERNAME".asc"
#    gpg2 --detach-sign --sign-with $FINGERPRINT --armor --output $SIGN_FOLDER $FOLDER
#    if [ $? == 0 ]; then
#	    ak-logthis "Signed"
#    else
#	    ak-logthis "Error while signing"
#    fi
#
#    ak-logthis "Adding signature to IPFS"
#    SIGNATURE=$(ak-ipfs-add $SIGN_FOLDER)
#    if [ $? == 0 ]; then
#	    ak-logthis "Added"
#    else
#	    ak-logthis "Error while adding"
#    fi

#     cat > data <<EOF
# {
#     "timestamp":"$(date -u +%s)",
#     "foldername":"$FOLDERNAME",
#     "ipfs":"$FOLDER_IPFS_HASH"
# }
# EOF
    printf '{"timestamp":"%s","foldername":"%s","ipfs":"%s"}' $(date -u +%s) $FOLDERNAME $FOLDER_IPFS_HASH

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

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

title(){
    echo "Folder block creator"
}


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