/[sql-web-session]/index.cgi
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /index.cgi

Parent Directory Parent Directory | Revision Log Revision Log


Revision 25 - (show annotations)
Sat Apr 18 23:35:57 2009 UTC (14 years, 11 months ago) by dpavlin
File size: 5750 byte(s)
lookup is now scrollable and respects query limit

1 #!/usr/bin/perl
2
3 use warnings;
4 use strict;
5
6 use CGI qw/:standard/;
7 use CGI::Carp qw/fatalsToBrowser/; # FIXME remove for production
8 use DBI;
9 use Data::Dump qw/dump/;
10 use Time::HiRes qw/time/;
11
12 print qq{Content-type: text/html\r\n\r\n};
13
14 our $dsn = 'DBI:Pg:dbname=syslog';
15 our $user = 'dpavlin';
16 our $table = 'log';
17 our $limit = 1000;
18
19 our $group_by_join = {
20 feed_id => [ 'feeds', 'id', 'title', 'link', 'timestamp' ],
21 };
22
23 require 'config.pl' if -e 'config.pl';
24
25 $table = param('table') || $table;
26 my @columns = param('columns');
27 @columns = ('*') unless @columns;
28 $limit = param('limit') || $limit;
29 my $offset = param('offset') || 0;
30
31 my @where_parts = param('where_parts');
32
33 my $dbh = DBI->connect( $dsn, $user, '', { RaiseError => 1 } ) || die $DBI::errstr;
34
35 sub where_from_parts {
36 return unless @_;
37 my @where_parts = @_;
38
39 warn "# where_from_parts ",dump( @where_parts );
40
41 my @w;
42 my @data;
43 foreach ( @where_parts ) {
44 my ( $w,$v ) = split(/\?\t/,$_,2);
45 push @w, "$w ?";
46 push @data, $v;
47 }
48 unshift @data, ' where ' . join(' and ', @w);
49 warn "# ",dump( @data );
50 return @data;
51 }
52
53 if ( my $group_by = param('lookup_col') ) {
54
55 my @cols = ( $group_by, "count($group_by)" );
56 my @group_by = ( $group_by );
57
58 my $join = '';
59 my @join = @{ $group_by_join->{$group_by} } if defined $group_by_join->{$group_by};
60 if ( @join ) {
61 warn "## join ",dump( @join );
62 my $join_table = shift @join;
63 my $col = shift @join;
64 $join = qq{ join $join_table on $table.$group_by = $join_table.$col };
65 my @join_cols = map { $join_table . '.' . $_ } @join;
66 push @cols, @join_cols;
67 push @group_by, @join_cols;
68 }
69
70 my @data = where_from_parts( @where_parts );
71
72 my $sql = join("\n",
73 'select', join(',', @cols), qq{
74 from $table
75 $join
76 }, shift @data, # extract where
77 'group by', join(',', @group_by), qq{
78 order by count($group_by) desc
79 limit $limit
80 }
81 );
82
83 warn "# join SQL: $sql\n";
84
85 my $t = time();
86 my $sth = $dbh->prepare( $sql );
87 $sth->execute( @data );
88 $t = time() - $t;
89 print qq|$t<table><tr><th>|, join(qq|</th><th>|, @cols), qq|</th></tr>|;
90 while ( my @row = $sth->fetchrow_array ) {
91 my $n = shift @row;
92 $n = 'NULL' unless defined $n;
93 print qq|<tr><td><a href="#">$n</a></td><td>|, join(qq|</td><td>|, @row), qq|</td></tr>|;
94 }
95 print qq|</table>|;
96 print qq|<code>$sql</code>|;
97 exit;
98 }
99
100 print q|
101
102 <html>
103 <head>
104 <title>SQL Web Session</title>
105 <link rel="stylesheet" type="text/css" href="style.css">
106 <!-- http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js -->
107 <script type="text/javascript" src="jquery-1.3.2.min.js"></script>
108
109 <script type="text/javascript" src="sql-editor.js"></script>
110
111 </head>
112 <body>
113 |;
114
115 my $group_by = param('group_by');
116
117 if ( param('where_operator') && length( param('where_value') ) > 0 ) {
118 my $where_value = param('where_value');
119 push @where_parts, param('where_column') . ' ' . param('where_operator') . " ?\t$where_value";
120 param('where_value','');
121 }
122
123
124 my $c = join(',', @columns);
125
126 my $sql = "select $c from $table";
127 my @data;
128
129 my @where = where_from_parts( @where_parts );
130 $sql .= shift @where;
131 push @data, @where;
132
133 $sql .= ' group by ' . $group_by if $group_by;
134 $sql .= ' order by ' . param('order_by') if param('order_by');
135 $sql .= ' limit ? offset ?';
136
137 push @data, ( $limit, $offset );
138
139 my $sql_html = $sql;
140 {
141 my @d = @data;
142 $sql_html =~ s{\?}{dump( shift @d )}ge;
143 }
144 print qq|<code id="status">$sql_html<br>\n\r\n\r|;
145
146 my $t = time();
147
148 my $sth = $dbh->prepare( $sql );
149
150 $sth->execute( @data );
151
152 $t = time() - $t;
153
154 print $sth->rows, qq| rows in $t s</code>|;
155
156 @columns = @{ $sth->{NAME} } if $#columns == 0 && $columns[0] eq '*';
157
158 print
159 start_form( -id => 'sql', -class => 'fixed' )
160
161 , qq|<input type=button value="[=]" onclick="\$('form#sql').toggleClass('fixed'); return false;" title="toggle fixed position" class="right">|
162 , qq|<input type=button value="[x]" onclick="\$('form#sql').toggleClass('visible'); return false;" title="hide sql editor" class="right">|
163
164 , qq|<label for=columns>select</label>|
165 , checkbox_group( -name => 'columns', -values => [ @columns ], -defaults => [ @columns ] )
166
167 , qq|<label for=from>from</label>|
168 , textfield( -name => 'from', -value => $table, -default => $table )
169
170 , qq|<label for=where>where</label>|
171 , checkbox_group( -name => 'where_parts', -values => [ @where_parts ], -defaults => [ @where_parts ] )
172 , popup_menu( -name => 'where_column', -values => [ @columns ] ),
173 , popup_menu( -name => 'where_operator', -values => [ 'not like', 'like', '!=', '=' ])
174 , textfield( -name => 'where_value' )
175 , qq|
176 <span>
177 <input type=button name=lookup_col title="lookup column details">
178 <input type=button name=close_group_by value="[x]" disabled=1>
179 <div id="lookup"></div>
180 </span>
181 |
182
183 , qq|<label for=group_by>group by</label>|
184 , textfield( -name => 'group_by' )
185
186 , qq|<label for=order_by>order by</label>|
187 , textfield( -name => 'order_by' )
188
189 , qq|<label for=limit>limit</label>|
190 , textfield( -name=> 'limit', -default => $limit, -size => 4 )
191
192 , qq|<label for=offset>offset</label>|
193 , textfield( -name=> 'offset', -default => 0, -size => 4 )
194
195 , submit( -name => 'execute', -value => 'execute' )
196
197 , end_form
198 ;
199
200 #my @types = map { scalar $dbh->type_info($_)->{TYPE_NAME} } @{ $sth->{TYPE} };
201 my $types = dump( $sth->{TYPE} );
202 print qq{
203 <script type="text/javascript">
204 var column_type = $types ;
205 </script>
206 };
207
208 print qq|<table id="results">|;
209
210 my $counter = 0;
211 sub table_row {
212 my $cell = shift;
213 my $class = $counter++ % 2 == 0 ? ' class=o' : '';
214 return
215 qq|<tr $class><$cell>|
216 . join( qq|</$cell><$cell>|, @_ )
217 . qq|</$cell></tr>|
218 ;
219
220 }
221
222 print table_row( 'th', @columns );
223
224 while ( my @row = $sth->fetchrow_array ) {
225 print table_row( 'td', @row );
226 }
227
228 print qq|</table>|
229 , qq|</body></html>|
230 ;

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.26