X-Git-Url: https://git.openstreetmap.org./dns.git/blobdiff_plain/31e52e8d9f285ff10977199ee8dfd7ee8d6ad62d..737e782ae6f889765e6ce9d4257f01d12a3019a5:/bin/mkgeo?ds=sidebyside diff --git a/bin/mkgeo b/bin/mkgeo index 6868af0..ce0ff2f 100755 --- a/bin/mkgeo +++ b/bin/mkgeo @@ -204,8 +204,11 @@ while (grep { !exists($_->{cluster}) } values %$origins) my @json; # Open output files -my $zonefile = IO::File->new("> data/${zone}") || die "$!"; -my $jsonfile = IO::File->new("> json/${zone}.json") || die "$!"; +my $zonefile = IO::File->new("> include/${zone}.js") || die "$!"; +my $jsonfile = IO::File->new("> json/${zone}.openstreetmap.org.json") || die "$!"; + +# Output headers +$zonefile->print("var \U${zone}\E_RECORDS = [\n"); # Output details for each country foreach my $origin (sort { $a->{name} cmp $b->{name} } values %$origins) @@ -225,8 +228,10 @@ foreach my $origin (sort { $a->{name} cmp $b->{name} } values %$origins) $clon = $clon + 360; } - $zonefile->print("# $origin->{name}\n"); - $zonefile->print("C\L$origin->{code}\E.${zone}:$cluster->{name}.${zone}:600\n"); + if (!defined($gdnsname)) + { + $zonefile->print(" CNAME(\"\L$origin->{code}\E.${zone}\", \"$cluster->{name}.${zone}.openstreetmap.org.\", TTL(\"10m\")),\n"); + } push @json, { type => "Feature", @@ -244,45 +249,48 @@ foreach my $origin (sort { $a->{name} cmp $b->{name} } values %$origins) $targetorigins->{$cluster->{name}}->{bandwidth} += $origin->{bandwidth}; } -# Header for default records -$zonefile->print("# Unknown origins\n"); - -# Output default records for IPs that can't be mapped to a country -foreach my $cluster (sort { $a->{name} cmp $b->{name} } values %$clusters) +# Skip default records if we don't need them +if (!defined($gdnsname)) { - my $name = $cluster->{name}; - - if (my $default = $cluster->{default}) - { - output_server($zonefile, "${default}.${zone}", $cluster); - } - elsif (exists($cluster->{default})) + # Output default records for IPs that can't be mapped to a country + foreach my $cluster (sort { $a->{name} cmp $b->{name} } values %$clusters) { - output_server($zonefile, "${zone}", $cluster); + my $name = $cluster->{name}; + + if (my $default = $cluster->{default}) + { + output_server($zonefile, "${default}.${zone}", $cluster); + } + elsif (exists($cluster->{default})) + { + output_server($zonefile, "${zone}", $cluster); + } } } -# Header for underlying servers -$zonefile->print("# Servers\n"); - # Output A records for each cluster foreach my $cluster (sort { $a->{name} cmp $b->{name} } values %$clusters) { my $name = $cluster->{name}; - output_server($zonefile, "${name}.${zone}", $cluster); - if (@{$cluster->{servers}} > 1) { output_server($zonefile, "${name}-%02d.${zone}", $cluster); } + else + { + output_server($zonefile, "${name}.${zone}", $cluster); + } } # Output the GeoJSON text $jsonfile->print(encode_json(\@json)); +# Output footers +$zonefile->print("];\n"); + # Close the output files -$jsonfile->close(); +$zonefile->close(); $zonefile->close(); # Output gdnsd configuration @@ -294,7 +302,7 @@ if (defined($gdnsname)) my $continent = ""; $gdnsmapfile->print("${gdnsname} => {\n"); - $gdnsmapfile->print(" geoip2_db => /var/lib/GeoIP/GeoLite2-Country.mmdb\n"); + $gdnsmapfile->print(" geoip2_db => /usr/share/GeoIP/GeoLite2-Country.mmdb\n"); $gdnsmapfile->print(" datacenters => [" . join(",", sort(keys(%$clusters))) . "]\n"); $gdnsmapfile->print(" map => {\n"); $gdnsmapfile->print(" default => [" . join(",", sort(map { $_->{name} } grep { $_->{default} } values(%$clusters))) . "]\n"); @@ -331,21 +339,28 @@ if (defined($gdnsname)) { my $name = $cluster->{name}; - $gdnsresourcefile->print(" ${name} => ${name}.${zone}.\n"); - if (@{$cluster->{servers}} > 1) { $gdnsweightedfile->print("${name} => {\n"); while (my($index,$server) = each @{$cluster->{servers}}) { - my $number = sprintf("%02d", $index + 1); - my $bandwidth = $server->{bandwidth}; - - $gdnsweightedfile->print(" ${name}-${number} = [ ${name}-${number}.${zone}., ${bandwidth} ]\n"); + if ($server->{status} eq "up") + { + my $number = sprintf("%02d", $index + 1); + my $bandwidth = $server->{bandwidth}; + + $gdnsweightedfile->print(" ${name}-${number} = [ ${name}-${number}.${zone}.openstreetmap.org., ${bandwidth} ]\n"); + } } $gdnsweightedfile->print("}\n"); + + $gdnsresourcefile->print(" ${name} => %weighted!${name}\n"); + } + else + { + $gdnsresourcefile->print(" ${name} => ${name}.${zone}.openstreetmap.org.\n"); } } @@ -517,11 +532,11 @@ sub output_server { if ($server->{status} eq "up") { - $zonefile->printf("+${name}:$server->{ipv4}:600\n", $index + 1); + $zonefile->printf(" A(\"${name}\", \"$server->{ipv4}\", TTL(\"10m\")),\n", $index + 1); if ($server->{ipv6}) { -# $zonefile->printf("3${name}:$server->{ipv6}:600\n", $index + 1); + $zonefile->printf(" AAAA(\"${name}\", \"$server->{ipv6}\", TTL(\"10m\")),\n", $index + 1); } } }