/[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 1137 by dpavlin, Tue Apr 21 23:17:23 2009 UTC revision 1153 by dpavlin, Sat Apr 25 09:28:44 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;
10  use Search::Estraier;  use Data::Page;
11    use Data::Dump qw/dump/;
12  print header;  use SWISH::API;
13    use JSON;
14    
15    my $range_around = 5;
16    my $entries_per_page = 30;
17    my $debug = param('debug');
18    
19    print header(
20            -charset => 'utf-8',
21    );
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>|;          print qq|<pre># $name\n|, YAML::Dump( @_ ), qq|</pre>| if $debug;
26    }
27    
28    sub show_pager {
29            my ($pager) = @_;
30    
31            my @show_pages;
32            my $after_current = 0;
33    
34            if ( $pager->current_page <= $range_around + 2 ) {
35                    @show_pages = ( $pager->first_page .. $pager->current_page );
36                    $after_current = $range_around - $pager->current_page;
37            } else {
38                    @show_pages = ( $pager->first_page, '', $pager->current_page - $range_around .. $pager->current_page );
39            }
40    
41            if ( $pager->current_page + $after_current + $range_around + 1 >= $pager->last_page ) {
42                    push @show_pages, ( $pager->current_page + 1 .. $pager->last_page );
43            } else {
44                    push @show_pages, ( $pager->current_page + 1 .. $pager->current_page + $after_current + $range_around, '', $pager->last_page );
45            }
46    
47    #       dump_yaml( 'show_pages', \@show_pages );
48    
49            return '' unless $#show_pages;
50    
51            my ( $prev, $next ) = ( '&lt;&lt;', '&gt;&gt;' );
52    
53            sub li_a_href {
54                    my ( $page, $label, $attr ) = @_;
55                    param( 'current_page', $page );
56                    my $url = self_url( -query => 1 );
57                    $attr ||= '';
58                    $label ||= $page;
59                    qq|<li$attr><a href="$url" title="$page">$label</a></li>|;
60            }
61    
62            return
63                      $pager->previous_page ? li_a_href( $pager->previous_page, $prev ) : qq|<li class=skip>$prev</li>|
64                    , ( map {
65                            if ( $_ eq $pager->current_page ) {
66                                    qq|<li class=current_page>$_</li>|;
67                            } elsif ( $_ eq '' ) {
68                                    qq|<li class=skip>...</li>|;
69                            } else {
70                                    li_a_href( $_ );
71                            }
72                    } @show_pages )
73                    , $pager->next_page ? li_a_href( $pager->next_page, $next ) : qq|<li class=skip>$next</li>|
74                    ;
75                    
76  }  }
77    
78  my $path = $ENV{PATH_INFO} || 'ecas';  my $path = $ENV{PATH_INFO} || 'ecas';
# Line 47  print Line 106  print
106          ),          ),
107          h1( $db->{name} ),          h1( $db->{name} ),
108          qq|<div id=description>|, $db->{description}, qq|</div>|,          qq|<div id=description>|, $db->{description}, qq|</div>|,
109          start_form,          start_form( -action => self_url( query => 0 ) ),
110                  radio_group(                  radio_group(
111                          -name => 'attr',                          -name => 'attr',
112                          -values => [ @attr ],                          -values => [ @attr ],
113  #                       -linebreak => 0,  #                       -linebreak => 0,
114                  ),                  ),
115                  textfield( -name => 'search' ),                  textfield( -name => 'search' ),
116                  submit                  popup_menu( -name => 'attr_operator', -values => [ '', 'STRBW', 'STREQ' ],
117                            -labels => {
118                                    '' => 'Bilo koja riječ',
119                                    'STRBW' => 'Početak',
120                                    'STREQ' => 'Točan oblik',
121                            },
122                    ),
123                    submit,
124                    hidden( -name => 'entries_per_page', -default => $entries_per_page ),
125                    hidden( -name => 'current_page', -default => 1 ),
126                    checkbox( -name => 'debug', -default => 0 ), # FIXME hidden?
127                    qq|<div id=inputs>|,
128                    h2( 'Select input' ),
129                    checkbox_group(
130                            -name => 'only_input',
131                            -values => [ map { $_->{name} } @{ $db->{input} } ],
132                            -linebreak=> 'true',
133                    ),
134                    qq|</div>|,
135    
136  ;  ;
137    
138    dump_yaml( 'inputs', $db->{input} );
139    dump_yaml( 'input names', map { $_->{name} } @{ $db->{input} } );
140    
141  print   end_form;  print   end_form;
142    
143  if ( my $search = param('search') ) {  if ( my $search = param('search') ) {
144    
145          print qq|<div id="results">|;          print qq|<div id="results">|;
146    
147          my $node = Search::Estraier::Node->new(          my $swish = SWISH::API->new( "$dir/../var/swish/$database" );
148                  url => $config->{hyperestraier}->{masterurl} . '/node/' . $database,          $swish->abort_last_error if $swish->Error;
149                  croak_on_error => 1,  
150          );          param( 'entries_per_page', $entries_per_page ) unless param('entries_per_page'); # FIXME not needed?
151            my $pager = Data::Page->new;
152          my $cond = Search::Estraier::Condition->new;          $pager->total_entries( param('current_page') * param('entries_per_page') );
153          $cond->set_phrase( $search );          $pager->$_( param($_) ) foreach ( qw/entries_per_page current_page/ );
154          my $nres = $node->search( $cond, 0 );  
155            dump_yaml( 'pager', $pager );
156    
157            my @search = ( "xml=$search" );
158    
159    #       if ( my $op = param('attr_operator') ) {
160    #               $cond->add_attr( param('attr') . " $op " . param('search') );
161    #       }
162    
163            my @only_input = param('only_input');
164    
165            push @search, '(' . join(') or (', @only_input) . ')' if @only_input;
166    
167            my $q = '(' . join(') and (', @search) . ')';
168            warn "# query: $q\n";
169            my $swish_results = $swish->query( $q );
170            $swish->abort_last_error if $swish->Error;
171    
172          if ( ! $nres ) {          dump_yaml( 'swish_results', $swish_results );
173    
174            $pager->total_entries( $swish_results->hits );
175    
176            if ( ! $pager->total_entries ) {
177                  my $no_results = "No results for search '%s'";                  my $no_results = "No results for search '%s'";
178                  printf qq|<div class="error">$no_results</div>|, $search;                  printf qq|<div class="error">$no_results</div>\n\n|, $search;
179          } else {          } else {
                 my $results = "Got %d results for search '%s'";  
                 printf qq|<div class="message">$results</div>|, $nres->hits, $search;  
180    
181                  print qq|<ol>|;                  my $results = "<b>%d</b> results for search <b>%s</b> showing results %d - %d";
182                    printf qq|<div class="message">$results</div>\n\n|, $pager->total_entries, $search, $pager->first, $pager->last;
183    
184                    my $pager_html = join("\n", show_pager( $pager ));
185    
186                    print qq|<ul class="pager">$pager_html</ul>\n\n| if $pager_html;
187    
188                    my $start = $pager->first;
189                    print qq|<ol start=$start>\n|;
190    
191                    while ( my $result = $swish_results->next_result ) {
192                            my $data = from_json $result->property('data');
193    
                 foreach my $i ( 1 .. $nres->doc_num ) {  
                         my $rdoc = $nres->get_doc( $i - 1 );  
194                          print qq|<li>|;                          print qq|<li>|;
195                          foreach my $attr ( @attr ) {                          foreach my $attr ( @attr ) {
196                                  my $v = $rdoc->attr( $attr );                                  next unless defined $data->{$attr};
197                                  if ( defined $v && $html_markup && ! $html_markup_skip->{$attr} ) {                                  my $v = $data->{$attr};
198                                    if ( $html_markup && ! $html_markup_skip->{$attr} ) {
199                                          eval "\$v = $html_markup->$attr( \$v );";                                          eval "\$v = $html_markup->$attr( \$v );";
200                                          if ( $@ ) {                                          if ( $@ ) {
201                                                  warn "disable html markup for $attr: $@";                                                  warn "disable html markup for $attr: $@";
202                                                  $html_markup_skip->{$attr} = $@;                                                  $html_markup_skip->{$attr} = $@;
203                                          }                                          }
204                                  }                                  }
                                 next unless defined $v;  
205                                  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|;
206                          }                          }
207                          print qq|</li>\n|;                          print qq|</li>\n|;
208                  }                  }
209                  print qq|</ol>|;                  print qq|</ol>\n\n|;
210    
211                    print qq|<ul class="pager bottom">$pager_html</ul>\n\n| if $pager_html;
212          }          }
213          print qq|</div>|;          print qq|</div>|;
214    
215            dump_yaml( 'pager', $pager );
216    
217  }  }
218    
 dump_yaml( 'estraier', $estraier );  
219  dump_yaml( 'db', $db );  dump_yaml( 'db', $db );
220  dump_yaml( 'html_markup_skip', $html_markup_skip );  dump_yaml( 'html_markup_skip', $html_markup_skip );
221    

Legend:
Removed from v.1137  
changed lines
  Added in v.1153

  ViewVC Help
Powered by ViewVC 1.1.26