aboutsummaryrefslogtreecommitdiffstats
path: root/web/nms-public.gathering.org/old/switches-json.pl
blob: 74f4e5fe5f4995b9aa467f47f8ac6e3a455343bf (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
34
35
36
37
38
39
40
41
42
43
#! /usr/bin/perl
use CGI;
use GD;
use DBI;
use JSON::XS;
use lib '../../include';
use nms;
my $cgi = CGI->new;

my $dbh = nms::db_connect();
my %json = ();

my $q = $dbh->prepare('select switch,sysname,placement,zorder from switches natural join placements WHERE sysname != \'e3-2\''); # FULHACK to remove e3-2 from the maps
# my $q = $dbh->prepare('select switch,sysname,placement,zorder from switches natural join placements'); # FULHACK to remove e3-2 from the maps
my $q2 = $dbh->prepare('select distinct on (switch) switch,temp,time,sysname from switch_temp natural join switches order by switch,time desc');
$q->execute();
while (my $ref = $q->fetchrow_hashref()) {
	$ref->{'placement'} =~ /\((-?\d+),(-?\d+)\),\((-?\d+),(-?\d+)\)/;
	my ($x1, $y1, $x2, $y2) = ($1, $2, $3, $4);
	my $sysname = $ref->{'sysname'};
	$json{'switches'}{$ref->{'switch'}} = {
		sysname => $sysname,
		x => $x2,
		y => $y2,
		width => $x1 - $x2,
		height => $y1 - $y2,
		zorder => $ref->{'zorder'}
	};
}

$q2->execute();
while (my $ref = $q2->fetchrow_hashref()) {
	$json{'switches'}{$ref->{'switch'}}{'temp'} = $ref->{'temp'};
	$json{'switches'}{$ref->{'switch'}}{'time'} = $ref->{'time'};
}
my $q = $dbh->prepare('select linknet,switch1,switch2 from linknets');
$q->execute();
while (my $ref = $q->fetchrow_hashref()) {
	push @{$json{'linknets'}}, $ref;
}

print $cgi->header(-type=>'text/json; charset=utf-8');
print JSON::XS::encode_json(\%json);