/[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 1135 by dpavlin, Tue Apr 21 23:17:21 2009 UTC revision 1173 by dpavlin, Sat Apr 25 22:26:29 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|<div class=dump><tt>$name</tt><pre>|, YAML::Dump( @_ ), qq|</pre></div>| 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};  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];
89  die "$database not in $path" unless $path =~ m{\Q$database\E};  die "$database not in $path" unless $path =~ m{\Q$database\E};
90    
91  my $estraier = YAML::LoadFile( "$dir/../var/estraier/$database.yaml" );  my $html_markup = "$dir/$path/html.pm";
92    my $html_markup_skip;
93    if ( -e $html_markup ) {
94            require $html_markup;
95            $html_markup = $database . '::html';
96    } else {
97            undef $html_markup;
98    }
99    
100    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  my @attr = keys %{ $stats->{attr} }; # FIXME replace with real gnerated lookup
110    
111    # XXX pipe delimit list!
112    my $select_attr_operators = << '__ATTR_OPERATORS__';
113    Q*                      |       Bilo koja riječ
114    BW Q            |       Početak
115    BW Q EW         |       Točan oblik
116    __ATTR_OPERATORS__
117    
118    my $attr_operator;
119    
120    foreach ( split(/[\n\r]+/, $select_attr_operators ) ) {
121            my ( $operator,$label ) = split(/\s+\|\s+/,$_,2);
122            push @{ $attr_operator->{ '-values' } }, $operator;
123                    $attr_operator->{ '-labels' }->{$operator} = $label;
124    }
125    
126    warn "## attr_operator = ", dump( $attr_operator );
127    
128    my $only_input;
129    
130    foreach ( @{ $db->{input} } ) {
131            my $input = $_->{name} || die "no name in ",dump( $_ );
132            if ( ! $only_input->{'-labels'}->{$input} ) {
133                    push @{ $only_input->{'-values'} }, $input;
134                            $only_input->{'-labels'}->{$input} = $_->{description} || $input;
135            }
136    }
137    
138    warn "## only_input = ", dump( $only_input );
139    
140    my @style = ( '../../style.css' );
141    push @style, "../../$path/$path.css" if -e "$dir/$path/$path.css";
142    dump_yaml( 'style', \@style );
143    
144  print  print
145          start_html(          start_html(
146                  -title => $db->{name},                  -title => $db->{name},
147                  -style => '../../style.css',                  -style => [ @style ],
148          ),          ),
149          h1( $db->{name} ),          h1( $db->{name} ),
150          qq|<div id=description>|, $db->{description}, qq|</div>|,          qq|<div id=description>|, $db->{description}, qq|</div>|,
151          start_form,          start_form( -action => self_url( query => 0 ) ),
152                  radio_group(                  radio_group(
153                          -name => 'attr',                          -name => 'attr',
154                          -values => [ @attr ],                          -values => [ @attr ],
155  #                       -linebreak => 0,  #                       -linebreak => 0,
156                  ),                  ),
157                  textfield( -name => 'search' ),                  textfield( -name => 'search' ),
158                  submit                  popup_menu( -name => 'attr_operator', %$attr_operator ),
159                    submit,
160                    hidden( -name => 'entries_per_page', -default => $entries_per_page ),
161                    # we need current_page fixed at 1 so that every submit through form will reset it
162                    qq|<input type=hidden name=current_page value=1 >|,
163                    checkbox( -name => 'debug', -default => 0 ), # FIXME hidden?
164                    qq|<div id=inputs>|,
165                    h2( 'Select input' ),
166                    checkbox_group(
167                            -name => 'only_input',
168                            %$only_input,
169                            -linebreak=> 'true',
170                    ),
171                    qq|</div>|,
172    
173  ;  ;
174    
175  print   end_form;  print   end_form;
# Line 54  if ( my $search = param('search') ) { Line 178  if ( my $search = param('search') ) {
178    
179          print qq|<div id="results">|;          print qq|<div id="results">|;
180    
181          my $node = Search::Estraier::Node->new(          my $swish = SWISH::API->new( "$dir/../var/swish/$database" );
182                  url => $config->{hyperestraier}->{masterurl} . '/node/' . $database,          $swish->abort_last_error if $swish->Error;
183                  croak_on_error => 1,  
184          );          my $pager = Data::Page->new;
185            $pager->$_( param($_) ) foreach ( qw/entries_per_page current_page/ );
186          my $cond = Search::Estraier::Condition->new;  
187          $cond->set_phrase( $search );          dump_yaml( 'pager', $pager );
188          my $nres = $node->search( $cond, 0 );  
189            my @search = ();
190          if ( ! $nres ) {          if ( $search =~ m{(=|"|AND|OR)} ) {
191                  my $no_results = "No results for search '%s'";                  push @search, $search;
192                  printf qq|<div class="error">$no_results</div>|, $search;          } elsif ( my $op = param('attr_operator') ) {
193                    my $attr = param('attr');
194                    my $v = $search;
195                    $v =~ s/^\s+//;
196                    warn "-- v: $v\n";
197                    sub rewrite {
198                            my ( $whitespace, $v ) = @_;
199                            warn "## filter $op $whitespace $v\n";
200                            my $template = $op;
201                               $template =~ s{Q}{$v};
202                            $whitespace = " AND " if $whitespace;
203    
204                            return
205                                    $whitespace .
206                                    $attr . '="' . $template . '"';
207                                    ;
208                    };
209                    $v =~ s{(\s*)(\S+)}{rewrite($1,$2)}ge;
210    
211                    push @search, $v;
212            
213                    my @only_input = param('only_input');
214                    push @search, '(' . join(') OR (', map { "input=$_" } @only_input) . ')' if @only_input;
215          } else {          } else {
216                  my $results = "Got %d results for search '%s'";                  push @search, "all=\"$search\"";
217                  printf qq|<div class="message">$results</div>|, $nres->hits, $search;          }
218    
219            my $q = '(' . join(') AND (', @search) . ')';
220            $q =~ s{\(\((.+)\)\)}{($1)};
221            warn "# query: $q\n";
222            my $swish_results = $swish->query( $q );
223    
224                  print qq|<ol>|;          dump_yaml( 'swish_results', $swish_results );
225    
226            $pager->total_entries( $swish_results->hits );
227    
228            $swish_results->seek_result( $pager->first );
229    
230            if ( ! $pager->total_entries ) {
231                    my $no_results = 'No results for search <b>%s</b>';
232                    $no_results = $swish->error_string . '<br><b>%s</b>' if $swish->error;
233                    printf qq|<div class="error">$no_results</div>\n\n|, $q;
234            } else {
235    
236                    my $results = "<b>%d</b> results for search <b>%s</b> showing results %d - %d";
237                    printf qq|<div class="message">$results</div>\n\n|, $pager->total_entries, $q, $pager->first, $pager->last;
238    
239                    my $pager_html = join("\n", show_pager( $pager ));
240    
241                    print qq|<ul class="pager">$pager_html</ul>\n\n| if $pager_html;
242    
243                    my $start = $pager->first;
244                    print qq|<ol start=$start>\n|;
245    
246                    my $limit = $pager->entries_on_this_page;
247    
248                    while ( my $result = $swish_results->next_result ) {
249                            last if $limit-- == 0;
250    
251                            my $data = from_json $result->property('data');
252    
253                            dump_yaml( 'data', $data );
254    
                 foreach my $i ( 1 .. $nres->doc_num ) {  
                         my $rdoc = $nres->get_doc( $i - 1 );  
255                          print qq|<li>|;                          print qq|<li>|;
256                          print qq|<div><label>$_</label><span class=$_>|, $rdoc->attr( $_ ), qq|</span></div>|                          foreach my $attr ( @attr ) {
257                                  foreach @attr;                                  next unless defined $data->{$attr};
258                                    my $v = $data->{$attr};
259                                    if ( $html_markup && ! $html_markup_skip->{$attr} ) {
260                                            eval "\$v = $html_markup->$attr( \$v );";
261                                            if ( $@ ) {
262                                                    warn "disable html markup for $attr: $@";
263                                                    $html_markup_skip->{$attr} = $@;
264                                            }
265                                    }
266                                    print qq|<div><label>$attr</label><span class=$attr>$v</span></div>\n|;
267                            }
268                          print qq|</li>\n|;                          print qq|</li>\n|;
269                  }                  }
270                  print qq|</ol>|;                  print qq|</ol>\n\n|;
271    
272                    print qq|<ul class="pager bottom">$pager_html</ul>\n\n| if $pager_html;
273          }          }
274          print qq|</div>|;          print qq|</div>|;
275    
276            dump_yaml( 'pager', $pager );
277    
278  }  }
279    
280  dump_yaml( 'estraier', $estraier );  dump_yaml( "config databases $database", $db );
281  dump_yaml( 'db', $db );  dump_yaml( 'html_markup_skip', $html_markup_skip );
282    
283  print   end_html;  print   end_html;

Legend:
Removed from v.1135  
changed lines
  Added in v.1173

  ViewVC Help
Powered by ViewVC 1.1.26