/[webpac]/trunk2/WebPac.pm
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 /trunk2/WebPac.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 12 by dpavlin, Wed Jan 22 22:27:19 2003 UTC revision 320 by dpavlin, Sun Apr 18 00:57:39 2004 UTC
# Line 3  package WebPac; Line 3  package WebPac;
3  use base 'CGI::Application';  use base 'CGI::Application';
4  use strict;  use strict;
5    
 use HTML::Pager;  
6  use HTML::FillInForm;  use HTML::FillInForm;
7  use SWISH;  use SWISH::API;
8  use Unicode::MapUTF8 qw(to_utf8 from_utf8 utf8_supported_charset);  use Text::Iconv;
9  use DBI;  use DBI;
10    use Config::IniFiles;
11    use Text::Unaccent;
12    use Data::Pageset;
13    
14  use lib '..';  use lib '..';
15  use index_DBI;  use index_DBI_cache;
16    use back2html;
17    
 # configuration options  
 # FIX: they really should go in configuration file!  
 my $TEMPLATE_PATH = '/data/webpac/template_html';  
 my $CHARSET = 'ISO-8859-2';  
 my $SWISH = '/usr/local/bin/swish-e';  
 my $INDEX = '/data/webpac/index/isis.index';  
 my $MAX_HITS = 500;  
 my $ON_PAGE = 10;  
