/[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 1176 by dpavlin, Wed Apr 29 18:06:15 2009 UTC revision 1227 by dpavlin, Thu Jun 11 18:55:53 2009 UTC
# Line 109  my $db = $config->{databases}->{$databas Line 109  my $db = $config->{databases}->{$databas
109  sub read_config_txt {  sub read_config_txt {
110          my ( $file ) = @_;          my ( $file ) = @_;
111          my $input;          my $input;
112          foreach ( split(/[\n\r]+/, read_file( "$dir/$path/$path-$file.txt" ) ) ) {          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);                  my ( $val,$label ) = split(/\s*\t\s*/,$_,2);
119                  push @{ $input->{ '-values' } }, $val;                  push @{ $input->{ '-values' } }, $val;
120                                  $input->{ '-labels' }->{$val} = $label;                                  $input->{ '-labels' }->{$val} = $label;
# Line 142  my @style = ( '../../style.css' ); Line 147  my @style = ( '../../style.css' );
147  push @style, "../../$path/$path.css" if -e "$dir/$path/$path.css";  push @style, "../../$path/$path.css" if -e "$dir/$path/$path.css";
148  dump_yaml( 'style', \@style );  dump_yaml( 'style', \@style );
149    
150  print  sub search_form {
151          start_html(          qq|<a name="form"></a>|,
                 -title => $db->{name},  
                 -style => [ @style ],  
         ),  
         h1( $db->{name} ),  
         qq|<div id=description>|, $db->{description}, qq|</div>|,  
152          start_form( -action => self_url( query => 0 ) ),          start_form( -action => self_url( query => 0 ) ),
153                  radio_group(                  checkbox_group(
154                          -name => 'attr',                          -name => 'attr',
155                          %$attr_labels,                          %$attr_labels,
156  #                       -linebreak => 0,  #                       -linebreak => 0,
157                  ),                  ),
158                  textfield( -name => 'search' ),                  textfield( -name => 'search' ),
159                  popup_menu( -name => 'attr_operator', %$attr_operators ),                  $attr_operators ? popup_menu( -name => 'attr_operator', %$attr_operators ) : '',
160                  submit,                  submit,
161                  hidden( -name => 'entries_per_page', -default => $entries_per_page ),                  hidden( -name => 'entries_per_page', -default => $entries_per_page ),
162                  # we need current_page fixed at 1 so that every submit through form will reset it                  # we need current_page fixed at 1 so that every submit through form will reset it
# Line 170  print Line 170  print
170                          -linebreak=> 'true',                          -linebreak=> 'true',
171                  ),                  ),
172                  qq|</div>|,                  qq|</div>|,
173                    end_form,
174            ;
175    }
176    
 ;  
177    
178  print   end_form;  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" );          my $swish = SWISH::API->new( "$dir/../var/swish/$database" );
195          $swish->abort_last_error if $swish->Error;          $swish->abort_last_error if $swish->Error;
196    
197          my @search = ();          my @search = ();
198            my @attrs = param('attr');
199            my $op = param('attr_operator');
200    
201          if ( $search =~ m{(=|"|AND|OR)} ) {          if ( $search =~ m{(=|"|AND|OR)} ) {
202                  push @search, $search;                  push @search, $search;
203          } elsif ( my $op = param('attr_operator') ) {          } elsif ( @attrs ) {
204                  my $attr = param('attr');  
205                  my $v = $search;                  $op ||= 'Q*';
206                  $v =~ s/^\s+//;                  my @or;
207                  warn "-- v: $v\n";                  foreach my $attr ( @attrs ) {
208                  sub rewrite {                          my $v = $search;
209                          my ( $whitespace, $v ) = @_;                          $v =~ s/^\s+//;
210                          warn "## filter $op $whitespace $v\n";                          warn "-- v: $v\n";
211                          my $template = $op;                          sub rewrite {
212                             $template =~ s{Q}{$v};                                  my ( $attr, $whitespace, $v ) = @_;
213                          $whitespace = " AND " if $whitespace;                                  warn "## filter $op $whitespace $v\n";
214                                    my $template = $op;
215                          return                                     $template =~ s{Q}{$v};
216                                  $whitespace .                                  $whitespace = " AND " if $whitespace;
217                                  $attr . '="' . $template . '"';  
218                                  ;                                  return
219                  };                                          $whitespace .
220                  $v =~ s{(\s*)(\S+)}{rewrite($1,$2)}ge;                                          $attr . '="' . $template . '"';
221                                            ;
222                  push @search, $v;                          };
223                                    if ( $op =~ m{\s} ) {
224                  my @only_input = param('only_input');                                  my $template = $op;
225                  push @search, '(' . join(') OR (', map { "input=$_" } @only_input) . ')' if @only_input;                                     $template =~ s{Q}{$v};
226                                    $v = $attr . '="' . $template . '"';
227                            } else {
228                                    $v =~ s{(\s*)(\S+)}{rewrite($attr,$1,$2)}ge;
229                            }
230    
231                            push @or, $v;
232                    
233                    }
234                    push @search, '(' . join(') OR (', @or) . ')';
235    
236          } else {          } else {
237                  push @search, "all=\"$search\"";                  push @search, "all=\"$search\"";
238          }          }
239    
240          my $q = '(' . join(') AND (', @search) . ')';          my $q = '(' . join(') AND (', @search) . ')';
241          $q =~ s{\(\((.+)\)\)}{($1)};  
242            my @only_input = param('only_input');
243            $q .= ' AND ((' . join(') OR (', map { "input=\"$_\"" } @only_input) . '))' if @only_input;
244    
245          warn "# query: $q\n";          warn "# query: $q\n";
246          my $swish_results = $swish->query( $q );          my $swish_results = $swish->query( $q );
247    
# Line 254  if ( my $search = param('search') ) { Line 282  if ( my $search = param('search') ) {
282                          dump_yaml( 'data', $data );                          dump_yaml( 'data', $data );
283    
284                          my $li_class = '';                          my $li_class = '';
285                          $li_class = qq| class="z"| if $nr++ % 2 == 0;                          $li_class = qq| class="z"| if $nr % 2 == 0;
286                          print qq|<li$li_class>|;                          print qq|<li$li_class>|;
287                          foreach my $attr ( @attr ) {                          foreach my $attr ( @attr ) {
288                                  next unless defined $data->{$attr};                                  next unless defined $data->{$attr};
# Line 265  if ( my $search = param('search') ) { Line 293  if ( my $search = param('search') ) {
293                                                  warn "disable html markup for $attr: $@";                                                  warn "disable html markup for $attr: $@";
294                                                  $html_markup_skip->{$attr} = $@;                                                  $html_markup_skip->{$attr} = $@;
295                                          }                                          }
296                                    } else {
297                                            $v =~ s{(http://\S+)}{<a href="$1">$1</a>};
298                                  }                                  }
299                                  my $label = $attr_labels->{'-labels'}->{$attr} || $attr;                                  my $label = $attr_labels->{'-labels'}->{$attr} || $attr;
300                                  print qq|<div><label>$label</label><span class=$attr>$v</span></div>\n|;                                  print qq|<div><label>$label</label><span class=$attr>$v</span></div>\n|;
# Line 283  if ( my $search = param('search') ) { Line 313  if ( my $search = param('search') ) {
313    
314  }  }
315    
316    print search_form;
317    
318  dump_yaml( "config databases $database", $db );  dump_yaml( "config databases $database", $db );
319  dump_yaml( 'html_markup_skip', $html_markup_skip );  dump_yaml( 'html_markup_skip', $html_markup_skip );
320    

Legend:
Removed from v.1176  
changed lines
  Added in v.1227

  ViewVC Help
Powered by ViewVC 1.1.26