aboutsummaryrefslogtreecommitdiff
path: root/bin/ak-comments
blob: fc226b222c0bd8c457e548d1ec3407d8b43f86ab (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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
#!/bin/bash
ZCOMMENTSDIR="$WORKDIR/comments"
TEMP="/tmp/aktmp"
if [ ! -d $ZCOMMENTSDIR ]; then
	mkdir $ZCOMMENTSDIR
	cd $ZCOMMENTSDIR
	git init
	logthis "[INFO]" "zcommentsdir created along with git repo"
else
	logthis "[INFO]" "zcommentsdir found"
fi
tempassin(){
	if [ ! -z $1 ]
	then
		TEMPASSIN="$1"
	else
		TIMESTAMP="$(date -u +%s)"
		TEMPASSIN="/tmp/aktmp_$TIMESTAMP"
	fi
	if [ ! -d $TEMPASSIN ]; then
		mkdir $TEMPASSIN
	fi
	cd $TEMPASSIN
}
create(){
	if [ ! -z $1 ]
	then
		REFER_TO="$1"
	else
		logthis "[ERROR]" "No reference given"
		echo "[ERROR]" "No reference given"
		exit 1
	fi
	tempassin $TEMP
	export COMMENTS_FILE="$(date -u +%s)"
	vi $COMMENTS_FILE
	echo "Renaming..."
	TO_FILE=$COMMENTS_FILE
	IPFS_FILE=$(ipfs add -q $COMMENTS_FILE)
	mv $COMMENTS_FILE $ZCOMMENTSDIR/$TO_FILE
	add $TO_FILE
	logthis "[INFO]" "Adding to git repo..."
	cd $ZCOMMENTSDIR
	git add $TO_FILE 
	git commit -m "Added $TO_FILE with $(head -n 1 $ZCOMMENTSDIR/$TO_FILE)"
	git clean --force
	# rm -rf $TEMP 
	if [ ! -z $REFER_TO ]
	then
		reference create $REFERENCE $REFER_TO
	fi
}
index(){
	FILES="$(ls -1 $ZCOMMENTSDIR)"
	i=0
	for FILE in $FILES
	do
		DATE=$(echo $FILE | cut -d - -f 1 | awk '{print $1}')
		TITLE=$(head -n 1 $ZCOMMENTSDIR/$FILE)
		echo $i \| $DATE \| $TITLE
		let i+=1
	done	
}
title(){
	echo comments
}
add(){
	tempassin
	if [ -f "$ZCOMMENTSDIR/$1" ]; then
		FILE=$ZCOMMENTSDIR/$1
		echo "Adding comments from " $FILE
		DATETIME="$1"
		FILE_IPFS_HASH=$(ipfs add -q $FILE)
		FILE_SIGN_FILE=$FILE".asc"
		gpg --detach-sign --sign-with $FINGERPRINT --armor --output $FILE_SIGN_FILE $FILE
		FILE_SIGNATURE=$(ipfs add -q $FILE_SIGN_FILE)
		cat > data <<EOF
{
   "datetime":"$DATETIME",
   "ipfs":"$FILE_IPFS_HASH",
   "detach":"$FILE_SIGNATURE"
}
EOF
	else
		echo "File $FILE doesn't exist";
		exit 2
	fi
	REFERENCE="$(pack_z_block "comments/add" data)"
	if [ $? == 0 ]
	then
		echo "Comment added successfully"
	else
		echo "error??"
		exit 1
	fi
}
usage(){
	title
	echo "All you need to know is that there are two options available:"
	echo ""
	echo "help				Prints this help message"
	echo "index				Prints an indexed table of your comments files"
	echo "add <file> <refer_to>		Creates a data file from the comments file you point to"
	echo "create <refer_to>		Vim is going to pop up, you will write and save your"
	echo "				commentsletter and it's going to be saved"
	exit 0
}

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