r1842@llin: dpavlin | 2009-04-25 23:25:15 +0200
[webpac2] / vhost / webpac2.cgi
1 #!/usr/bin/perl
2
3 use warnings;
4 use strict;
5
6 use CGI qw/:standard/;
7 use CGI::Carp qw/fatalsToBrowser/;
8 use File::Slurp;
9 use YAML;
10 use Data::Page;
11 use Data::Dump qw/dump/;
12 use SWISH::API;
13 use JSON;
14
15 my $range_around = 5;
16 my $entries_per_page = 30;
17 my $debug = param('debug');
18
19 print header(
20         -charset => 'utf-8',
21 );
22
23 sub dump_yaml {
24         my $name = shift;
25         print qq|<pre># $name\n|, YAML::Dump( @_ ), qq|</pre>| if $debug;
26 }
27
28 sub show_pager {
29         my ($pager) = @_;
30
31         my @show_pages;
32         my $after_current = 0;
33
34         if ( $pager->current_page <= $range_around + 2 ) {
35                 @show_pages = ( $pager->first_page .. $pager->current_page );
36                 $after_current = $range_around - $pager->current_page;
37         } else {
38                 @show_pages = ( $pager->first_page, '', $pager->current_page - $range_around .. $pager->current_page );
39         }
40
41         if ( $pager->current_page + $after_current + $range_around + 1 >= $pager->last_page ) {
42                 push @show_pages, ( $pager->current_page + 1 .. $pager->last_page );
43         } else {
44                 push @show_pages, ( $pager->current_page + 1 .. $pager->current_page + $after_current + $range_around, '', $pager->last_page );
45         }
46
47 #       dump_yaml( 'show_pages', \@show_pages );
48
49         return '' unless $#show_pages;
50
51         my ( $prev, $next ) = ( '&lt;&lt;', '&gt;&gt;' );
52
53         sub li_a_href {
54                 my ( $page, $label, $attr ) = @_;
55                 param( 'current_page', $page );
56                 my $url = self_url( -query => 1 );
57                 $attr ||= '';
58                 $label ||= $page;
59                 qq|<li$attr><a href="$url" title="$page">$label</a></li>|;
60         }
61
62         return
63                   $pager->previous_page ? li_a_href( $pager->previous_page, $prev ) : qq|<li class=skip>$prev</li>|
64                 , ( map {
65                         if ( $_ eq $pager->current_page ) {
66                                 qq|<li class=current_page>$_</li>|;
67                         } elsif ( $_ eq '' ) {
68                                 qq|<li class=skip>...</li>|;
69                         } else {
70                                 li_a_href( $_ );
71                         }
72                 } @show_pages )
73                 , $pager->next_page ? li_a_href( $pager->next_page, $next ) : qq|<li class=skip>$next</li>|
74                 ;
75                 
76 }
77
78 my $path = $ENV{PATH_INFO} || 'ecas';
79 my $dir = $0;
80 $dir =~ s{/[^/]+.cgi}{};
81
82 my $config = YAML::LoadFile( "$dir/$path/config.yml" );
83
84 my $database = (keys %{ $config->{databases} })[0];
85 die "$database not in $path" unless $path =~ m{\Q$database\E};
86
87 my $html_markup = "$dir/$path/html.pm";
88 my $html_markup_skip;
89 if ( -e $html_markup ) {
90         require $html_markup;
91         $html_markup = $database . '::html';
92 } else {
93         undef $html_markup;
94 }
95
96 my $stats;
97 {
98         my $path = "$dir/../var/swish/$database.yaml";
99         $stats = YAML::LoadFile( $path );
100         dump_yaml( "stats $path", $stats );
101 }
102
103 my $db = $config->{databases}->{$database};
104
105 my @attr = keys %{ $stats->{attr} }; # FIXME replace with real gnerated lookup
106
107 # XXX pipe delimit list!
108 my $select_attr_operators = << '__ATTR_OPERATORS__';
109 Q*                      |       Bilo koja riječ
110 BW Q            |       Početak
111 BW Q EW         |       Točan oblik
112 __ATTR_OPERATORS__
113
114 my $attr_operator;
115
116 foreach ( split(/[\n\r]+/, $select_attr_operators ) ) {
117         my ( $operator,$label ) = split(/\s+\|\s+/,$_,2);
118         push @{ $attr_operator->{ '-values' } }, $operator;
119                 $attr_operator->{ '-labels' }->{$operator} = $label;
120 }
121
122 warn "## attr_operator = ", dump( $attr_operator );
123
124 my $only_input;
125
126 foreach ( @{ $db->{input} } ) {
127         my $input = $_->{name} || die "no name in ",dump( $_ );
128         if ( ! $only_input->{'-labels'}->{$input} ) {
129                 push @{ $only_input->{'-values'} }, $input;
130                         $only_input->{'-labels'}->{$input} = $_->{description} || $input;
131         }
132 }
133
134 warn "## only_input = ", dump( $only_input );
135
136 print
137         start_html(
138                 -title => $db->{name},
139                 -style => '../../style.css',
140         ),
141         h1( $db->{name} ),
142         qq|<div id=description>|, $db->{description}, qq|</div>|,
143         start_form( -action => self_url( query => 0 ) ),
144                 radio_group(
145                         -name => 'attr',
146                         -values => [ @attr ],
147 #                       -linebreak => 0,
148                 ),
149                 textfield( -name => 'search' ),
150                 popup_menu( -name => 'attr_operator', %$attr_operator ),
151                 submit,
152                 hidden( -name => 'entries_per_page', -default => $entries_per_page ),
153                 hidden( -name => 'current_page', -default => 1 ),
154                 checkbox( -name => 'debug', -default => 0 ), # FIXME hidden?
155                 qq|<div id=inputs>|,
156                 h2( 'Select input' ),
157                 checkbox_group(
158                         -name => 'only_input',
159                         %$only_input,
160                         -linebreak=> 'true',
161                 ),
162                 qq|</div>|,
163
164 ;
165
166 print   end_form;
167
168 if ( my $search = param('search') ) {
169
170         print qq|<div id="results">|;
171
172         my $swish = SWISH::API->new( "$dir/../var/swish/$database" );
173         $swish->abort_last_error if $swish->Error;
174
175         param( 'entries_per_page', $entries_per_page ) unless param('entries_per_page'); # FIXME not needed?
176         my $pager = Data::Page->new;
177         $pager->total_entries( param('current_page') * param('entries_per_page') );
178         $pager->$_( param($_) ) foreach ( qw/entries_per_page current_page/ );
179
180         dump_yaml( 'pager', $pager );
181
182         my @search = (); 
183         if ( $search =~ m{(=|"|AND|OR)} ) {
184                 push @search, $search;
185         } elsif ( my $op = param('attr_operator') ) {
186                 my $attr = param('attr');
187                 my $v = $search;
188                 $v =~ s/^\s+//;
189                 warn "-- v: $v\n";
190                 sub rewrite {
191                         my ( $whitespace, $v ) = @_;
192                         warn "## filter $op $whitespace $v\n";
193                         my $template = $op;
194                            $template =~ s{Q}{$v};
195                         $whitespace = " AND " if $whitespace;
196
197                         return
198                                 $whitespace .
199                                 $attr . '="' . $template . '"';
200                                 ;
201                 };
202                 $v =~ s{(\s*)(\S+)}{rewrite($1,$2)}ge;
203
204                 push @search, $v;
205         
206                 my @only_input = param('only_input');
207                 push @search, '(' . join(') OR (', map { "input=$_" } @only_input) . ')' if @only_input;
208         } else {
209                 push @search, "all=\"$search\"";
210         }
211
212         my $q = '(' . join(') AND (', @search) . ')';
213         $q =~ s{\(\((.+)\)\)}{($1)};
214         warn "# query: $q\n";
215         my $swish_results = $swish->query( $q );
216
217         dump_yaml( 'swish_results', $swish_results );
218
219         $pager->total_entries( $swish_results->hits );
220
221         $swish_results->seek_result( $pager->first );
222
223         if ( ! $pager->total_entries ) {
224                 my $no_results = 'No results for search <b>%s</b>';
225                 $no_results = $swish->error_string . '<br><b>%s</b>' if $swish->error;
226                 printf qq|<div class="error">$no_results</div>\n\n|, $q;
227         } else {
228
229                 my $results = "<b>%d</b> results for search <b>%s</b> showing results %d - %d";
230                 printf qq|<div class="message">$results</div>\n\n|, $pager->total_entries, $q, $pager->first, $pager->last;
231
232                 my $pager_html = join("\n", show_pager( $pager ));
233
234                 print qq|<ul class="pager">$pager_html</ul>\n\n| if $pager_html;
235
236                 my $start = $pager->first;
237                 print qq|<ol start=$start>\n|;
238
239                 my $limit = $pager->entries_on_this_page;
240
241                 while ( my $result = $swish_results->next_result ) {
242                         last if $limit-- == 0;
243
244                         my $data = from_json $result->property('data');
245
246                         dump_yaml( 'data', $data );
247
248                         print qq|<li>|;
249                         foreach my $attr ( @attr ) {
250                                 next unless defined $data->{$attr};
251                                 my $v = $data->{$attr};
252                                 if ( $html_markup && ! $html_markup_skip->{$attr} ) {
253                                         eval "\$v = $html_markup->$attr( \$v );";
254                                         if ( $@ ) {
255                                                 warn "disable html markup for $attr: $@";
256                                                 $html_markup_skip->{$attr} = $@;
257                                         }
258                                 }
259                                 print qq|<div><label>$attr</label><span class=$attr>$v</span></div>\n|;
260                         }
261                         print qq|</li>\n|;
262                 }
263                 print qq|</ol>\n\n|;
264
265                 print qq|<ul class="pager bottom">$pager_html</ul>\n\n| if $pager_html;
266         }
267         print qq|</div>|;
268
269         dump_yaml( 'pager', $pager );
270
271 }
272
273 dump_yaml( "config databases $database", $db );
274 dump_yaml( 'html_markup_skip', $html_markup_skip );
275
276 print   end_html;