/[webpac2]/trunk/vhost/webpac2.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

Diff of /trunk/vhost/webpac2.cgi

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1142 by dpavlin, Thu Apr 23 10:59:00 2009 UTC revision 1219 by dpavlin, Tue Jun 9 21:36:22 2009 UTC
# Line 7  use CGI qw/:standard/; Line 7  use CGI qw/:standard/;
7  use CGI::Carp qw/fatalsToBrowser/;  use CGI::Carp qw/fatalsToBrowser/;
8  use File::Slurp;  use File::Slurp;
9  use YAML;  use YAML;
 use Search::Estraier;  
10  use Data::Page;  use Data::Page;
11  use Data::Dump qw/dump/;  use Data::Dump qw/dump/;
12    use SWISH::API;
13    use JSON;
14    
15  my $range_around = 5;  my $range_around = 5;
16  my $entries_per_page = 30;  my $entries_per_page = 30;
# Line 21  print header( Line 22  print header(
22    
23  sub dump_yaml {  sub dump_yaml {
24          my $name = shift;          my $name = shift;
25          print qq|<pre># $name\n|, YAML::Dump( @_ ), qq|</pre>| if $debug;          print qq|<div class=dump><tt>$name</tt><pre>|, YAML::Dump( @_ ), qq|</pre></div>| if $debug;
26  }  }
27    
28  sub show_pager {  sub show_pager {
# Line 75  sub show_pager { Line 76  sub show_pager {
76  }  }
77    
78  my $path = $ENV{PATH_INFO} || 'ecas';  my $path = $ENV{PATH_INFO} || 'ecas';
79    $path =~ s{^/+}{};
80    $path =~ s{/+$}{};
81  my $dir = $0;  my $dir = $0;
82  $dir =~ s{/[^/]+.cgi}{};  $dir =~ s{/[^/]+.cgi}{};
83    
84    dump_yaml( 'dir', $dir );
85    
86  my $config = YAML::LoadFile( "$dir/$path/config.yml" );  my $config = YAML::LoadFile( "$dir/$path/config.yml" );
87    
88  my $database = (keys %{ $config->{databases} })[0];  my $database = (keys %{ $config->{databases} })[0];
# Line 92  if ( -e $html_markup ) { Line 97  if ( -e $html_markup ) {
97          undef $html_markup;          undef $html_markup;
98  }  }
99    
100  my $estraier = YAML::LoadFile( "$dir/../var/estraier/$database.yaml" );  my $stats;
101    {
102            my $path = "$dir/../var/swish/$database.yaml";
103            $stats = YAML::LoadFile( $path );
104            dump_yaml( "stats $path", $stats );
105    }
106    
107  my $db = $config->{databases}->{$database};  my $db = $config->{databases}->{$database};
108    
109  my @attr = keys %{ $estraier->{attr} }; # FIXME replace with real gnerated lookup  sub read_config_txt {
110            my ( $file ) = @_;
111            my $input;
112            my $path ="$dir/$path/$path-$file.txt";
113            if ( ! -e $path ) {
114                    warn "missing $path";
115                    return;
116            }
117            foreach ( split(/[\n\r]+/, read_file( $path ) ) ) {
118                    my ( $val,$label ) = split(/\s*\t\s*/,$_,2);
119                    push @{ $input->{ '-values' } }, $val;
120                                    $input->{ '-labels' }->{$val} = $label;
121            }
122            return $input;
123    }
124    
125  print  my $attr_labels    = read_config_txt 'labels';
126          start_html(  my $attr_operators = read_config_txt 'operators';
127                  -title => $db->{name},  
128                  -style => '../../style.css',  my @attr = @{ $attr_labels->{'-values'} };
129          ),  @attr = keys %{ $stats->{attr} } unless @attr;
130          h1( $db->{name} ),  
131          qq|<div id=description>|, $db->{description}, qq|</div>|,  
132    warn dump( $attr_labels, $attr_operators );
133    
134    my $only_input;
135    
136    foreach ( @{ $db->{input} } ) {
137            my $input = $_->{name} || die "no name in ",dump( $_ );
138            if ( ! $only_input->{'-labels'}->{$input} ) {
139                    push @{ $only_input->{'-values'} }, $input;
140                            $only_input->{'-labels'}->{$input} = $_->{description} || $input;
141            }
142    }
143    
144    warn "## only_input = ", dump( $only_input );
145    
146    my @style = ( '../../style.css' );
147    push @style, "../../$path/$path.css" if -e "$dir/$path/$path.css";
148    dump_yaml( 'style', \@style );
149    
150    sub search_form {
151            qq|<a name="form"></a>|,
152          start_form( -action => self_url( query => 0 ) ),          start_form( -action => self_url( query => 0 ) ),
153                  radio_group(                  radio_group(
154                          -name => 'attr',                          -name => 'attr',
155                          -values => [ @attr ],                          %$attr_labels,
156  #                       -linebreak => 0,  #                       -linebreak => 0,
157                  ),                  ),
158                  textfield( -name => 'search' ),                  textfield( -name => 'search' ),
159                  popup_menu( -name => 'attr_operator', -values => [ '', 'STRBW', 'STREQ' ],                  popup_menu( -name => 'attr_operator', %$attr_operators ),
                         -labels => {  
                                 '' => 'Bilo koja riječ',  
                                 'STRBW' => 'Početak',  
                                 'STREQ' => 'Točan oblik',  
                         },  
                 ),  
160                  submit,                  submit,
161                  hidden( -name => 'entries_per_page', -default => $entries_per_page ),                  hidden( -name => 'entries_per_page', -default => $entries_per_page ),
162                  hidden( -name => 'current_page', -default => 1 ),                  # we need current_page fixed at 1 so that every submit through form will reset it
163                    qq|<input type=hidden name=current_page value=1 >|,
164                  checkbox( -name => 'debug', -default => 0 ), # FIXME hidden?                  checkbox( -name => 'debug', -default => 0 ), # FIXME hidden?
165  ;                  qq|<div id=inputs>|,
166                    h2( 'Select input' ),
167                    checkbox_group(
168                            -name => 'only_input',
169                            %$only_input,
170                            -linebreak=> 'true',
171                    ),
172                    qq|</div>|,
173                    end_form,
174            ;
175    }
176    
177  print   end_form;  
178    print
179            start_html(
180                    -title => $db->{name},
181                    -style => [ @style ],
182            ),
183            h1( $db->{name} ),
184            qq|<div id=description>|, $db->{description}, qq|</div>|,
185    ;
186    
187  if ( my $search = param('search') ) {  if ( my $search = param('search') ) {
188    
189          print qq|<div id="results">|;          print qq|
190                    <a href="#form" class="skip" title="skip to search form">#</a>
191                    <div id="results">
192            |;
193    
194            my $swish = SWISH::API->new( "$dir/../var/swish/$database" );
195            $swish->abort_last_error if $swish->Error;
196    
197            my @search = ();
198            if ( $search =~ m{(=|"|AND|OR)} ) {
199                    push @search, $search;
200            } elsif ( my $op = param('attr_operator') ) {
201                    my $attr = param('attr');
202                    my $v = $search;
203                    $v =~ s/^\s+//;
204                    warn "-- v: $v\n";
205                    sub rewrite {
206                            my ( $whitespace, $v ) = @_;
207                            warn "## filter $op $whitespace $v\n";
208                            my $template = $op;
209                               $template =~ s{Q}{$v};
210                            $whitespace = " AND " if $whitespace;
211    
212                            return
213                                    $whitespace .
214                                    $attr . '="' . $template . '"';
215                                    ;
216                    };
217                    if ( $op =~ m{\s} ) {
218                            my $template = $op;
219                               $template =~ s{Q}{$v};
220                            $v = $attr . '="' . $template . '"';
221                    } else {
222                            $v =~ s{(\s*)(\S+)}{rewrite($1,$2)}ge;
223                    }
224    
225                    push @search, $v;
226            
227                    my @only_input = param('only_input');
228                    push @search, '((' . join(') OR (', map { "input=\"$_\"" } @only_input) . '))' if @only_input;
229            } else {
230                    push @search, "all=\"$search\"";
231            }
232    
233            my $q = '(' . join(') AND (', @search) . ')';
234            $q =~ s{\(\((.+)\)\)}{($1)};
235            warn "# query: $q\n";
236            my $swish_results = $swish->query( $q );
237    
238          my $node = Search::Estraier::Node->new(          dump_yaml( 'swish_results', $swish_results );
                 url => $config->{hyperestraier}->{masterurl} . '/node/' . $database,  
                 croak_on_error => 1,  
         );  
239    
         param( 'entries_per_page', $entries_per_page ) unless param('entries_per_page'); # FIXME not needed?  
240          my $pager = Data::Page->new;          my $pager = Data::Page->new;
         $pager->total_entries( param('current_page') * param('entries_per_page') );  
241          $pager->$_( param($_) ) foreach ( qw/entries_per_page current_page/ );          $pager->$_( param($_) ) foreach ( qw/entries_per_page current_page/ );
242            $pager->total_entries( $swish_results->hits );
243    
244          dump_yaml( 'pager', $pager );          dump_yaml( 'pager', $pager );
245    
246          my $cond = Search::Estraier::Condition->new( debug => $debug );          $swish_results->seek_result( $pager->first - 1 );
         $cond->set_phrase( $search );  
         $cond->set_skip( $pager->skipped );  
         $cond->set_max(  $pager->entries_per_page );  
   
         if ( my $op = param('attr_operator') ) {  
                 $cond->add_attr( param('attr') . " $op " . param('search') );  
         }  
   
         my $nres = $node->search( $cond, 0 );  
         $pager->total_entries( $nres->hits );  
   
         dump_yaml( 'cond', $cond );  
         dump_yaml( 'nres', $nres );  
247    
248          if ( ! $nres ) {          if ( ! $pager->total_entries ) {
249                  my $no_results = "No results for search '%s'";                  my $no_results = 'No results for search <b>%s</b>';
250                  printf qq|<div class="error">$no_results</div>\n\n|, $search;                  $no_results = $swish->error_string . '<br><b>%s</b>' if $swish->error;
251                    printf qq|<div class="error">$no_results</div>\n\n|, $q;
252          } else {          } else {
253    
254                  my $results = "%d results for search '%s' showing results %d - %d on page %d";                  my $results = "<b>%d</b> results for search <b>%s</b> showing results %d - %d";
255                  printf qq|<div class="message">$results</div>\n\n|, $nres->hits, $search, $pager->first, $pager->last, $pager->current_page;                  printf qq|<div class="message">$results</div>\n\n|, $pager->total_entries, $q, $pager->first, $pager->last;
256    
257                  my $pager_html = join("\n", show_pager( $pager ));                  my $pager_html = join("\n", show_pager( $pager ));
258    
259                  print qq|<ul class="pager">$pager_html</ul>\n\n| if $pager_html;                  print qq|<ul class="pager">$pager_html</ul>\n\n| if $pager_html;
260    
261                  my $start = $pager->first;                  my $nr = $pager->first;
262                  print qq|<ol start=$start>\n|;                  print qq|<ol start=$nr>\n|;
263    
264                    my $limit = $pager->entries_on_this_page;
265    
266                  foreach my $i ( 1 .. $nres->doc_num ) {                  my $nr = 1;
267                          my $rdoc = $nres->get_doc( $i - 1 );  
268                          print qq|<li>|;                  while ( my $result = $swish_results->next_result ) {
269    
270                            my $data = from_json $result->property('data');
271    
272                            dump_yaml( 'data', $data );
273    
274                            my $li_class = '';
275                            $li_class = qq| class="z"| if $nr % 2 == 0;
276                            print qq|<li$li_class>|;
277                          foreach my $attr ( @attr ) {                          foreach my $attr ( @attr ) {
278                                  my $v = $rdoc->attr( $attr );                                  next unless defined $data->{$attr};
279                                  if ( defined $v && $html_markup && ! $html_markup_skip->{$attr} ) {                                  my $v = $data->{$attr};
280                                    if ( $html_markup && ! $html_markup_skip->{$attr} ) {
281                                          eval "\$v = $html_markup->$attr( \$v );";                                          eval "\$v = $html_markup->$attr( \$v );";
282                                          if ( $@ ) {                                          if ( $@ ) {
283                                                  warn "disable html markup for $attr: $@";                                                  warn "disable html markup for $attr: $@";
284                                                  $html_markup_skip->{$attr} = $@;                                                  $html_markup_skip->{$attr} = $@;
285                                          }                                          }
286                                    } else {
287                                            $v =~ s{(http://\S+)}{<a href="$1">$1</a>};
288                                  }                                  }
289                                  next unless defined $v;                                  my $label = $attr_labels->{'-labels'}->{$attr} || $attr;
290                                  print qq|<div><label>$attr</label><span class=$attr>$v</span></div>\n|;                                  print qq|<div><label>$label</label><span class=$attr>$v</span></div>\n|;
291                          }                          }
292                          print qq|</li>\n|;                          print qq|</li>\n|;
293    
294                            last if $nr++ == $pager->last;
295                  }                  }
296                  print qq|</ol>\n\n|;                  print qq|</ol>\n\n|;
297    
# Line 200  if ( my $search = param('search') ) { Line 303  if ( my $search = param('search') ) {
303    
304  }  }
305    
306  dump_yaml( 'estraier', $estraier );  print search_form;
307  dump_yaml( 'db', $db );  
308    dump_yaml( "config databases $database", $db );
309  dump_yaml( 'html_markup_skip', $html_markup_skip );  dump_yaml( 'html_markup_skip', $html_markup_skip );
310    
311  print   end_html;  print   end_html;

Legend:
Removed from v.1142  
changed lines
  Added in v.1219

  ViewVC Help
Powered by ViewVC 1.1.26