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

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

revision 53 by dpavlin, Sun Jun 1 18:49:49 2003 UTC revision 158 by dpavlin, Mon Nov 17 21:18:37 2003 UTC
# Line 9  use SWISH; Line 9  use SWISH;
9  use Text::Iconv;  use Text::Iconv;
10  use DBI;  use DBI;
11  use Config::IniFiles;  use Config::IniFiles;
12    use Text::Unaccent;
13    
14  use lib '..';  use lib '..';
15  use index_DBI;  use index_DBI_cache;
16  use back2html;  use back2html;
17    
18  # configuration options  
19  # FIXME they really should go in configuration file!  # read global.conf configuration
20  my $TEMPLATE_PATH = '/data/webpac/template_html';  my $cfg_global = new Config::IniFiles( -file => '../global.conf' ) || die "can't open 'global.conf'";
21  my $CHARSET = 'ISO-8859-2';  
22  my $SWISH = '/usr/bin/swish-e';  # configuration options from global.conf
23  my $INDEX = '/data/webpac/index/isis.index';  my $TEMPLATE_PATH = $cfg_global->val('webpac', 'template_html') || die "need template_html in global.conf, section webpac";
24  my $MAX_HITS = 500;  my $CHARSET = $cfg_global->val('webpac', 'charset') || 'ISO-8859-1';
25  my $ON_PAGE = 10;  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    
32    
33  Text::Iconv->raise_error(0);     # Conversion errors raise exceptions  Text::Iconv->raise_error(0);     # Conversion errors raise exceptions
34    
35  my $from_utf8 = Text::Iconv->new('UTF8', $CHARSET);  my $from_utf8 = Text::Iconv->new('UTF8', $CHARSET);
36    
 # read global.conf configuration  
 my $cfg_global = new Config::IniFiles( -file => '../global.conf' ) || die "can't open 'global.conf'";  
   
