733873e6b4f26ac934123e1a29b450396c19030a
[APKPM.git] / web_ui.pl
1 #!/usr/bin/env perl
2
3 use Mojolicious::Lite;
4 use Redis;
5
6 use lib '/srv/MojoX-Gearman/lib';
7 use MojoX::Gearman;
8
9 use Data::Dump qw(dump);
10
11 plugin 'tag_helpers';
12 # Documentation browser under "/perldoc" (this plugin requires Perl 5.10)
13 plugin 'pod_renderer';
14
15 app->secret('apkpm');
16
17 get '/' => sub {
18         my $self = shift;
19         $self->render('index');
20 };
21
22 get '/ping_http' => sub {
23         my $self = shift;
24         my $gearman = $self->client;
25         my $pong = $gearman->post( "http://localhost:4780/ping" => { Connection => 'close' } => "some data" )->res->body;
26         warn "ping = $pong";
27         $self->render( 'ping', pong => $pong );
28 };
29
30 my $gearman = MojoX::Gearman->new; #( ioloop => Mojo::IOLoop->singleton );
31 $gearman->server( $ENV{GEARMAN} || 'localhost:4730' );
32
33 get '/ping_g' => sub {
34         my $self = shift;
35         my $pong = $gearman->req( 'SUBMIT_JOB', 'ping', '', "some data 2" );
36         warn "ping = $pong";
37         $self->render( 'ping', pong => $pong );
38 };
39
40 sub _render_jsonp {
41         my ( $self, $json ) = @_;
42         #my $data = $self->render( json => $json, partial => 1 );
43         my $data = $json;
44         if ( my $callback = $self->param('callback') ) {
45                 $data = "$callback($data)";
46         }
47         $self->render( data => $data, format => 'js' );
48 }
49
50
51 get '/g/:call/:args' => [ args => qr/.*/ ] => sub {
52         my $self = shift;
53         my $ret = $gearman->req( 'SUBMIT_JOB', $self->param('call'), '', $self->param('args') );
54         warn $self->param('call'), " = ", dump($ret), "\n";
55         die "no result for ", $self->param('call'), ' args: ', $self->param('args') unless defined $ret;
56         _render_jsonp( $self, $ret );
57 };
58
59 get '/_g/status' => sub {
60         my $self = shift;
61
62         my $ret = $gearman->req( 'TEXT' => 'status' );
63         warn "# status:\n$ret";
64
65         my @c = qw(function total running available);
66
67         my $status;
68         foreach my $l ( split(/\n/,$ret) ) {
69                 my @v = split(/\t/, $l);
70                 my $h;
71                 $h->{$c[$_]} = $v[$_] foreach 0 .. $#v;
72                 push @$status, $h;
73         }
74         warn "## ", dump $status;
75         _render_jsonp( $self, Mojo::JSON->new->encode({ status => $status }) );
76 };
77
78 get '/gnuplot' => sub {
79         my $self = shift;
80
81         my $sql = $self->param('sql');
82         return $self->render('gnuplot', img => '', gnuplot => '') unless $sql;
83
84         my $ret = $gearman->req( 'SUBMIT_JOB', 'Store_sql', '', $sql );
85         die "no result for $sql" unless $ret;
86
87         $ret = Mojo::JSON->new->decode( $ret );
88
89         return $self->render('gnuplot', sql => $sql, img => '', gnuplot => $ret->{error} )
90                 if exists $ret->{error};
91
92         my $dir = $self->app->home->rel_dir('public');
93
94         my $name = $sql;
95         $name =~ s/\W+//gs;
96         $name .= '.png';
97
98 warn "# $sql -> $name";
99
100         mkdir "$dir/gnuplot" unless -e "$dir/gnuplot";
101         my $png = "$dir/gnuplot/$name"; # FIXME
102
103         my @c = @{ $ret->{columns} };
104         warn "first column not timestamp" unless $c[0] eq 'timestamp';
105
106         my $gnuplot = qq|
107 set terminal png
108 set output '$png'
109
110 set xdata time
111 set timefmt "%Y-%m-%dT%H:%M:%S"
112 set format x "%H:%M\\n%d"
113
114 |;
115
116         my $plot = 'plot ';
117         my $with = $self->param('with') || 'dots';
118         foreach my $i ( 1 .. $#{ $ret->{rows}->[0] } ) {
119                 $gnuplot .= $plot; $plot = ',';
120                 $gnuplot .= qq| '-' using 1:2 with $with title "$c[$i]" |;
121         }
122         $gnuplot .= "\n";
123
124         foreach my $i ( 1 .. $#{ $ret->{rows}->[0] } ) {
125
126                 foreach my $row ( @{ $ret->{rows} } ) {
127                         my $date = $row->[0];
128                         $date =~ s/ /T/g;
129                         $date =~ s/\.\d+//;
130                         $gnuplot .= join(" ", $date, $row->[$i])."\n";
131                 }
132                 $gnuplot .= "e\n";
133         }
134
135         open(my $fd, '|-', 'gnuplot') || die "gnuplot: $!";
136         print $fd $gnuplot;
137         close($fd);
138
139         $self->render('gnuplot', sql => $sql, img => "/gnuplot/$name", gnuplot => $gnuplot);
140 };
141
142 get '/_redis' => sub {
143         my $self = shift;
144
145         my $redis = Redis->new;
146
147         my $status;
148         foreach my $k ( $redis->keys('poll.*') ) {
149                 $status->{$k} = eval { $redis->scard($k) } || $redis->get($k);
150         }
151
152         warn "## ", dump $status;
153         _render_jsonp( $self, Mojo::JSON->new->encode({ status => $status }) );
154 };
155
156 app->start;
157 __DATA__
158
159 @@ index.html.ep
160 % layout 'default';
161 % title 'Gearman demo';
162
163 <ul>
164 <li><a href="/gearman.html#ping/127.0.0.1">Gearman</a> web interface
165 <li><%= link_to 'CRM' => 'CRM.html' %> search with tabular output
166 </ul>
167
168 Gnuplot graphs:
169
170 <ul>
171 <li><a href="/gnuplot?sql=select start,ping_error,adsl_ok from poll">poll stats</a>
172 <li><a href="/gnuplot?sql=select timestamp,snrtx,attntx,pwrtx,pwrrx,attnrx,snrrx from adsl where username='test36zg@h1snc'">adsl stat for single user</a>
173 <li><a href="/gnuplot?sql=select timestamp,rtt from ping where ip << inet '10.17/16' order by timestamp desc limit 1000">ttl from 10.17 network</a>
174 </ul>
175
176 Low-level API tests:
177
178 <%= link_to 'HTTP ping' => 'ping_http' %>
179 <%= link_to 'Gearman ping' => 'ping_g' %>
180
181 @@ ping.html.ep
182 % layout 'default';
183 pong: <tt><%= $pong %>
184
185 @@ gnuplot.html.ep
186 % layout 'default';
187 <%= form_for gnuplot => begin %>
188  <%= text_area 'sql', cols => 80, rows => 5 %>
189  <br>with <%= select_field with => [qw(dots points steps lines)], 'dots' %>
190  <%= submit_button 'execute' %>
191 <% end %>
192 % if ( $img ) {
193 <img src="<%= $img %>">
194 % }
195 <pre><%= $gnuplot %></pre>
196
197 @@ layouts/default.html.ep
198 <!doctype html><html>
199   <head><title><%= title %></title></head>
200   <body><%= content %></body>
201 </html>