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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
|
#!/bin/bash
#set -x
source $AK_LIBDIR/_ak_log
source $AK_LIBDIR/_ak_script
source $AK_LIBDIR/_ak_gpg
source $AK_LIBDIR/_ak_html
source $AK_LIBDIR/_ak_ipfs
if [ ! -d $AK_WORKDIR/ipfs ]
then
mkdir $AK_WORKDIR/ipfs
fi
_ak_data_expand(){
if [ ! -z $1 ] && [ ! -z $2 ] && [ -n "$1" ] && [ -n "$2" ]
then
TEMP="$(_ak_make_temp_directory)"
cd $TEMP
_ak_ipfs_cid_v0_check $1
_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 "_ak_data_expand: No 'ipfs' field in $1"
exit 1
fi
DATA="$(_ak_ipfs_cat $1 | jq -r '.ipfs')" #| 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 "_ak_data_expand: No 'detach' field in $1"
exit 1
fi
DETACH="$(_ak_ipfs_cat $1 | jq -r '.detach')" #| 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
_ak_ipfs_cid_v0_check $2
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
if [ ! -f $AK_IPFS_ARTIFACTS/$DETACH ]
then
_ak_log_error "$DETACH was downloaded but not found"
exit 1
fi
ln -s $AK_IPFS_ARTIFACTS/$DETACH $TEMP/$DATA.asc
_ak_log_debug "DATA_SIGNATURE $DETACH 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_debug "DATA $DATA downloaded"
_ak_gpg_verify_signature $TEMP/$DATA.asc $AK_IPFS_ARTIFACTS/$DATA # > /dev/null 2>&1
if [ $? -ne 0 ]
then
_ak_log_error "Error while verifying signature for $DATA"
exit 1
fi
# ln -s $AK_IPFS_ARTIFACTS/$DATA $AK_WORKDIR/ipfs
_ak_log_info "DATA_SIGNATURE $DATA_SIGNATURE verified"
echo -n '"data":"'$1'","'$1'":'$(_ak_ipfs_cat $1|jq -M -c)','
cd
# rm -rf $TEMP
else
_ak_log_error "_ak_data_expand HASH GPG"
exit 1
fi
}
# _ak_zblock_show
# ak-zblock [IPFS CID]
#
# Returns a JSON array representing the chain retrieved.
# Logs messages to $LOGSFILE.
_ak_zblock_show(){
verify=1
if [ ! -z $1 ] && [ -n "$1" ]
then
_ak_ipfs_cid_v0_check $1
entrance="$1"
else
entrance="$(cat $AK_ZLATEST)"
fi
TEMP=$(_ak_make_temp_directory)
cd $TEMP
zblock=$entrance
# Check if $zblock exists as variable
if [ ! -v $zblock ]
then
# Check if it is not our seed cause if it is we skip this part
if [ "$zblock" != "$seed" ]
then
# Reset timestamp since it's introduced later
timestamp=''
# Announce to logs which ZBLOCK is being read at the moment
_ak_log_info "Examining $zblock"
_ak_ipfs_cid_v0_check "$zblock"
# We check if any $zblock at all...
# TODO: Eliminate outputing to file since we store all cat/get'ed
# ipfs hashes on local fs.
_ak_ipfs_cat $zblock > /dev/null 2>&1
if [ $? -ne 0 ]
then
_ak_log_error "ZBLOCK $zblock unreachable"
exit 1
fi
_ak_log_debug "ZBLOCK $zblock within reach"
# ...and if it's JSON formated
cat $AK_IPFS_ARTIFACTS/$zblock | jq > /dev/null 2>&1
if [ $? -ne 0 ]
then
_ak_log_error "ZBLOCK $zblock is not JSON"
cat /dev/null > $AK_IPFS_ARTIFACTS/$zblock > /dev/null 2>&1
exit 1
fi
_ak_log_debug "ZBLOCK $zblock is JSON"
echo -n '{'
# echo -n '"id":"'$counter'",'
echo -n '"zblock":"'$zblock'",'
# Be sure that there are the expected values
# We need 'block' and 'block_signature' inside a 'zblock'
# Exit if any is missing
block="$(cat $AK_IPFS_ARTIFACTS/$zblock | jq -M -r .block)"
if [ "$block" == "null" ]
then
_ak_log_error "ZBLOCK $zblock has no BLOCK"
exit 1
fi
_ak_ipfs_cid_v0_check "$block"
_ak_log_debug "ZBLOCK $zblock has block $block"
block_signature="$(cat $AK_IPFS_ARTIFACTS/$zblock | jq -M -r .block_signature)"
if [ "$block_signature" == "null" ]
then
_ak_log_error "ZBLOCK $zblock has no BLOCK_SIGNATURE"
exit 1
fi
_ak_ipfs_cid_v0_check "$block_signature"
_ak_log_debug "ZBLOCK $zblock contains a BLOCK_SIGNATURE $block_signature"
# Same as above applies to BLOCK and DATA subparts of each ZBLOCK
# BLOCKS
echo -n '"block":"'$block'",'
echo -n '"block_signature":"'$block_signature'",'
_ak_ipfs_cat $block | jq -c -M > /dev/null 2>&1
cat $AK_IPFS_ARTIFACTS/$block | jq -M > /dev/null 2>&1
if [ $? -ne 0 ]
then
_ak_log_error "BLOCK $block READ failed"
exit 1
fi
grep -e 'timestamp' -e 'gpg' -e 'data' -e 'action' -e 'detach' -e 'previous' $AK_IPFS_ARTIFACTS/$block > /dev/null 2>&1
if [ $? -ne 0 ]
then
_ak_log_error "BLOCK $block is NOT a valid block"
exit 1
fi
_ak_log_debug "BLOCK $block is a block"
action="$(cat $AK_IPFS_ARTIFACTS/$block | jq -M -r .action)"
module="$(echo $action | sed -e 's/\// /g' | awk '{ print $1 }')"
_ak_log_debug "DATA is $module module."
command="$(echo $action | sed -e 's/\// /g' | awk '{ print $2 }')"
_ak_log_debug "COMMAND is $command"
timestamp="$(cat $AK_IPFS_ARTIFACTS/$block | jq -M -r .timestamp)"
if [ "$timestamp" != "null" ]
then
echo -n '"timestamp":"'$timestamp'",'
fi
detach="$(cat $AK_IPFS_ARTIFACTS/$block | jq -M -r .detach)"
echo -n '"detach":"'$detach'",'
echo -n '"module":"'$module'",'
echo -n '"action":"'$command'",'
gpg="$(cat $AK_IPFS_ARTIFACTS/$block | jq -M -r .gpg)"
echo -n '"gpg":"'$gpg'",'
if [ $verify -eq 1 ]
then
_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 $block_signature > /dev/null 2>&1
if [ $? -ne 0 ]
then
_ak_log_error "Error while getting BLOCK_SIGNATURE $block_signature for BLOCK $block"
exit 1
fi
ln -s $AK_IPFS_ARTIFACTS/$block_signature $TEMP/$block.asc
_ak_log_info "BLOCK_SIGNATURE $block_signature downloaded"
_ak_ipfs_get $block > /dev/null 2>&1
if [ $? -ne 0 ]
then
_ak_log_error "Could not get $block block"
exit 1
fi
_ak_log_info "BLOCK $block downloaded"
_ak_gpg_verify_signature $TEMP/$block.asc $AK_IPFS_ARTIFACTS/$block > /dev/null 2>&1
if [ $? -ne 0 ]
then
_ak_log_error "Could not verify $block with GPG key $gpg."
exit 1
fi
_ak_log_info "$gpg signature of $block is verified."
fi
data="$(cat $AK_IPFS_ARTIFACTS/$block | jq -M -r .data)"
_ak_ipfs_cid_v0_check "$data"
_ak_data_expand $data $gpg
if [ $? -ne 0 ]
then
_ak_log_error "Failed on data signature verification [data: $data, gpg: $gpg, zblock: $zblock]"
exit 1
fi
# DATA
# Only print to stdout
# _ak_ipfs_cat $data
# touch $AK_DATADIR/$data
# ^ unreasonable?
# Now, since we sourced the BLOCK to our terminal, we can search
# for $previous variable. In case we don't find one, we append one
# and we exit.
previous="$(cat $AK_IPFS_ARTIFACTS/$block | jq -M -r .previous)"
if [ -v $previous ]
then
_ak_log_warning "Block $block has no previous zblock, appending pseudo genesis to exit with 2."
echo -n '"previous":"'$seed'"},{"genesis":"genesis"}]'
_ak_log_info "Reached pseudo-genesis, counted $counter zblocks."
exit 2
# Otherwise, we inform of the sequence
else
#echo "$zblock after $previous"
_ak_log_info "Found a previous block for $zblock: $previous"
echo -n '"previous":"'$previous'"}'
zblock=$previous
fi
# Now check if it is equal to the seed
# which apparently means we reached the seed.
elif [ "$zblock" == "$seed" ]
then
echo -n '{"genesis":"genesis"}]'
_ak_log_info "Reached $seed, counted $counter zblocks."
exit 0
fi
# And finally, if nothing is there exit with error
else
echo "Check not passed... No previous IPFS CID"
exit 1
fi
}
# _ak_zblock_manipulator(){
# # This file describe the structure of the ArchingKaos messages in their basis.
# #
# # As previously thought, we exchange one IPFS hash through whatever means we can.
# #
# # GPG is mentioned as a signing algorithm for encryption, decryption and signing.
# # Let's say we have a file named as `example`
# #
# # We can extend this with calling the encoder and further send the transaction
# #
#
# #FINGERPRINT="CHANGE THIS TO YOUR DEFAULT FINGERPRINT"
# # We acquire the GPG fingerprint by email address
# # The following example finds kaos@kaos.kaos' GPG fingerprint like this
# # FINGERPRINT="$(gpg2 --homedir $AK_GPGHOME --list-keys | grep kaos@kaos.kaos -1 | head -n1 | awk '{print $1}')"
#
# # Below, the usage information
# PROGRAM="$(basename $0)"
# source $AK_LIBDIR/_ak_log
# source $AK_LIBDIR/_ak_ipfs
# source $AK_LIBDIR/_ak_gpg
#
# usage(){
# echo "Usage:"
# echo "$PROGRAM -b block_file | -h block_hash | dunno"
# echo "Creates and publishes a ZBLOCK based on a block and a previous"
# echo "zblock."
# echo ""
# echo "Either -b or -h is needed. If both, -h is used."
# echo ""
# echo "-b block_file Points to a block file that we want to fix."
# echo "-h block_hash If we don't have the block as a file, we can"
# echo " use it's hash to retrieve it and edit it."
# echo "-p previous_hash We refering to a previous hash for a ZBLOCK."
# echo ""
# echo "#TODO:"
# echo "-t timestamp Unix UTC timestamp in seconds."
# echo "-a \"module/action\" Change the action tag. Format: object/verb."
# echo " In sense, \"Add news -> news/add\"."
# echo "-d data In case you want to change the data, you 'll"
# echo " be changing potentially the key of the block"
# echo " and the data signature, otherwise your block"
# echo " will be unverified."
# echo ""
# }
#
# main(){
#
# _ak_log_info "We are doing" $BLOCK_TO_ADD "with content" $PREVIOUS
# # We add it to IPFS
# MESSAGE_HASH=$(_ak_ipfs_add $MESSAGE)
#
# # We create a detached and armor signature of it
# MESSAGE_SIGN_FILE=$MESSAGE".asc"
# _ak_gpg_sign_detached $MESSAGE_SIGN_FILE $MESSAGE
#
# # We add the signature to IPFS
# MESSAGE_SIGNATURE=$(_ak_ipfs_add $MESSAGE_SIGN_FILE)
#
# # We will be using our public key also to put it in the block later
# KEY="gpg.pub"
# _ak_gpg_key_self_export $KEY
# GPG_PUB_KEY=$(_ak_ipfs_add $KEY)
#
# # Acquire last block of information, to chain this one with previous posted
# PREVIOUS=$(_ak_ipfs_files_stat /zlatest | head -n 1)
#
# # We create a block of json like this:
# cat > block <<EOF
# {
# "timestamp":"$(date -u +%s)",
# "action":"$ACTION",
# "data":"$MESSAGE_HASH",
# "detach":"$MESSAGE_SIGNATURE",
# "gpg":"$GPG_PUB_KEY",
# "previous":"$PREVIOUS"
# }
# EOF
# }
# makeZBlock(){
# BLOCK="block"
# BLOCK_SIG=$BLOCK".asc"
# # We have a block now, so we sign it
# _ak_gpg_sign_detached $BLOCK_SIG $BLOCK
#
# # We now add the signature to IPFS
# BLOCK_SIGNATURE=$(_ak_ipfs_add $BLOCK_SIG)
#
# # We also add the block!
# BLOCK=$(_ak_ipfs_add $BLOCK)
#
# # So we now do the think almost again
# cat > zblock << EOF
# {
# "block":"$BLOCK",
# "block_signature":"$BLOCK_SIGNATURE"
# }
# EOF
# ZBL="zblock"
# # and we add it on IPFS
# ZBLOCK=$(_ak_ipfs_add $ZBL)
# echo $ZBLOCK
# }
#
# if [ ! -z $2 ];
# then
# PWD="$(pwd)"
#
# # We ask which BLOCK is goind to be edited
# BLOCK_TO_ADD="$1"
# # We ask for a ZBLOCK or GENESIS to put in the BLOCK
# PREVIOUS="$2"
#
# _ak_ipfs_cat "$BLOCK_TO_ADD"
# if [ $? == 0 ];
# then
# echo "Nice! We found the block"
# _ak_ipfs_get "$BLOCK_TO_ADD"
#
# sed -i.bak -e 's/^.*previous.*$/\"previous\":\"'$PREVIOUS'\"/' $BLOCK_TO_ADD
# cat $BLOCK_TO_ADD | jq -M
#
# exit 2
# else
# echo "Too bad, it seems the block is not there"
# exit 1
# fi
#
# # cat $PWD/zblock | jq -M
# # Optional or extending with
# # python send_as_ak_tx $ZBLOCK
# # or for "offline" use
# echo $ZBLOCK > $ZLATEST
# _ak_ipfs_name_publish --key=zchain $ZBLOCK > /dev/null 2>&1
# _ak_ipfs_files_mkdir /zarchive > /dev/null 2>&1
# _ak_ipfs_files_cp /zlatest /zarchive/$(date -u +%s)-$(_ak_ipfs_files_stat /zlatest | head -n 1) > /dev/null 2>&1
# _ak_ipfs_files_rm /zlatest > /dev/null 2>&1
# _ak_ipfs_files_cp /ipfs/$ZBLOCK /zlatest > /dev/null 2>&1
# else
# usage
# exit 0
# fi
#
# }
_ak_zblock_gen_html(){
time_started=$(date -u +%s.%N)
ss=$(echo $time_started | cut -d '.' -f 1)
nss=$(echo $time_started | cut -d '.' -f 2)
# Check if there are enough arguments
if [ $# -lt 1 ]
then
_ak_log_error "Not enough arguments provided"
_ak_help
exit 1
fi
if [ -n "$1" ]
then
TEST="$(echo -n "$1" | grep -v '^Qm[A-Za-z0-9]\{44\}$')"
if [ -n "$TEST" ]
then
echo not ok
exit 1
fi
fi
arg="$(_ak_make_temp_file)"
_ak_zblock_show "$1" | jq > $arg
_ak_generate_html_header > zblock-$1.html
_ak_generate_html_zblock $arg >> zblock-$1.html
time_ended=$(date -u +%s.%N)
se=$(echo $time_ended | cut -d '.' -f 1)
nse=$(echo $time_ended | cut -d '.' -f 2)
printf ' <hr>\n' >> zblock-$1.html
printf ' <footer>Generated by %s on %s in %s.' "$PROGRAM" "$(datehuman)" "$(( $se - $ss ))">> zblock-$1.html
if [ $nse -lt $nss ]
then
printf '%s seconds</footer>\n' "$(( 1$nse - $nss ))" >> zblock-$1.html
else
printf '%s seconds</footer>' "$(( $nse - $(echo -n $nss|sed 's/^0*//') ))" >> zblock-$1.html
fi
printf '</body>' >> zblock-$1.html
printf '</html>' >> zblock-$1.html
rm $arg
}
_ak_zblock_cache(){
if [ ! -d "$AK_CACHEDIR/fzblocks" ]
then
mkdir $AK_CACHEDIR/fzblocks
fi
FZBLOCKSDIR="$AK_CACHEDIR/fzblocks"
if [ ! -z "$1" ] && [ -n "$1" ]
then
if [ -f "$AK_ZBLOCKDIR/$1" ] && [ "$(du -b $AK_ZBLOCKDIR/$1 | awk '{ print $1 }')" != "0" ]
then
# if [ "$(sha512sum $AK_ZBLOCKDIR/$1 | awk '{ print $1 }')" == "$(_ak_zblock_show $1 | sha512sum | awk '{ print $1 }')" ]
if [ ! -f $FZBLOCKSDIR/$1 ]
then
_ak_log_info "No cache found. Caching..."
_ak_zblock_show "$1" > $FZBLOCKSDIR/$1
fi
if [ ! -f $FZBLOCKSDIR/$1 ]
then
_ak_log_info "Caching failed..."
exit 1
fi
cat $FZBLOCKSDIR/$1
else
_ak_zblock_show "$1" > $FZBLOCKSDIR/$1
if [ $? -ne "0" ]
then
_ak_log_error "_ak_zblock_show failed..."
exit 2
fi
_ak_log_error "Could not find zblock $1..."
exit 1
fi
exit 0
else
_ak_log_error "No arguments..."
exit 1
fi
}
_ak_zblock_pack(){
if [ ! -z $2 ];
then
MESSAGE="$2"
ACTION="$1"
if [ -f "$MESSAGE" ]; then
# We check firstly if the encapsulated value of the "ipfs" key has already
# appeared in the zchain.
TO_CHECK="$(cat $MESSAGE | jq | grep ipfs | awk '{print $2}' | sed -e 's/"//g;s/,//g')"
_ak_zchain_crawl | jq | grep ipfs | awk '{print $2}' | sed -e 's/"//g;s/,//g' | sort | uniq > tempisalreadythere
while IFS="" read -r p || [ -n "$p" ]
do
if [ "$p" == "$TO_CHECK" ]
then
_ak_log_error "Value $TO_CHECK already mentioned on the zchain"
exit 1
fi
done < tempisalreadythere
rm tempisalreadythere
_ak_log_info "We are doing $ACTION with content $MESSAGE"
# We add it to IPFS
MESSAGE_HASH=$(_ak_ipfs_add $MESSAGE)
# We create a detached and armor signature of it
MESSAGE_SIGN_FILE=$MESSAGE".asc"
_ak_gpg_sign_detached $MESSAGE_SIGN_FILE $MESSAGE
# We add the signature to IPFS
MESSAGE_SIGNATURE=$(_ak_ipfs_add $MESSAGE_SIGN_FILE)
# We will be using our public key also to put it in the block later
KEY="gpg.pub"
_ak_gpg_key_self_export $KEY
GPG_PUB_KEY=$(_ak_ipfs_add $KEY)
# Acquire last block of information, to chain this one with previous posted
PREVIOUS=$(_ak_ipfs_files_stat /zlatest | head -n 1)
# We create a block of json like this:
printf '{"timestamp":"%s","action":"%s","data":"%s","detach":"%s","gpg":"%s","previous":"%s"}' $(date -u +%s) $ACTION $MESSAGE_HASH $MESSAGE_SIGNATURE $GPG_PUB_KEY $PREVIOUS > block
BLOCK="block"
BLOCK_SIG=$BLOCK".asc"
# We have a block now, so we sign it
_ak_gpg_sign_detached $BLOCK_SIG $BLOCK
# We now add the signature to IPFS
BLOCK_SIGNATURE=$(_ak_ipfs_add $BLOCK_SIG)
# We also add the block!
BLOCK=$(_ak_ipfs_add $BLOCK)
# So we now do the think almost again
printf '{"block":"%s","block_signature":"%s"}' $BLOCK $BLOCK_SIGNATURE > zblock
ZBL="zblock"
# and we add it on IPFS
ZBLOCK=$(_ak_ipfs_add $ZBL)
echo $ZBLOCK
else
_ak_log_error "File does not exist. Aborting..."
exit 1
fi
# cat $PWD/zblock | jq -M
# Optional or extending with
# python send_as_ak_tx $ZBLOCK
# or for "offline" use
echo $ZBLOCK > $AK_ZLATEST
_ak_ipfs_name_publish --key=zchain $ZBLOCK > /dev/null 2>&1
if [ $? -ne 0 ]
then
_ak_log_error "Failed publishing ZBLOCK: $ZBLOCK"
exit 1
fi
_ak_ipfs_files_ls /zarchive > /dev/null 2>&1
if [ $? -ne 0 ]
then
_ak_log_warning "/zarchive does not exist"
_ak_ipfs_files_mkdir /zarchive > /dev/null 2>&1
if [ $? -ne 0 ]
then
_ak_log_error "Could not create /zarchive directory. Aborting."
exit 1
fi
fi
_ak_ipfs_files_cp /zlatest /zarchive/$(date -u +%s)-$(_ak_ipfs_files_stat /zlatest | head -n 1) > /dev/null 2>&1
if [ $? -ne 0 ]
then
_ak_log_error "Could not back up previous /zlatest"
exit 1
fi
_ak_ipfs_files_rm /zlatest > /dev/null 2>&1
if [ $? -ne 0 ]
then
_ak_log_error "Could not remove previous /zlatest"
exit 1
fi
_ak_ipfs_files_cp /ipfs/$ZBLOCK /zlatest > /dev/null 2>&1
if [ $? -ne 0 ]
then
_ak_log_error "Could not copy $ZBLOCK to /zlatest"
exit 1
fi
_ak_config_publish
if [ $? -ne 0 ]
then
_ak_log_error "Could not publish new configuration"
exit 1
fi
else
_ak_log_error "Not enough arguments"
exit 1
fi
}
_ak_zblock_announce(){
if [ ! -z "$1" ] && [ -n "$1" ]
then
curl \
--connect-timeout 3 \
--header 'Content-Type: application/json' \
--data-raw '{"zblock":"'$1'"}' \
"http://127.0.0.1:8610/v0/announce/zblock" \
2>/dev/null | jq -M -c > /dev/null
if [ $? -ne 0 ]
then
_ak_log_error "zblock $zblock announcement failed"
else
_ak_log_info "zblock $zblock announced"
fi
else
curl \
--connect-timeout 3 \
--header 'Content-Type: application/json' \
--data-raw '{"zblock":"'$(ak-get-zlatest)'"}' \
"http://127.0.0.1:8610/v0/announce/zblock" \
2>/dev/null | jq -M -c > /dev/null
if [ $? -ne 0 ]
then
_ak_log_error "zblock $zblock announcement failed"
else
_ak_log_info "zblock $zblock announced"
fi
fi
}
|