aboutsummaryrefslogtreecommitdiff
path: root/bin/ak-cjdns-scanner
blob: 81c3814bb4cceacc467ea8ae3e17234c84fc55d7 (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
#!/bin/bash
#
# Needs CJDNS tools in your PATH
# 
# Ref: https://github.com/cjdelisle/cjdns
#
counter=0
printf '[' > walk.aknet
dumpLinks \
    | cut -d ' ' -f 2,4 \
    | sed 's/ /\n/g' \
    | sort \
    | uniq \
    | while read -r ip || [ -n "$ip" ]
do
    node_info="`curl \
        -A 'akd/0.1.0; https://github.com/arching-kaos' \
        --connect-timeout 3 \
        "http://[$(publictoip6 $ip)]:8610/v0/node_info" 2>/dev/null`"
    if [ "$?" == "0" ]
    then
        if [ "$counter" -ne "0" ]
        then
            printf ',' >> walk.aknet
        fi
        printf '{"cjdns":{"public_key":"%s","ip":"%s"},"node_info":%s}' \
            "$ip" "`publictoip6 $ip`" "$node_info" >> walk.aknet
        counter="`expr $counter + 1`"
    fi
done
printf ']' >> walk.aknet

mv walk.aknet $AK_ZPEERSFILE