18    
19    # read global.conf configuration
20    my $cfg_global = new Config::IniFiles( -file => '../global.conf' ) || die "can't open 'global.conf'";
21    
22    # configuration options from global.conf
23    my $TEMPLATE_PATH = $cfg_global->val('webpac', 'template_html') || die "need template_html in global.conf, section webpac";
24    my $CHARSET = $cfg_global->val('webpac', 'charset') || 'ISO-8859-1';
25    my $SWISH = $cfg_global->val('webpac', 'swish') || '/usr/bin/swish-e';
26    my $INDEX = $cfg_global->val('webpac', 'index') || die "need index in global.conf, section webpac";
27    my $MAX_HITS = $cfg_global->val('webpac', 'max_hits') || 0;
28    my $ON_PAGE =$cfg_global->val('webpac', 'on_page') || 10;
29    my $MIN_WILDCARD =$cfg_global->val('webpac', 'min_wildcard') || 1;
30    my $TEMPLATE =$cfg_global->val('webpac', 'template');
31    my $UNAC_FILTER =$cfg_global->val('global', 'my_unac_filter');
32    my $BASE_PATH =$cfg_global->val('webpac', 'base_path');
33    # for pager
34    my $pages_per_set = $cfg_global->val('webpac', 'pages_per_set') || 10;
35    
36    Text::Iconv->raise_error(0);     # Conversion errors raise exceptions
37    
38    my $from_utf8 = Text::Iconv->new('UTF8', $CHARSET);
39    
40    if ($UNAC_FILTER) {
41            require $UNAC_FILTER;
42    } else {
43            sub WebPac::my_unac_string {
44                    my ($charset, $string) = (@_);
45                    return $string;
46            }
47    }
48    
49    # use path from cgi script to support templates in subdirs
50    sub url_ex {
51            my $q = shift || die "suff2file needs CGI object!";
52            my $tpl = shift || die "url_ex needs template name!";
53            return suff2file($BASE_PATH, $q->url(-absolute => 1,-path => 1),$TEMPLATE_PATH,$tpl);
54    }
55    
56    sub suff2file($$$$) {
57            my ($base_path, $p, $path, $tpl) = @_;
58    
59            return $tpl if (! $base_path);
60    
61            # strip everything to and including base path, leaving only
62            # additional (virtual) path
63            if ($base_path eq "/") {
64                    $p =~ s,/*,,g;
65                    my ($name,$ext) = split(/\./,$tpl);
66                    $p = $name . "-" . $p . "." . $ext;
67            } elsif ($p =~ s,^.*?$base_path,,) {
68                    $p =~ s,/*,,g;
69                    my ($name,$ext) = split(/\./,$tpl);
70                    $p = $name . $p . "." . $ext;
71            } else {
72                    # if unable reset it!
73                    $p = $tpl;
74            }
75    
76            if ( -e "$path/$p") {
77                    return $p;
78            } else {
79                    return $tpl;
80            }
81    
82    }
83    
84  sub setup {  sub setup {
85          my $self = shift;          my $self = shift;
# Line 37  sub setup { Line 96  sub setup {
96          $self->header_props(-charset=>$CHARSET);          $self->header_props(-charset=>$CHARSET);
97  }  }
98    
99    sub in_template {
100            my $q = shift || die "need CGI object!";
101            my $html = shift || die "This page is left unintentionally blank";
102            return $html if (! defined($TEMPLATE));
103    
104            my ($dir,$tpl);
105            if ($TEMPLATE =~ m,^(.*?/*)([^/]+)$,) {
106                    ($dir,$tpl) = ($1,$2);
107            } else {
108                    die "can't parse TEMPLATE path";
109            }
110    
111            my $master_tpl = suff2file($BASE_PATH, $q->url(-absolute => 1, -path => 1),$dir,$tpl);
112            if (open(T, $master_tpl)) {
113                    my $template_html = join("\n",<T>);
114                    close(T);
115                    $template_html =~ s/##webpac##/$html/gsi;
116                    return $template_html;
117            } else {
118                    return "Can't read template '$master_tpl'";
119            }
120    }
121    
122    #--------------------------------------------------------------------------
123    
124    #
125    # make pager navigation and fill template variables
126    # compatibile with HTML::Pager
127    #
128    
129    sub make_pager($$$) {
130            my ($q,$tmpl,$pager) = @_;
131    
132            #
133            # pager navigation
134            #
135            my ($pager_prev,$pager_next, $pager_jump) = ('','','');
136    
137            my $nav_fmt=qq{ <a href="%s">%s</a> };
138    
139            if ($pager->current_page() > $pager->first_page) {
140                    $q->param('PAGER_offset', $pager->current_page - 1);
141                    $pager_prev .= sprintf($nav_fmt,$q->url(-relative=>1, -query=>1),'&lt;&lt;');
142            }
143    
144            if ($pager->previous_set) {
145                    $q->param('PAGER_offset', $pager->previous_set);
146                    $pager_prev .= sprintf($nav_fmt,$q->url(-relative=>1, -query=>1),'..');
147            }
148    
149    
150            foreach my $p (@{$pager->pages_in_set()}) {
151                    next if ($p < 0);
152                    if($p == $pager->current_page()) {
153                            $pager_jump .= "<b>$p</b> ";
154                    } else {
155                            $q->param('PAGER_offset', $p);
156                            $pager_jump .= sprintf($nav_fmt,$q->url(-relative=>1, -query=>1),$p);
157                    }
158            }
159    
160            if ($pager->next_set) {
161                    $q->param('PAGER_offset', $pager->next_set);
162                    $pager_next .= sprintf($nav_fmt,$q->url(-relative=>1, -query=>1),'..');
163            }
164    
165            if ($pager->current_page() < $pager->last_page) {
166                    $q->param('PAGER_offset', $pager->current_page + 1);
167                    $pager_next .= sprintf($nav_fmt,$q->url(-relative=>1, -query=>1),'&gt;&gt;');
168            }
169    
170            $tmpl->param('PAGER_PREV', $pager_prev);
171            $tmpl->param('PAGER_JUMP', $pager_jump);
172            $tmpl->param('PAGER_NEXT', $pager_next);
173    
174    }
175    
176    #
177    # put persisten variables in template
178    #
179    
180    sub make_pager_vars {
181            my $q = shift @_;
182            my $tmpl = shift @_;
183            my @persist_vars = @_;
184            my $hidden_vars = '';
185            foreach my $v (@persist_vars) {
186                    $hidden_vars .= '<input type="hidden" name="'.$v.'" value="'.$q->param($v).'"/>'."\n";
187            }
188    
189            $tmpl->param('PAGER_HIDDEN', $hidden_vars);
190            $tmpl->param('PAGER_JAVASCRIPT', qq{
191    <SCRIPT LANGUAGE="Javascript">
192    <!-- Begin
193            // dummy emulator for HTML::Pager templates
194            function PAGER_set_offset_and_submit() {
195                    return true;
196            }
197    // End -->
198    </script>  
199            });
200    }
201    
202    #--------------------------------------------------------------------------
203    
204  sub show_search_form {  sub show_search_form {
205          my $self = shift;          my $self = shift;
206    
207          # Get the CGI.pm query object          # Get the CGI.pm query object
208          my $q = $self->query();          my $q = $self->query();
209    
210          my $tmpl = $self->load_tmpl('search.html');          my $tmpl = $self->load_tmpl(url_ex($q,'search.html'));
211          my $html = $tmpl->output;          my $html = $tmpl->output;
212    
213          my $fif = new HTML::FillInForm;          my $fif = new HTML::FillInForm;
214    
215          return $fif->fill(scalarref => \$html, fobject => $q,          return in_template($q,$fif->fill(scalarref => \$html, fobject => $q,
216                  target => 'search');                  target => 'search'));
217  }  }
218    
219  sub show_results_list {  sub show_results_list {
# Line 57  sub show_results_list { Line 221  sub show_results_list {
221    
222          my $q = $self->query();          my $q = $self->query();
223    
         my @swish_results;      # results from swish  
   
224          # load template for this page          # load template for this page
225    
226          my @s_arr;      # all queries are located here          my @s_arr;      # all queries are located here
227    
228          for(my $i = 1; $i <=10; $i++) {          my @path_arr = $q->param('path');
229            my $full = $q->param('full');
230    
231            my @persist_vars = ( 'rm' );
232            my @url_params = ( 'rm=results', 'show_full=1', 'last_PAGER_offset='.($q->param('PAGER_offset') || 0) );
233    
234            # support parametars "f" and "v" for start
235            for(my $i = ""; $i <=30; $i++) {
236    
237                  return show_index($self, $i) if ($q->param("f".$i."_index"));                  return show_index($self, $i) if ($q->param("f".$i."_index"));
238                  next if (! $q->param("f$i"));  
239                  next if (! $q->param("v$i"));                  next if (! $q->param("v$i"));
240                    next if (! $q->param("f$i"));
241    
242                  # re-write query from +/- to and/and not                  push @persist_vars, "f$i";
243                  my $s;                  push @persist_vars, "v$i";
244                  my $search = $q->param("v$i");                  push @persist_vars, "e$i" if ($q->param("e$i"));
245                  while ($search =~ s/\s*("[^"]+")\s*/ /) {  
246                          $s .= "$1 ";                  push @url_params,"f$i=".$q->url_param("f$i");
247                    foreach my $v ($q->url_param("v$i")) {
248                            push @url_params,"v$i=$v";
249                  }                  }
250                  $search =~ s/^\s+//;                  push @url_params,"e$i=".$q->url_param("e$i");
251                  $search =~ s/\s+$//;  
252                    my $wc="*";     # swish wildcard
253                    $wc="" if ($i eq "");   # don't apply wildcard on field 0
254    
255                  foreach (split(/\s+/,$search)) {                  # re-write query from +/- to and/and not
256                          if (m/^([+-])(\S+)/) {                  my @param_vals = $q->param("v$i");
257                                  $s.= ($s) ? "and " : "";                  my @swish_q;
258                                  $s.="not " if ($1 eq "-");                  my ($pre,$post,$exact) = ('','','');
259                                  $s.="$2* ";                  while (my $search = shift @param_vals) {
260                          } else {                          my $s;
261                                  $s.="$_* ";                          # remove accents
262                            $search = my_unac_string($CHARSET,$search);
263                            while ($search =~ s/\s*("[^"]+")\s*/ /) {
264                                    $s .= "$1 ";
265                          }                          }
266                            $search =~ s/^\s+//;
267                            $search =~ s/\s+$//;
268    
269                            # filed e[nr] is exact match bitmask
270                            # 1 = beginning, 2=end, 3=both
271                            $pre = '"xxbxx ' if ($q->param("e$i") & 1);
272                            $post = ' xxexx"' if ($q->param("e$i") & 2);
273                            # add qotes on other side
274                            if ($q->param("e$i")) {
275                                    $pre = '"' if (! $pre);
276                                    $post = '"' if (! $post);
277                                    # what about wildcards?
278                                    $wc = '';
279                                    $wc = '*' if ($q->param("e$i") & 4);
280                                    $exact = '_exact';
281                            }
282    
283                            foreach (split(/\s+/,$search)) {
284                                    if (m/^([+-])(\S+)/) {
285                                            $s.= ($s) ? "and " : "";
286                                            $s.="not " if ($1 eq "-");
287                                            $s.=$2.$wc." ";
288                                    } elsif (m/^\s*(and|or|not)\s*$/i) {
289                                            $s.=$_." ";
290                                    # don't add * to words with less than x chars
291                                    } elsif (length($_) <= $MIN_WILDCARD) {
292                                            $s.=$_." ";
293                                    } else {
294                                            $s.=$_.$wc." ";
295                                    }
296                            }
297                            $s =~ s/\*+/*/g;
298                            $s = $pre.$s.$post if ($q->param("e$i"));
299                            push @swish_q,$s;
300                  }                  }
301                    # FIXME default operator for multi-value fields is or. There is
302                    # no way to change it, except here for now. Is there need?
303                    push @s_arr, $q->param("f$i")."_swish".$exact."=(".join(" or ",@swish_q).")";
304            }
305    
306                  push @s_arr,$q->param("f$i")."_swish=($s)";          my $tmpl = $self->load_tmpl(url_ex($q,'results.html'), global_vars => 1);
307    
308            $tmpl->param('url_params',"?".join("&",@url_params));
309    
310            sub esc_html {
311                    my $html = shift;
312                    $html =~ s/</&lt;/g;
313                    $html =~ s/>/&gt;/g;
314                    return $html;
315          }          }
316    
317          my $tmpl = $self->load_tmpl('results.html');          my $sort = 'swishrank';
318            if ($q->param("sort")) {
319                    $sort = 'headline';
320                    push @persist_vars, "sort";
321            }
322    
323          # call swish          # construct swish query
324          my $sh = SWISH->connect('Fork',          my $sw_q = join(" and ",@s_arr);
325                  prog     => $SWISH,          if (@path_arr && $q->param('show_full')) {
326                  indexes  => $INDEX,                  $sw_q .= "and (swishdocpath=\"";
327                  #properties  => [qw/god br nr/],                  $sw_q .= join("\" or swishdocpath=\"",@path_arr);
328                  results  => sub {                  $sw_q .= "\")";
329                          my ($sh,$hit) = @_;                  $tmpl->param('full',1); # show full records
330            } elsif ($q->param('show_full')) {
331                          push @swish_results, {                  # just show full path, no path defined
332                                  nr => ($#swish_results + 2),                  $tmpl->param('full',1);
333                                  path => $hit->swishdocpath,          } else {
334                                  title => to_utf8({ -string => $hit->swishtitle, -charset => $CHARSET }),                  $tmpl->param('full',0);
335                                  rank => $hit->swishrank };          }
   
 #                       my @fields = $hit->field_names;  
 #                       print "Field '$_' = '", $hit->$_, "'<br>\n" for sort @fields;  
                 },  
                 #startnum => 0,  
                 maxhits => $MAX_HITS,  
         );  
336    
337          die $SWISH::errstr unless $sh;          # create new swish instance
338            my $swish = SWISH::API->new($INDEX);
339            $swish->AbortLastError if $swish->Error;
340    
341          my $hits = $sh->query(join(" and ",@s_arr)) || 0;       # FIX: and/or          # execute query and get number of results from SWISH-E
342            my $search = $swish->New_Search_Object;
343    
344            $search->SetSort($sort);
345    
346            my $results = $search->Execute($sw_q);
347            $swish->AbortLastError if $swish->Error;
348    
349            my $hits = $results->Hits;
350    
351          $tmpl->param('hits',$hits);          $tmpl->param('hits',$hits);
352          $tmpl->param('search',join(" and ",@s_arr));          $tmpl->param('search',$sw_q);
353    
354          # create a Pager object          $tmpl->param('PAGER_offset',$q->param("PAGER_offset") || 0);
355          my $pager = HTML::Pager->new(          $tmpl->param('last_PAGER_offset',$q->param("last_PAGER_offset") || 0);
                 # required parameters  
                 query => $q,  
                 get_data_callback => sub {  
                         my ($offset, $rows) = @_;  
   
                         my @result;  
                         for (my $i=0; $i<$rows; $i++) {  
                                 push @result, $swish_results[$offset+$i] if $swish_results[$offset+$i];  
                         }  
                         return \@result;  
                 },  
                 rows => $hits,  
                 page_size => $ON_PAGE,  
                 # some optional parameters  
                 persist_vars => [  
                         'rm',  
                         'f1', 'v1',  
                         'f2', 'v2',  
                         'f3', 'v3',  
                         'f4', 'v4',  
                         'f5', 'v5',  
                         'f6', 'v6',  
                         'f7', 'v7',  
                         'f8', 'v8',  
                         'f9', 'v9',  
                         ],  
                 #cell_space_color => '#000000',  
                 #cell_background_color => '#ffffff',  
                 #nav_background_color => '#dddddd',  
                 #javascript_presubmit => 'last_minute_javascript()',  
                 debug => 1,  
                 template => $tmpl,  
         );  
356    
357          my $html = $pager->output;          #
358            # build pager
359            #
360    
361          return $html;          my $current_page = $q->param('PAGER_offset') || 1;
362    
363            my $pager = Data::Pageset->new({
364                    'total_entries' => $hits,
365                    'entries_per_page' => $ON_PAGE,
366                    'current_page' => $current_page,
367                    'pages_per_set' => $pages_per_set,
368            });
369    
370            $results->SeekResult( $pager->first - 1 );
371    
372            # get number of entries on this page
373            my $i = $pager->entries_on_this_page;
374    
375            # results from swish for template
376            my @pager_data_list;
377    
378            for(my $i=$pager->first; $i<=$pager->last; $i++) {
379    
380                    my $result = $results->NextResult;
381                    last if (! $result);
382    
383                    my $r = {
384                            nr => $i,
385                            path => $result->Property('swishdocpath'),
386                            headline => esc_html($from_utf8->convert($result->Property('headline'))),
387                            rank => $result->Property('swishrank')
388                    };
389    
390                    $r->{html} = back2html($from_utf8->convert($result->Property('html'))) if ($q->param('show_full'));
391    
392                    push @pager_data_list, $r;
393            }
394    
395    
396    
397            # put something in template
398            make_pager($q, $tmpl, $pager);
399            make_pager_vars($q, $tmpl, @persist_vars);
400            $tmpl->param('PAGER_DATA_LIST', \@pager_data_list);
401    
402            my $html = $tmpl->output;
403    
404            return in_template($q,$html);
405  }  }
406    
407  sub show_index {  sub show_index {
# Line 173  sub show_index { Line 415  sub show_index {
415    
416          my $html;          my $html;
417    
418          my $index = new index_DBI();          my $index = new index_DBI(
419                    $cfg_global->val('global', 'dbi_dbd'),
420                    $cfg_global->val('global', 'dbi_dsn'),
421                    $cfg_global->val('global', 'dbi_user'),
422                    $cfg_global->val('global', 'dbi_passwd') || ''
423            );
424    
425            my $total = $index->count($field,$limit);
426    
         my $total = $index->check($field);  
427          if (! $total) {          if (! $total) {
428                  my $tmpl = $self->load_tmpl('no_index.html');                  my $tmpl = $self->load_tmpl(url_ex($q,'no_index.html'));
429                  $tmpl->param('field',$field);                  $tmpl->param('field',$field);
430                  $html = $tmpl->output;                  $html = $tmpl->output;
431                  return $html;                  return $html;
432          }          }
433    
434          my $tmpl = $self->load_tmpl('index_res.html');          my $tmpl = $self->load_tmpl(url_ex($q,'index_res.html'), global_vars => 1);
435          $tmpl->param('field',$field);          $tmpl->param('field',$field);
436          $tmpl->param('limit',$limit);          $tmpl->param('limit',$limit);
437          $tmpl->param('total',$total);          $tmpl->param('total',$total);
438    
439          my $pager = HTML::Pager->new(  # FIXME I should set offset and leave out limit from fetch!!
440                  query => $q,  #       if (! $q->param("PAGER_offset") {
441                  get_data_callback => sub {  #               $q->param("Pager_offet)
442                          my ($offset, $rows) = @_;  #       }
443    
444                          my @result = $index->fetch($field,'item',$limit, $offset, $rows);  
445                          return \@result;          #
446                  },          # build pager
447                  rows => $total,          #
448                  page_size => $ON_PAGE,          my $pager = Data::Pageset->new({
449                  persist_vars => [                  'total_entries' => $total,
450                          'rm',                  'entries_per_page' => $ON_PAGE,
451                          "f$i", "v$i", "f".$i."_index",                  'current_page' => $q->param('PAGER_offset') || 1,
452                          'offset',                  'pages_per_set' => $pages_per_set
453                          ],          });
454                  debug => 1,  
455                  template => $tmpl,          my @persist_vars = qw{rm f$i v$i f$i_index offset};
456          );  
457            make_pager($q, $tmpl, $pager);
458            make_pager_vars($q, $tmpl, @persist_vars);
459    
460            my @pager_data_list = $index->fetch($field,$limit, $pager->first - 1, $pager->entries_on_this_page);
461            $tmpl->param('PAGER_DATA_LIST', \@pager_data_list);
462    
463          return $pager->output;          return in_template($q,$tmpl->output);
464  }  }
465    
466  1;  1;

Legend:
Removed from v.12  
changed lines
  Added in v.320

  ViewVC Help
Powered by ViewVC 1.1.26