More API function tests...
[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 three GNS zones:
43 gnunet-identity -C master-zone $options
44 gnunet-identity -C short-zone $options
45 gnunet-identity -C private-zone $options
46
47 # Additionally, we create the FS SKS zone
48 gnunet-identity -C sks-zone $options
49
50 #### Integrate those with the respective subsystems ####
51
52 # Zone for shortening by gns-proxy,
53 # (remove this entry to disable shortening)
54 gnunet-identity -e short-zone -s gns-short $options
55
56 # Default zone for 'gnunet-gns' lookups
57 gnunet-identity -e master-zone -s gns-master $options
58
59 # Default zone for 'gnunet-namestore' operations
60 gnunet-identity -e master-zone -s namestore $options
61
62 # Use master-zone for GNS proxy lookups
63 gnunet-identity -e master-zone -s gns-proxy $options
64
65 # Use master-zone for intercepted DNS queries
66 # (remove this entry to disable DNS interception by GNS service)
67 gnunet-identity -e master-zone -s gns-intercept $options
68
69 # 'gns-private' is not yet used (!)
70 gnunet-identity -e private-zone -s gns-private $options
71
72 # 'fs-sks' default ego for gnunet-fs-gtk namespace operations
73 gnunet-identity -e sks-zone -s fs-sks $options
74
75 # Get the public keys as strings (so we can create PKEY records)
76 MASTER=`gnunet-identity -d $options | grep master-zone | awk '{print $3}'`
77 SHORT=`gnunet-identity -d $options | grep short-zone | awk '{print $3}'`
78 PRIVATE=`gnunet-identity -d $options | grep private-zone | awk '{print $3}'`
79 PIN=DWJASSPE33MRN8T6Q0PENRNBTQY0E6ZYGTRCDP5DGPBF2CRJMJEG
80
81 # Link short and private zones into master zone
82 if (gnunet-namestore -z master-zone -D -n private -t PKEY | grep "PKEY: $PRIVATE" 1>/dev/null)
83 then
84   echo "Private zone link exists, skipping"
85 else
86   gnunet-namestore -z master-zone -a -e never -n private -p -t PKEY -V $PRIVATE $options
87 fi
88 if (gnunet-namestore -z master-zone -D -n short -t PKEY | grep "PKEY: $SHORT" 1>/dev/null)
89 then
90   echo "Shorten zone link exists, skipping"
91 else
92   gnunet-namestore -z master-zone -a -e never -n short -p -t PKEY -V $SHORT $options
93 fi
94
95 # Link GNUnet's FCFS zone into master zone under label "pin"
96 if (gnunet-namestore -z master-zone -D -n pin -t PKEY | grep "PKEY: $PIN" 1>/dev/null)
97 then
98   echo "Pin zone link exists, skipping"
99 else
100   gnunet-namestore -z master-zone -a -e never -n pin -p -t PKEY -V $PIN $options
101 fi