/[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 128 by dpavlin, Thu Sep 4 14:57:02 2003 UTC revision 163 by dpavlin, Thu Nov 20 21:23:40 2003 UTC
# Line 27  my $INDEX = $cfg_global->val('webpac', ' Line 27  my $INDEX = $cfg_global->val('webpac', '
27  my $MAX_HITS = $cfg_global->val('webpac', 'max_hits') || 0;  my $MAX_HITS = $cfg_global->val('webpac', 'max_hits') || 0;
28  my $ON_PAGE =$cfg_global->val('webpac', 'on_page') || 10;  my $ON_PAGE =$cfg_global->val('webpac', 'on_page') || 10;
29  my $MIN_WILDCARD =$cfg_global->val('webpac', 'min_wildcard') || 1;  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
# Line 49  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 60  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 81  sub show_results_list { Line 95  sub show_results_list {
95          my @persist_vars = ( 'rm' );          my @persist_vars = ( 'rm' );
96          my @url_params = ( 'rm=results', 'show_full=1', 'last_PAGER_offset='.$q->param('PAGER_offset') || 0 );          my @url_params = ( 'rm=results', 'show_full=1', 'last_PAGER_offset='.$q->param('PAGER_offset') || 0 );
97    
98          for(my $i = 1; $i <=30; $i++) {          # 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    
# Line 92  sub show_results_list { Line 107  sub show_results_list {
107                  push @persist_vars, "v$i";                  push @persist_vars, "v$i";
108    
109                  push @url_params,"f$i=".$q->url_param("f$i");                  push @url_params,"f$i=".$q->url_param("f$i");
110                  push @url_params,"v$i=".$q->url_param("v$i");                  foreach my $v ($q->url_param("v$i")) {
111                            push @url_params,"v$i=$v";
112                    }
113    
114                    my $wc="*";     # swish wildcard
115                    $wc="" if ($i eq "");   # don't apply wildcard on field 0
116    
117                  # re-write query from +/- to and/and not                  # re-write query from +/- to and/and not
118                  my @param_vals = $q->param("v$i");                  my @param_vals = $q->param("v$i");
119                  my @swish_q;                  my @swish_q;
120                    my ($pre,$post,$exact) = ('','','');
121                  while (my $search = shift @param_vals) {                  while (my $search = shift @param_vals) {
122                          my $s;                          my $s;
123                          # remove accents                          # remove accents
# Line 107  sub show_results_list { Line 128  sub show_results_list {
128                          $search =~ s/^\s+//;                          $search =~ s/^\s+//;
129                          $search =~ s/\s+$//;                          $search =~ s/\s+$//;
130    
131                            # filed e[nr] is exact match bitmask
132                            # 1 = beginning, 2=end, 3=both
133                            $pre = '"xxbxx ' if ($q->param("e$i") & 1);
134                            $post = ' xxexx"' if ($q->param("e$i") & 2);
135                            # add qotes on other side
136                            if ($q->param("e$i")) {
137                                    $pre = '"' if (! $pre);
138                                    $post = '"' if (! $post);
139                                    $wc = '';       # don't use windcard in exact
140                                    $exact = '_exact';
141                            }
142    
143                          foreach (split(/\s+/,$search)) {                          foreach (split(/\s+/,$search)) {
144                                  if (m/^([+-])(\S+)/) {                                  if (m/^([+-])(\S+)/) {
145                                          $s.= ($s) ? "and " : "";                                          $s.= ($s) ? "and " : "";
146                                          $s.="not " if ($1 eq "-");                                          $s.="not " if ($1 eq "-");
147                                          $s.="$2* ";                                          $s.=$2.$wc." ";
148                                  } elsif (m/^\s*(and|or|not)\s*$/i) {                                  } elsif (m/^\s*(and|or|not)\s*$/i) {
149                                          $s.="$_ ";                                          $s.=$_." ";
150                                  # don't add * to words with less than x chars                                  # don't add * to words with less than x chars
151                                  } elsif (length($_) <= $MIN_WILDCARD) {                                  } elsif (length($_) <= $MIN_WILDCARD) {
152                                          $s.="$_ ";                                          $s.=$_." ";
153                                  } else {                                  } else {
154                                          $s.="$_* ";                                          $s.=$_.$wc." ";
155                                  }                                  }
156                          }                          }
157                          $s =~ s/\*+/*/g;                          $s =~ s/\*+/*/g;
158                            $s = $pre.$s.$post if ($q->param("e$i"));
159                          push @swish_q,$s;                          push @swish_q,$s;
160                  }                  }
161                  # FIXME default operator for multi-value fields is or. There is                  # FIXME default operator for multi-value fields is or. There is
162                  # no way to change it, except here for now. Is there need?                  # no way to change it, except here for now. Is there need?
163                  push @s_arr, $q->param("f$i")."_swish=(".join(" or ",@swish_q).")";                  push @s_arr, $q->param("f$i")."_swish".$exact."=(".join(" or ",@swish_q).")";
164          }          }
165    
166          my $tmpl = $self->load_tmpl('results.html', global_vars => 1);          my $tmpl = $self->load_tmpl('results.html', global_vars => 1);
# Line 166  sub show_results_list { Line 200  sub show_results_list {
200                  $sw_q .= join("\" or swishdocpath=\"",@path_arr);                  $sw_q .= join("\" or swishdocpath=\"",@path_arr);
201                  $sw_q .= "\")";                  $sw_q .= "\")";
202                  $tmpl->param('full',1); # show full records                  $tmpl->param('full',1); # show full records
203            } elsif ($q->param('show_full')) {
204                    # just show full path, no path defined
205                    $tmpl->param('full',1);
206          } else {          } else {
207                  $tmpl->param('full',0);                  $tmpl->param('full',0);
208          }          }
# Line 214  sub show_results_list { Line 251  sub show_results_list {
251    
252          my $html = $pager->output;          my $html = $pager->output;
253    
254          return $html;          return in_template($html);
255  }  }
256    
257  sub show_index {  sub show_index {
# Line 235  sub show_index { Line 272  sub show_index {
272                  $cfg_global->val('global', 'dbi_passwd') || ''                  $cfg_global->val('global', 'dbi_passwd') || ''
273          );          );
274    
275          my $total = $index->check($field);          my $total = $index->count($field,$limit);
276          if (! $total) {          if (! $total) {
277                  my $tmpl = $self->load_tmpl('no_index.html');                  my $tmpl = $self->load_tmpl('no_index.html');
278                  $tmpl->param('field',$field);                  $tmpl->param('field',$field);
# Line 258  sub show_index { Line 295  sub show_index {
295                  get_data_callback => sub {                  get_data_callback => sub {
296                          my ($offset, $rows) = @_;                          my ($offset, $rows) = @_;
297    
298                          my @result = $index->fetch($field,'item',$limit, $offset, $rows);                          my @result = $index->fetch($field,$limit, $offset, $rows);
299                          return \@result;                          return \@result;
300                  },                  },
301                  rows => $total,                  rows => $total,
# Line 272  sub show_index { Line 309  sub show_index {
309                  template => $tmpl,                  template => $tmpl,
310          );          );
311    
312          return $pager->output;          return in_template($pager->output);
313  }  }
314    
315  1;  1;

Legend:
Removed from v.128  
changed lines
  Added in v.163

  ViewVC Help
Powered by ViewVC 1.1.26