/[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 1155 by dpavlin, Sat Apr 25 11:00:22 2009 UTC revision 1227 by dpavlin, Thu Jun 11 18:55:53 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 76  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 93  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    my $attr_labels    = read_config_txt 'labels';
126    my $attr_operators = read_config_txt 'operators';
127    
128    my @attr = @{ $attr_labels->{'-values'} };
129    @attr = keys %{ $stats->{attr} } unless @attr;
130    
 # XXX pipe delimit list!  
 my $select_attr_operators = << '__ATTR_OPERATORS__';  
 Q*                      |       Bilo koja riječ  
 BW Q            |       Početak  
 BW Q EW         |       Točan oblik  
 __ATTR_OPERATORS__  
131    
132  my $attr_operator;  warn dump( $attr_labels, $attr_operators );
133    
134  foreach ( split(/[\n\r]+/, $select_attr_operators ) ) {  my $only_input;
135          my ( $operator,$label ) = split(/\s+\|\s+/,$_,2);  
136          push @{ $attr_operator->{ '-values' } }, $operator;  foreach ( @{ $db->{input} } ) {
137                  $attr_operator->{ '-labels' }->{$operator} = $label;          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 "## attr_operator = ", dump( $attr_operator );  warn "## only_input = ", dump( $only_input );
145    
146  print  my @style = ( '../../style.css' );
147          start_html(  push @style, "../../$path/$path.css" if -e "$dir/$path/$path.css";
148                  -title => $db->{name},  dump_yaml( 'style', \@style );
149                  -style => '../../style.css',  
150          ),  sub search_form {
151          h1( $db->{name} ),          qq|<a name="form"></a>|,
         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                          -values => [ @attr ],                          %$attr_labels,
156  #                       -linebreak => 0,  #                       -linebreak => 0,
157                  ),                  ),
158                  textfield( -name => 'search' ),                  textfield( -name => 'search' ),
159                  popup_menu( -name => 'attr_operator', %$attr_operator ),                  $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                  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>|,                  qq|<div id=inputs>|,
166                  h2( 'Select input' ),                  h2( 'Select input' ),
167                  checkbox_group(                  checkbox_group(
168                          -name => 'only_input',                          -name => 'only_input',
169                          -values => [ map { $_->{name} } @{ $db->{input} } ],                          %$only_input,
170                          -linebreak=> 'true',                          -linebreak=> 'true',
171                  ),                  ),
172                  qq|</div>|,                  qq|</div>|,
173                    end_form,
174            ;
175    }
176    
 ;  
   
 dump_yaml( 'inputs', $db->{input} );  
 dump_yaml( 'input names', map { $_->{name} } @{ $db->{input} } );  
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          param( 'entries_per_page', $entries_per_page ) unless param('entries_per_page'); # FIXME not needed?          my @search = ();
198          my $pager = Data::Page->new;          my @attrs = param('attr');
199          $pager->total_entries( param('current_page') * param('entries_per_page') );          my $op = param('attr_operator');
         $pager->$_( param($_) ) foreach ( qw/entries_per_page current_page/ );  
   
         dump_yaml( 'pager', $pager );  
   
         my @search = ();  
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                            };
223                            if ( $op =~ m{\s} ) {
224                                    my $template = $op;
225                                       $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    
                 push @search, $v;  
236          } else {          } else {
237                  push @search, "xml=$search";                  push @search, "all=\"$search\"";
238          }          }
239    
240          my @only_input = param('only_input');          my $q = '(' . join(') AND (', @search) . ')';
241    
242          push @search, '(' . join(') or (', @only_input) . ')' if @only_input;          my @only_input = param('only_input');
243            $q .= ' AND ((' . join(') OR (', map { "input=\"$_\"" } @only_input) . '))' if @only_input;
244    
         my $q = '(' . join(') and (', @search) . ')';  
         $q =~ s{\(\((.+)\)\)}{($1)};  
245          warn "# query: $q\n";          warn "# query: $q\n";
246          my $swish_results = $swish->query( $q );          my $swish_results = $swish->query( $q );
247    
248          dump_yaml( 'swish_results', $swish_results );          dump_yaml( 'swish_results', $swish_results );
249    
250            my $pager = Data::Page->new;
251            $pager->$_( param($_) ) foreach ( qw/entries_per_page current_page/ );
252          $pager->total_entries( $swish_results->hits );          $pager->total_entries( $swish_results->hits );
253    
254            dump_yaml( 'pager', $pager );
255    
256            $swish_results->seek_result( $pager->first - 1 );
257    
258          if ( ! $pager->total_entries ) {          if ( ! $pager->total_entries ) {
259                  my $no_results = 'No results for search <b>%s</b>';                  my $no_results = 'No results for search <b>%s</b>';
260                  $no_results = $swish->error_string . '<br><b>%s</b>' if $swish->error;                  $no_results = $swish->error_string . '<br><b>%s</b>' if $swish->error;
# Line 219  if ( my $search = param('search') ) { Line 268  if ( my $search = param('search') ) {
268    
269                  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;
270    
271                  my $start = $pager->first;                  my $nr = $pager->first;
272                  print qq|<ol start=$start>\n|;                  print qq|<ol start=$nr>\n|;
273    
274                    my $limit = $pager->entries_on_this_page;
275    
276                    my $nr = 1;
277    
278                  while ( my $result = $swish_results->next_result ) {                  while ( my $result = $swish_results->next_result ) {
279    
280                          my $data = from_json $result->property('data');                          my $data = from_json $result->property('data');
281    
282                          print qq|<li>|;                          dump_yaml( 'data', $data );
283    
284                            my $li_class = '';
285                            $li_class = qq| class="z"| if $nr % 2 == 0;
286                            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};
289                                  my $v = $data->{$attr};                                  my $v = $data->{$attr};
# Line 235  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                                  print qq|<div><label>$attr</label><span class=$attr>$v</span></div>\n|;                                  my $label = $attr_labels->{'-labels'}->{$attr} || $attr;
300                                    print qq|<div><label>$label</label><span class=$attr>$v</span></div>\n|;
301                          }                          }
302                          print qq|</li>\n|;                          print qq|</li>\n|;
303    
304                            last if $nr++ == $pager->last;
305                  }                  }
306                  print qq|</ol>\n\n|;                  print qq|</ol>\n\n|;
307    
# Line 250  if ( my $search = param('search') ) { Line 313  if ( my $search = param('search') ) {
313    
314  }  }
315    
316  dump_yaml( 'db', $db );  print search_form;
317    
318    dump_yaml( "config databases $database", $db );
319  dump_yaml( 'html_markup_skip', $html_markup_skip );  dump_yaml( 'html_markup_skip', $html_markup_skip );
320    
321  print   end_html;  print   end_html;

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

  ViewVC Help
Powered by ViewVC 1.1.26