/[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 1149 by dpavlin, Fri Apr 24 16:58:09 2009 UTC revision 1171 by dpavlin, Sat Apr 25 22:07:59 2009 UTC
# Line 22  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 93  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 113  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 ),                  # we need current_page fixed at 1 so that every submit through form will reset it
154                    qq|<input type=hidden name=current_page value=1 >|,
155                  checkbox( -name => 'debug', -default => 0 ), # FIXME hidden?                  checkbox( -name => 'debug', -default => 0 ), # FIXME hidden?
156                  qq|<div id=inputs>|,                  qq|<div id=inputs>|,
157                  h2( 'Select input' ),                  h2( 'Select input' ),
158                  checkbox_group(                  checkbox_group(
159                          -name => 'only_input',                          -name => 'only_input',
160                          -values => [ map { $_->{name} } @{ $db->{input} } ],                          %$only_input,
161                          -linebreak=> 'true',                          -linebreak=> 'true',
162                  ),                  ),
163                  qq|</div>|,                  qq|</div>|,
164    
165  ;  ;
166    
 dump_yaml( 'inputs', $db->{input} );  
 dump_yaml( 'input names', map { $_->{name} } @{ $db->{input} } );  
   
167  print   end_form;  print   end_form;
168    
169  if ( my $search = param('search') ) {  if ( my $search = param('search') ) {
# Line 147  if ( my $search = param('search') ) { Line 173  if ( my $search = param('search') ) {
173          my $swish = SWISH::API->new( "$dir/../var/swish/$database" );          my $swish = SWISH::API->new( "$dir/../var/swish/$database" );
174          $swish->abort_last_error if $swish->Error;          $swish->abort_last_error if $swish->Error;
175    
         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;
         $pager->total_entries( param('current_page') * param('entries_per_page') );  
177          $pager->$_( param($_) ) foreach ( qw/entries_per_page current_page/ );          $pager->$_( param($_) ) foreach ( qw/entries_per_page current_page/ );
178    
179          dump_yaml( 'pager', $pager );          dump_yaml( 'pager', $pager );
180    
181          my @search = ( "xml=$search" );          my @search = ();
182            if ( $search =~ m{(=|"|AND|OR)} ) {
183  #       if ( my $op = param('attr_operator') ) {                  push @search, $search;
184  #               $cond->add_attr( param('attr') . " $op " . param('search') );          } elsif ( my $op = param('attr_operator') ) {
185  #       }                  my $attr = param('attr');
186                    my $v = $search;
187          my @only_input = param('only_input');                  $v =~ s/^\s+//;
188                    warn "-- v: $v\n";
189          push @search, '(' . join(') or (', @only_input) . ')' if @only_input;                  sub rewrite {
190                            my ( $whitespace, $v ) = @_;
191                            warn "## filter $op $whitespace $v\n";
192                            my $template = $op;
193                               $template =~ s{Q}{$v};
194                            $whitespace = " AND " if $whitespace;
195    
196                            return
197                                    $whitespace .
198                                    $attr . '="' . $template . '"';
199                                    ;
200                    };
201                    $v =~ s{(\s*)(\S+)}{rewrite($1,$2)}ge;
202    
203                    push @search, $v;
204            
205                    my @only_input = param('only_input');
206                    push @search, '(' . join(') OR (', map { "input=$_" } @only_input) . ')' if @only_input;
207            } else {
208                    push @search, "all=\"$search\"";
209            }
210    
211          my $q = '(' . join(') and (', @search) . ')';          my $q = '(' . join(') AND (', @search) . ')';
212            $q =~ s{\(\((.+)\)\)}{($1)};
213          warn "# query: $q\n";          warn "# query: $q\n";
214          my $swish_results = $swish->query( $q );          my $swish_results = $swish->query( $q );
         $swish->abort_last_error if $swish->Error;  
215    
216          dump_yaml( 'swish_results', $swish_results );          dump_yaml( 'swish_results', $swish_results );
217    
218          $pager->total_entries( $swish_results->hits );          $pager->total_entries( $swish_results->hits );
219    
220            $swish_results->seek_result( $pager->first );
221    
222          if ( ! $pager->total_entries ) {          if ( ! $pager->total_entries ) {
223                  my $no_results = "No results for search '%s'";                  my $no_results = 'No results for search <b>%s</b>';
224                  printf qq|<div class="error">$no_results</div>\n\n|, $search;                  $no_results = $swish->error_string . '<br><b>%s</b>' if $swish->error;
225                    printf qq|<div class="error">$no_results</div>\n\n|, $q;
226          } else {          } else {
227    
228                  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";
229                  printf qq|<div class="message">$results</div>\n\n|, $pager->total_entries, $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;
230    
231                  my $pager_html = join("\n", show_pager( $pager ));                  my $pager_html = join("\n", show_pager( $pager ));
232    
# Line 188  if ( my $search = param('search') ) { Line 235  if ( my $search = param('search') ) {
235                  my $start = $pager->first;                  my $start = $pager->first;
236                  print qq|<ol start=$start>\n|;                  print qq|<ol start=$start>\n|;
237    
238                    my $limit = $pager->entries_on_this_page;
239    
240                  while ( my $result = $swish_results->next_result ) {                  while ( my $result = $swish_results->next_result ) {
241                            last if $limit-- == 0;
242    
243                          my $data = from_json $result->property('data');                          my $data = from_json $result->property('data');
244    
245                            dump_yaml( 'data', $data );
246    
247                          print qq|<li>|;                          print qq|<li>|;
248                          foreach my $attr ( @attr ) {                          foreach my $attr ( @attr ) {
249                                  next unless defined $data->{$attr};                                  next unless defined $data->{$attr};
# Line 216  if ( my $search = param('search') ) { Line 269  if ( my $search = param('search') ) {
269    
270  }  }
271    
272  dump_yaml( 'db', $db );  dump_yaml( "config databases $database", $db );
273  dump_yaml( 'html_markup_skip', $html_markup_skip );  dump_yaml( 'html_markup_skip', $html_markup_skip );
274    
275  print   end_html;  print   end_html;

Legend:
Removed from v.1149  
changed lines
  Added in v.1171

  ViewVC Help
Powered by ViewVC 1.1.26