/[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 1165 by dpavlin, Sat Apr 25 17:11:33 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 92  if ( -e $html_markup ) { Line 93  if ( -e $html_markup ) {
93          undef $html_markup;          undef $html_markup;
94  }  }
95    
96  my $estraier = YAML::LoadFile( "$dir/../var/estraier/$database.yaml" );  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};  my $db = $config->{databases}->{$database};
104    
105  my @attr = keys %{ $estraier->{attr} }; # FIXME replace with real gnerated lookup  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  print
137          start_html(          start_html(
# Line 112  print Line 147  print
147  #                       -linebreak => 0,  #                       -linebreak => 0,
148                  ),                  ),
149                  textfield( -name => 'search' ),                  textfield( -name => 'search' ),
150                  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',  
                         },  
                 ),  
151                  submit,                  submit,
152                  hidden( -name => 'entries_per_page', -default => $entries_per_page ),                  hidden( -name => 'entries_per_page', -default => $entries_per_page ),
153                  hidden( -name => 'current_page', -default => 1 ),                  hidden( -name => 'current_page', -default => 1 ),
154                  checkbox( -name => 'debug', -default => 0 ), # FIXME hidden?                  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;  print   end_form;
# Line 131  if ( my $search = param('search') ) { Line 169  if ( my $search = param('search') ) {
169    
170          print qq|<div id="results">|;          print qq|<div id="results">|;
171    
172          my $node = Search::Estraier::Node->new(          my $swish = SWISH::API->new( "$dir/../var/swish/$database" );
173                  url => $config->{hyperestraier}->{masterurl} . '/node/' . $database,          $swish->abort_last_error if $swish->Error;
                 croak_on_error => 1,  
         );  
174    
175          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?
176          my $pager = Data::Page->new;          my $pager = Data::Page->new;
# Line 143  if ( my $search = param('search') ) { Line 179  if ( my $search = param('search') ) {
179    
180          dump_yaml( 'pager', $pager );          dump_yaml( 'pager', $pager );
181    
182          my $cond = Search::Estraier::Condition->new( debug => $debug );          my @search = ();
183          $cond->set_phrase( $search );          if ( $search =~ m{(=|"|AND|OR)} ) {
184          $cond->set_skip( $pager->skipped );                  push @search, $search;
185          $cond->set_max(  $pager->entries_per_page );          } elsif ( my $op = param('attr_operator') ) {
186                    my $attr = param('attr');
187          if ( my $op = param('attr_operator') ) {                  my $v = $search;
188                  $cond->add_attr( param('attr') . " $op " . param('search') );                  $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 $nres = $node->search( $cond, 0 );          my $q = '(' . join(') AND (', @search) . ')';
213          $pager->total_entries( $nres->hits );          $q =~ s{\(\((.+)\)\)}{($1)};
214            warn "# query: $q\n";
215          dump_yaml( 'cond', $cond );          my $swish_results = $swish->query( $q );
216          dump_yaml( 'nres', $nres );  
217            dump_yaml( 'swish_results', $swish_results );
218          if ( ! $nres ) {  
219                  my $no_results = "No results for search '%s'";          $pager->total_entries( $swish_results->hits );
220                  printf qq|<div class="error">$no_results</div>\n\n|, $search;  
221            if ( ! $pager->total_entries ) {
222                    my $no_results = 'No results for search <b>%s</b>';
223                    $no_results = $swish->error_string . '<br><b>%s</b>' if $swish->error;
224                    printf qq|<div class="error">$no_results</div>\n\n|, $q;
225          } else {          } else {
226    
227                  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";
228                  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;
229    
230                  my $pager_html = join("\n", show_pager( $pager ));                  my $pager_html = join("\n", show_pager( $pager ));
231    
# Line 173  if ( my $search = param('search') ) { Line 234  if ( my $search = param('search') ) {
234                  my $start = $pager->first;                  my $start = $pager->first;
235                  print qq|<ol start=$start>\n|;                  print qq|<ol start=$start>\n|;
236    
237                  foreach my $i ( 1 .. $nres->doc_num ) {                  while ( my $result = $swish_results->next_result ) {
238                          my $rdoc = $nres->get_doc( $i - 1 );                          my $data = from_json $result->property('data');
239    
240                          print qq|<li>|;                          print qq|<li>|;
241                          foreach my $attr ( @attr ) {                          foreach my $attr ( @attr ) {
242                                  my $v = $rdoc->attr( $attr );                                  next unless defined $data->{$attr};
243                                  if ( defined $v && $html_markup && ! $html_markup_skip->{$attr} ) {                                  my $v = $data->{$attr};
244                                    if ( $html_markup && ! $html_markup_skip->{$attr} ) {
245                                          eval "\$v = $html_markup->$attr( \$v );";                                          eval "\$v = $html_markup->$attr( \$v );";
246                                          if ( $@ ) {                                          if ( $@ ) {
247                                                  warn "disable html markup for $attr: $@";                                                  warn "disable html markup for $attr: $@";
248                                                  $html_markup_skip->{$attr} = $@;                                                  $html_markup_skip->{$attr} = $@;
249                                          }                                          }
250                                  }                                  }
                                 next unless defined $v;  
251                                  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|;
252                          }                          }
253                          print qq|</li>\n|;                          print qq|</li>\n|;
# Line 200  if ( my $search = param('search') ) { Line 262  if ( my $search = param('search') ) {
262    
263  }  }
264    
265  dump_yaml( 'estraier', $estraier );  dump_yaml( "config databases $database", $db );
 dump_yaml( 'db', $db );  
266  dump_yaml( 'html_markup_skip', $html_markup_skip );  dump_yaml( 'html_markup_skip', $html_markup_skip );
267    
268  print   end_html;  print   end_html;

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

  ViewVC Help
Powered by ViewVC 1.1.26