37    
38  sub setup {  sub setup {
39          my $self = shift;          my $self = shift;
# Line 46  sub setup { Line 50  sub setup {
50          $self->header_props(-charset=>$CHARSET);          $self->header_props(-charset=>$CHARSET);
51  }  }
52    
53    sub in_template {
54            my $html = shift || "This page is left unintentionally blank";
55            return $html if (! defined($TEMPLATE));
56            if (open(T, $TEMPLATE)) {
57                    my $template_html = join("\n",<T>);
58                    close(T);
59                    $template_html =~ s/##webpac##/$html/gsi;
60                    return $template_html;
61            } else {
62                    return "Can't read template '$TEMPLATE'";
63            }
64    }
65    
66  sub show_search_form {  sub show_search_form {
67          my $self = shift;          my $self = shift;
68    
# Line 57  sub show_search_form { Line 74  sub show_search_form {
74    
75          my $fif = new HTML::FillInForm;          my $fif = new HTML::FillInForm;
76    
77          return $fif->fill(scalarref => \$html, fobject => $q,          return in_template($fif->fill(scalarref => \$html, fobject => $q,
78                  target => 'search');                  target => 'search'));
79  }  }
80    
81  sub show_results_list {  sub show_results_list {
# Line 75  sub show_results_list { Line 92  sub show_results_list {
92          my @path_arr = $q->param('path');          my @path_arr = $q->param('path');
93          my $full = $q->param('full');          my $full = $q->param('full');
94    
95          for(my $i = 1; $i <=10; $i++) {          my @persist_vars = ( 'rm' );
96            my @url_params = ( 'rm=results', 'show_full=1', 'last_PAGER_offset='.$q->param('PAGER_offset') || 0 );
97    
98            # support parametars "f" and "v" for start
99            for(my $i = ""; $i <=30; $i++) {
100    
101                  return show_index($self, $i) if ($q->param("f".$i."_index"));                  return show_index($self, $i) if ($q->param("f".$i."_index"));
102                  next if (! $q->param("f$i"));  
103                  next if (! $q->param("v$i"));                  next if (! $q->param("v$i"));
104                    next if (! $q->param("f$i"));
105    
106                  # re-write query from +/- to and/and not                  push @persist_vars, "f$i";
107                  my $s;                  push @persist_vars, "v$i";
108                  my $search = $q->param("v$i");  
109                  while ($search =~ s/\s*("[^"]+")\s*/ /) {                  push @url_params,"f$i=".$q->url_param("f$i");
110                          $s .= "$1 ";                  foreach my $v ($q->url_param("v$i")) {
111                            push @url_params,"v$i=$v";
112                  }                  }
                 $search =~ s/^\s+//;  
                 $search =~ s/\s+$//;  
113    
114                  foreach (split(/\s+/,$search)) {                  my $wc="*";     # swish wildcard
115                          if (m/^([+-])(\S+)/) {                  $wc="" if ($i eq "");   # don't apply wildcard on field 0
116                                  $s.= ($s) ? "and " : "";  
117                                  $s.="not " if ($1 eq "-");                  # re-write query from +/- to and/and not
118                                  $s.="$2* ";                  my @param_vals = $q->param("v$i");
119                          } elsif (m/(and|or|not)/i) {                  my @swish_q;
120                                  $s.="$_ ";                  while (my $search = shift @param_vals) {
121                          } else {                          my $s;
122                                  $s.="$_* ";                          # remove accents
123                            $search = unac_string($CHARSET,$search);
124                            while ($search =~ s/\s*("[^"]+")\s*/ /) {
125                                    $s .= "$1 ";
126                          }                          }
127                  }                          $search =~ s/^\s+//;
128                  $s =~ s/\*+/*/g;                          $search =~ s/\s+$//;
129    
130                  push @s_arr,$q->param("f$i")."_swish=($s)";                          foreach (split(/\s+/,$search)) {
131                                    if (m/^([+-])(\S+)/) {
132                                            $s.= ($s) ? "and " : "";
133                                            $s.="not " if ($1 eq "-");
134                                            $s.="$2$wc ";
135                                    } elsif (m/^\s*(and|or|not)\s*$/i) {
136                                            $s.="$_ ";
137                                    # don't add * to words with less than x chars
138                                    } elsif (length($_) <= $MIN_WILDCARD) {
139                                            $s.="$_ ";
140                                    } else {
141                                            $s.="$_$wc ";
142                                    }
143                            }
144                            $s =~ s/\*+/*/g;
145                            push @swish_q,$s;
146                    }
147                    # FIXME default operator for multi-value fields is or. There is
148                    # no way to change it, except here for now. Is there need?
149                    push @s_arr, $q->param("f$i")."_swish=(".join(" or ",@swish_q).")";
150          }          }
151    
152          my $tmpl = $self->load_tmpl('results.html');          my $tmpl = $self->load_tmpl('results.html', global_vars => 1);
153    
154            sub esc_html {
155                    my $html = shift;
156                    $html =~ s/</&lt;/g;
157                    $html =~ s/>/&gt;/g;
158                    return $html;
159            }
160    
161          # call swish          # call swish
162          my $sh = SWISH->connect('Fork',          my $sh = SWISH->connect('Fork',
# Line 119  sub show_results_list { Line 169  sub show_results_list {
169                          push @swish_results, {                          push @swish_results, {
170                                  nr => ($#swish_results + 2),                                  nr => ($#swish_results + 2),
171                                  path => $hit->swishdocpath,                                  path => $hit->swishdocpath,
172                                  headline => $from_utf8->convert($hit->headline),                                  headline => esc_html($from_utf8->convert($hit->headline)),
173                                  html => back2html($from_utf8->convert($hit->html)),                                  html => back2html($from_utf8->convert($hit->html)),
174                                  rank => $hit->swishrank };                                  rank => $hit->swishrank };
175    
# Line 129  sub show_results_list { Line 179  sub show_results_list {
179          );          );
180    
181          die $SWISH::errstr unless $sh;          die $SWISH::errstr unless $sh;
   
182          # construct swish query          # construct swish query
183          my $sw_q = join(" and ",@s_arr);          my $sw_q = join(" and ",@s_arr);
184          if (@path_arr) {          if (@path_arr && $q->param('show_full')) {
185                  $sw_q .= "and (swishdocpath=\"";                  $sw_q .= "and (swishdocpath=\"";
186                  $sw_q .= join("\" or swishdocpath=\"",@path_arr);                  $sw_q .= join("\" or swishdocpath=\"",@path_arr);
187                  $sw_q .= "\")";                  $sw_q .= "\")";
188                  $tmpl->param('full',1); # show full records                  $tmpl->param('full',1); # show full records
189            } elsif ($q->param('show_full')) {
190                    # just show full path, no path defined
191                    $tmpl->param('full',1);
192            } else {
193                    $tmpl->param('full',0);
194          }          }
195    
196          my $hits = $sh->query($sw_q);          my $hits = $sh->query($sw_q);
# Line 147  sub show_results_list { Line 201  sub show_results_list {
201          $tmpl->param('PAGER_offset',$q->param("PAGER_offset") || 0);          $tmpl->param('PAGER_offset',$q->param("PAGER_offset") || 0);
202          $tmpl->param('last_PAGER_offset',$q->param("last_PAGER_offset") || 0);          $tmpl->param('last_PAGER_offset',$q->param("last_PAGER_offset") || 0);
203    
204            $tmpl->param('url_params',"?".join("&",@url_params));
205    
206          # create a Pager object          # create a Pager object
207          my $pager = HTML::Pager->new(          my $pager = HTML::Pager->new(
208                  # required parameters                  # required parameters
# Line 156  sub show_results_list { Line 212  sub show_results_list {
212    
213                          my @result;                          my @result;
214                          for (my $i=0; $i<$rows; $i++) {                          for (my $i=0; $i<$rows; $i++) {
215                                  push @result, $swish_results[$offset+$i] if $swish_results[$offset+$i];                                  my $r = $swish_results[$offset+$i];
216                                    if ($r && $tmpl->param('full')) {
217                                            push @result, $r;
218                                    } elsif ($r) {
219                                            # if not full output, skip html
220                                            delete $r->{html};
221                                            push @result, $r;
222                                    }
223                          }                          }
224                          return \@result;                          return \@result;
225                  },                  },
226                  rows => $hits,                  rows => $hits,
227                  page_size => $ON_PAGE,                  page_size => $ON_PAGE,
228                  # some optional parameters                  # some optional parameters
229                  persist_vars => [                  persist_vars => [ @persist_vars ],
                         'rm',  
                         'f1', 'v1',  
                         'f2', 'v2',  
                         'f3', 'v3',  
                         'f4', 'v4',  
                         'f5', 'v5',  
                         'f6', 'v6',  
                         'f7', 'v7',  
                         'f8', 'v8',  
                         'f9', 'v9',  
                         ],  
230                  #cell_space_color => '#000000',                  #cell_space_color => '#000000',
231                  #cell_background_color => '#ffffff',                  #cell_background_color => '#ffffff',
232                  #nav_background_color => '#dddddd',                  #nav_background_color => '#dddddd',
# Line 185  sub show_results_list { Line 237  sub show_results_list {
237    
238          my $html = $pager->output;          my $html = $pager->output;
239    
240          return $html;          return in_template($html);
241  }  }
242    
243  sub show_index {  sub show_index {
# Line 206  sub show_index { Line 258  sub show_index {
258                  $cfg_global->val('global', 'dbi_passwd') || ''                  $cfg_global->val('global', 'dbi_passwd') || ''
259          );          );
260    
261          my $total = $index->check($field);          my $total = $index->count($field,$limit);
262          if (! $total) {          if (! $total) {
263                  my $tmpl = $self->load_tmpl('no_index.html');                  my $tmpl = $self->load_tmpl('no_index.html');
264                  $tmpl->param('field',$field);                  $tmpl->param('field',$field);
# Line 214  sub show_index { Line 266  sub show_index {
266                  return $html;                  return $html;
267          }          }
268    
269          my $tmpl = $self->load_tmpl('index_res.html');          my $tmpl = $self->load_tmpl('index_res.html', global_vars => 1);
270          $tmpl->param('field',$field);          $tmpl->param('field',$field);
271          $tmpl->param('limit',$limit);          $tmpl->param('limit',$limit);
272          $tmpl->param('total',$total);          $tmpl->param('total',$total);
# Line 229  sub show_index { Line 281  sub show_index {
281                  get_data_callback => sub {                  get_data_callback => sub {
282                          my ($offset, $rows) = @_;                          my ($offset, $rows) = @_;
283    
284                          my @result = $index->fetch($field,'item',$limit, $offset, $rows);                          my @result = $index->fetch($field,$limit, $offset, $rows);
285                          return \@result;                          return \@result;
286                  },                  },
287                  rows => $total,                  rows => $total,
# Line 243  sub show_index { Line 295  sub show_index {
295                  template => $tmpl,                  template => $tmpl,
296          );          );
297    
298          return $pager->output;          return in_template($pager->output);
299  }  }
300    
301  1;  1;

Legend:
Removed from v.53  
changed lines
  Added in v.158

  ViewVC Help
Powered by ViewVC 1.1.26