Merge branch 'master' of gnunet.org:gnunet
[oweals/gnunet.git] / contrib / gnunet-gns-import.sh
1 #!/bin/sh
2 # This shell-script will import some GNS authorities into your GNS
3 # namestore.
4
5 LOCATION=$(which gnunet-config)
6 if [ -z $LOCATION ]
7 then
8   LOCATION="gnunet-config"
9 fi
10 $LOCATION --version 1> /dev/null
11 if test $? != 0
12 then
13         echo "GNUnet command line tools not found, check environmental variables PATH and GNUNET_PREFIX"
14         exit 1
15 fi
16
17 gnunet-arm -I 1> /dev/null 2>/dev/null
18 if [ ! $? -eq 0 ]
19 then
20         echo "GNUnet is not running, please start GNUnet before running import"
21         exit 1
22 fi
23
24 options=''
25
26 while getopts "c:" opt; do
27   case $opt in
28     c)
29       options="$options -c $OPTARG"
30       ;;
31     \?)
32       echo "Invalid option: -$OPTARG" >&2
33       exit 1
34       ;;
35     :)
36       echo "Option -$OPTARG requires an argument." >&2
37       exit 1
38       ;;
39   esac
40 done
41
42 # By default, we create two GNS zones:
43 gnunet-identity -C master-zone $options
44 gnunet-identity -C private-zone $options
45
46 # Additionally, we create the FS SKS zone
47 gnunet-identity -C sks-zone $options
48
49 #### Integrate those with the respective subsystems ####
50
51 # Zone for shortening by gns-proxy,
52 # (remove this entry to disable shortening)
53 gnunet-identity -e short-zone -s gns-short $options
54
55 # Default zone for 'gnunet-gns' lookups
56 gnunet-identity -e master-zone -s gns-master $options
57
58 # Default zone for 'gnunet-namestore' operations
59 gnunet-identity -e master-zone -s namestore $options
60
61 # Use master-zone for GNS proxy lookups
62 gnunet-identity -e master-zone -s gns-proxy $options
63
64 # Use master-zone for intercepted DNS queries
65 # (remove this entry to disable DNS interception by GNS service)
66 gnunet-identity -e master-zone -s gns-intercept $options
67
68 # Use master-zone for DNS2GNS proxy.
69 gnunet-identity -e master-zone -s dns2gns $options
70
71 # 'gns-private' is not yet used (!)
72 gnunet-identity -e private-zone -s gns-private $options
73
74 # 'fs-sks' default ego for gnunet-fs-gtk namespace operations
75 gnunet-identity -e sks-zone -s fs-sks $options
76
77 # Get the public keys as strings (so we can create PKEY records)
78 MASTER=`gnunet-identity -d $options | grep master-zone | awk '{print $3}'`
79 SHORT=`gnunet-identity -d $options | grep short-zone | awk '{print $3}'`
80 PRIVATE=`gnunet-identity -d $options | grep private-zone | awk '{print $3}'`
81 PIN=DWJASSPE33MRN8T6Q0PENRNBTQY0E6ZYGTRCDP5DGPBF2CRJMJEG
82
83 # Link short and private zones into master zone
84 if (gnunet-namestore -z master-zone -D -n private -t PKEY | grep "PKEY: $PRIVATE" 1>/dev/null)
85 then
86   echo "Private zone link exists, skipping"
87 else
88   gnunet-namestore -z master-zone -a -e never -n private -p -t PKEY -V $PRIVATE $options
89 fi
90 if (gnunet-namestore -z master-zone -D -n short -t PKEY | grep "PKEY: $SHORT" 1>/dev/null)
91 then
92   echo "Shorten zone link exists, skipping"
93 else
94   gnunet-namestore -z master-zone -a -e never -n short -p -t PKEY -V $SHORT $options
95 fi
96
97 # Link GNUnet's FCFS zone into master zone under label "pin"
98 if (gnunet-namestore -z master-zone -D -n pin -t PKEY | grep "PKEY: $PIN" 1>/dev/null)
99 then
100   echo "Pin zone link exists, skipping"
101 else
102   gnunet-namestore -z master-zone -a -e never -n pin -p -t PKEY -V $PIN $options
103 fi