/[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 1143 by dpavlin, Thu Apr 23 10:59:01 2009 UTC revision 1157 by dpavlin, Sat Apr 25 11:58:23 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 98  my $db = $config->{databases}->{$databas Line 99  my $db = $config->{databases}->{$databas
99    
100  my @attr = keys %{ $estraier->{attr} }; # FIXME replace with real gnerated lookup  my @attr = keys %{ $estraier->{attr} }; # FIXME replace with real gnerated lookup
101    
102    # XXX pipe delimit list!
103    my $select_attr_operators = << '__ATTR_OPERATORS__';
104    Q*                      |       Bilo koja riječ
105    BW Q            |       Početak
106    BW Q EW         |       Točan oblik
107    __ATTR_OPERATORS__
108    
109    my $attr_operator;
110    
111    foreach ( split(/[\n\r]+/, $select_attr_operators ) ) {
112            my ( $operator,$label ) = split(/\s+\|\s+/,$_,2);
113            push @{ $attr_operator->{ '-values' } }, $operator;
114                    $attr_operator->{ '-labels' }->{$operator} = $label;
115    }
116    
117    warn "## attr_operator = ", dump( $attr_operator );
118    
119    my $only_input;
120    
121    foreach ( @{ $db->{input} } ) {
122            my $input = $_->{name} || die "no name in ",dump( $_ );
123            if ( ! $only_input->{'-labels'}->{$input} ) {
124                    push @{ $only_input->{'-values'} }, $input;
125                            $only_input->{'-labels'}->{$input} = $_->{description} || $input;
126            }
127    }
128    
129    warn "## only_input = ", dump( $only_input );
130    
131  print  print
132          start_html(          start_html(
133                  -title => $db->{name},                  -title => $db->{name},
# Line 112  print Line 142  print
142  #                       -linebreak => 0,  #                       -linebreak => 0,
143                  ),                  ),
144                  textfield( -name => 'search' ),                  textfield( -name => 'search' ),
145                  popup_menu( -name => 'attr_operator', -values => [ '', 'STRBW', 'STREQ' ],                  popup_menu( -name => 'attr_operator', %$attr_operator ),
                         -labels => {  
                                 '' => 'Bilo koja riječ',  
                                 'STRBW' => 'Početak',  
                                 'STREQ' => 'Točan oblik',  
                         },  
                 ),  
146                  submit,                  submit,
147                  hidden( -name => 'entries_per_page', -default => $entries_per_page ),                  hidden( -name => 'entries_per_page', -default => $entries_per_page ),
148                  hidden( -name => 'current_page', -default => 1 ),                  hidden( -name => 'current_page', -default => 1 ),
# Line 127  print Line 151  print
151                  h2( 'Select input' ),                  h2( 'Select input' ),
152                  checkbox_group(                  checkbox_group(
153                          -name => 'only_input',                          -name => 'only_input',
154                          -values => [ map { $_->{name} } @{ $db->{input} } ],                          %$only_input,
155                          -linebreak=> 'true',                          -linebreak=> 'true',
156                  ),                  ),
157                  qq|</div>|,                  qq|</div>|,
# Line 143  if ( my $search = param('search') ) { Line 167  if ( my $search = param('search') ) {
167    
168          print qq|<div id="results">|;          print qq|<div id="results">|;
169    
170          my $node = Search::Estraier::Node->new(          my $swish = SWISH::API->new( "$dir/../var/swish/$database" );
171                  url => $config->{hyperestraier}->{masterurl} . '/node/' . $database,          $swish->abort_last_error if $swish->Error;
                 croak_on_error => 1,  
         );  
172    
173          param( 'entries_per_page', $entries_per_page ) unless param('entries_per_page'); # FIXME not needed?          param( 'entries_per_page', $entries_per_page ) unless param('entries_per_page'); # FIXME not needed?
174          my $pager = Data::Page->new;          my $pager = Data::Page->new;
# Line 155  if ( my $search = param('search') ) { Line 177  if ( my $search = param('search') ) {
177    
178          dump_yaml( 'pager', $pager );          dump_yaml( 'pager', $pager );
179    
180          my $cond = Search::Estraier::Condition->new( debug => $debug );          my @search = ();
181          $cond->set_phrase( $search );          if ( $search =~ m{(=|"|AND|OR)} ) {
182          $cond->set_skip( $pager->skipped );                  push @search, $search;
183          $cond->set_max(  $pager->entries_per_page );          } elsif ( my $op = param('attr_operator') ) {
184                    my $attr = param('attr');
185          if ( my $op = param('attr_operator') ) {                  my $v = $search;
186                  $cond->add_attr( param('attr') . " $op " . param('search') );                  $v =~ s/^\s+//;
187          }                  warn "-- v: $v\n";
188                    sub rewrite {
189          foreach my $i ( param('only_input') ) {                          my ( $whitespace, $v ) = @_;
190                  $cond->add_attr( '@uri STRBW file:///search/' . $database . '/' . $i );                          warn "## filter $op $whitespace $v\n";
191                            my $template = $op;
192                               $template =~ s{Q}{$v};
193                            $whitespace = " AND " if $whitespace;
194    
195                            return
196                                    $whitespace .
197                                    $attr . '="' . $template . '"';
198                                    ;
199                    };
200                    $v =~ s{(\s*)(\S+)}{rewrite($1,$2)}ge;
201    
202                    push @search, $v;
203            
204                    my @only_input = param('only_input');
205                    push @search, '(' . join(') OR (', map { "input=$_" } @only_input) . ')' if @only_input;
206            } else {
207                    push @search, "xml=$search";
208          }          }
209    
210            my $q = '(' . join(') AND (', @search) . ')';
211          my $nres = $node->search( $cond, 0 );          $q =~ s{\(\((.+)\)\)}{($1)};
212          $pager->total_entries( $nres->hits );          warn "# query: $q\n";
213            my $swish_results = $swish->query( $q );
214          dump_yaml( 'cond', $cond );  
215          dump_yaml( 'nres', $nres );          dump_yaml( 'swish_results', $swish_results );
216    
217          if ( ! $nres ) {          $pager->total_entries( $swish_results->hits );
218                  my $no_results = "No results for search '%s'";  
219                  printf qq|<div class="error">$no_results</div>\n\n|, $search;          if ( ! $pager->total_entries ) {
220                    my $no_results = 'No results for search <b>%s</b>';
221                    $no_results = $swish->error_string . '<br><b>%s</b>' if $swish->error;
222                    printf qq|<div class="error">$no_results</div>\n\n|, $q;
223          } else {          } else {
224    
225                  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";
226                  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;
227    
228                  my $pager_html = join("\n", show_pager( $pager ));                  my $pager_html = join("\n", show_pager( $pager ));
229    
# Line 190  if ( my $search = param('search') ) { Line 232  if ( my $search = param('search') ) {
232                  my $start = $pager->first;                  my $start = $pager->first;
233                  print qq|<ol start=$start>\n|;                  print qq|<ol start=$start>\n|;
234    
235                  foreach my $i ( 1 .. $nres->doc_num ) {                  while ( my $result = $swish_results->next_result ) {
236                          my $rdoc = $nres->get_doc( $i - 1 );                          my $data = from_json $result->property('data');
237    
238                          print qq|<li>|;                          print qq|<li>|;
239                          foreach my $attr ( @attr ) {                          foreach my $attr ( @attr ) {
240                                  my $v = $rdoc->attr( $attr );                                  next unless defined $data->{$attr};
241                                  if ( defined $v && $html_markup && ! $html_markup_skip->{$attr} ) {                                  my $v = $data->{$attr};
242                                    if ( $html_markup && ! $html_markup_skip->{$attr} ) {
243                                          eval "\$v = $html_markup->$attr( \$v );";                                          eval "\$v = $html_markup->$attr( \$v );";
244                                          if ( $@ ) {                                          if ( $@ ) {
245                                                  warn "disable html markup for $attr: $@";                                                  warn "disable html markup for $attr: $@";
246                                                  $html_markup_skip->{$attr} = $@;                                                  $html_markup_skip->{$attr} = $@;
247                                          }                                          }
248                                  }                                  }
                                 next unless defined $v;  
249                                  print qq|<div><label>$attr</label><span class=$attr>$v</span></div>\n|;                                  print qq|<div><label>$attr</label><span class=$attr>$v</span></div>\n|;
250                          }                          }
251                          print qq|</li>\n|;                          print qq|</li>\n|;
# Line 217  if ( my $search = param('search') ) { Line 260  if ( my $search = param('search') ) {
260    
261  }  }
262    
 dump_yaml( 'estraier', $estraier );  
263  dump_yaml( 'db', $db );  dump_yaml( 'db', $db );
264  dump_yaml( 'html_markup_skip', $html_markup_skip );  dump_yaml( 'html_markup_skip', $html_markup_skip );
265    

Legend:
Removed from v.1143  
changed lines
  Added in v.1157

  ViewVC Help
Powered by ViewVC 1.1.26