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

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

revision 80 by dpavlin, Tue Jul 8 08:24:13 2003 UTC revision 186 by dpavlin, Sat Nov 29 18:40:19 2003 UTC
# Line 12  use Config::IniFiles; Line 12  use Config::IniFiles;
12  use Text::Unaccent;  use Text::Unaccent;
13    
14  use lib '..';  use lib '..';
15  use index_DBI;  use index_DBI_cache;
16  use back2html;  use back2html;
17    
18    
# Line 26  my $SWISH = $cfg_global->val('webpac', ' Line 26  my $SWISH = $cfg_global->val('webpac', '
26  my $INDEX = $cfg_global->val('webpac', 'index') || die "need index in global.conf, section webpac";  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;  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;
30    my $TEMPLATE =$cfg_global->val('webpac', 'template');
31    my $UNAC_FILTER =$cfg_global->val('global', 'unac_filter');
32    
33    if ($UNAC_FILTER) {
34            require $UNAC_FILTER;
35    }
36    
37  Text::Iconv->raise_error(0);     # Conversion errors raise exceptions  Text::Iconv->raise_error(0);     # Conversion errors raise exceptions
38    
# Line 48  sub setup { Line 54  sub setup {
54          $self->header_props(-charset=>$CHARSET);          $self->header_props(-charset=>$CHARSET);
55  }  }
56    
57    sub in_template {
58            my $html = shift || "This page is left unintentionally blank";
59            return $html if (! defined($TEMPLATE));
60            if (open(T, $TEMPLATE)) {
61                    my $template_html = join("\n",<T>);
62                    close(T);
63                    $template_html =~ s/##webpac##/$html/gsi;
64                    return $template_html;
65            } else {
66                    return "Can't read template '$TEMPLATE'";
67            }
68    }
69    
70  sub show_search_form {  sub show_search_form {
71          my $self = shift;          my $self = shift;
72    
# Line 59  sub show_search_form { Line 78  sub show_search_form {
78    
79          my $fif = new HTML::FillInForm;          my $fif = new HTML::FillInForm;
80    
81          return $fif->fill(scalarref => \$html, fobject => $q,          return in_template($fif->fill(scalarref => \$html, fobject => $q,
82                  target => 'search');                  target => 'search'));
83  }  }
84    
85  sub show_results_list {  sub show_results_list {
# Line 77  sub show_results_list { Line 96  sub show_results_list {
96          my @path_arr = $q->param('path');          my @path_arr = $q->param('path');
97          my $full = $q->param('full');          my $full = $q->param('full');
98    
99          for(my $i = 1; $i <=30; $i++) {          my @persist_vars = ( 'rm' );
100            my @url_params = ( 'rm=results', 'show_full=1', 'last_PAGER_offset='.$q->param('PAGER_offset') || 0 );
101    
102            # support parametars "f" and "v" for start
103            for(my $i = ""; $i <=30; $i++) {
104    
105                  return show_index($self, $i) if ($q->param("f".$i."_index"));                  return show_index($self, $i) if ($q->param("f".$i."_index"));
106    
107                  next if (! $q->param("v$i"));                  next if (! $q->param("v$i"));
108                  next if (! $q->param("f$i"));                  next if (! $q->param("f$i"));
109    
110                    push @persist_vars, "f$i";
111                    push @persist_vars, "v$i";
112                    push @persist_vars, "e$i" if ($q->param("e$i"));
113    
114                    push @url_params,"f$i=".$q->url_param("f$i");
115                    foreach my $v ($q->url_param("v$i")) {
116                            push @url_params,"v$i=$v";
117                    }
118                    push @url_params,"e$i=".$q->url_param("e$i");
119    
120                    my $wc="*";     # swish wildcard
121                    $wc="" if ($i eq "");   # don't apply wildcard on field 0
122    
123                  # re-write query from +/- to and/and not                  # re-write query from +/- to and/and not
124                  my @param_vals = $q->param("v$i");                  my @param_vals = $q->param("v$i");
125                  my @swish_q;                  my @swish_q;
126                    my ($pre,$post,$exact) = ('','','');
127                  while (my $search = shift @param_vals) {                  while (my $search = shift @param_vals) {
128                          my $s;                          my $s;
129                          # remove accents                          # remove accents
# Line 96  sub show_results_list { Line 134  sub show_results_list {
134                          $search =~ s/^\s+//;                          $search =~ s/^\s+//;
135                          $search =~ s/\s+$//;                          $search =~ s/\s+$//;
136    
137                            # filed e[nr] is exact match bitmask
138                            # 1 = beginning, 2=end, 3=both
139                            $pre = '"xxbxx ' if ($q->param("e$i") & 1);
140                            $post = ' xxexx"' if ($q->param("e$i") & 2);
141                            # add qotes on other side
142                            if ($q->param("e$i")) {
143                                    $pre = '"' if (! $pre);
144                                    $post = '"' if (! $post);
145                                    $wc = '';       # don't use windcard in exact
146                                    $exact = '_exact';
147                            }
148    
149                          foreach (split(/\s+/,$search)) {                          foreach (split(/\s+/,$search)) {
150                                  if (m/^([+-])(\S+)/) {                                  if (m/^([+-])(\S+)/) {
151                                          $s.= ($s) ? "and " : "";                                          $s.= ($s) ? "and " : "";
152                                          $s.="not " if ($1 eq "-");                                          $s.="not " if ($1 eq "-");
153                                          $s.="$2* ";                                          $s.=$2.$wc." ";
154                                  } elsif (m/(and|or|not)/i) {                                  } elsif (m/^\s*(and|or|not)\s*$/i) {
155                                          $s.="$_ ";                                          $s.=$_." ";
156                                    # don't add * to words with less than x chars
157                                    } elsif (length($_) <= $MIN_WILDCARD) {
158                                            $s.=$_." ";
159                                  } else {                                  } else {
160                                          $s.="$_* ";                                          $s.=$_.$wc." ";
161                                  }                                  }
162                          }                          }
163                          $s =~ s/\*+/*/g;                          $s =~ s/\*+/*/g;
164                            $s = $pre.$s.$post if ($q->param("e$i"));
165                          push @swish_q,$s;                          push @swish_q,$s;
166                  }                  }
167                  # FIXME default operator for multi-value fields is or. There is                  # FIXME default operator for multi-value fields is or. There is
168                  # no way to change it, except here for now. Is there need?                  # no way to change it, except here for now. Is there need?
169                  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).")";
170          }          }
171    
172          my $tmpl = $self->load_tmpl('results.html');          my $tmpl = $self->load_tmpl('results.html', global_vars => 1);
173    
174          sub esc_html {          sub esc_html {
175                  my $html = shift;                  my $html = shift;
# Line 147  sub show_results_list { Line 201  sub show_results_list {
201          die $SWISH::errstr unless $sh;          die $SWISH::errstr unless $sh;
202          # construct swish query          # construct swish query
203          my $sw_q = join(" and ",@s_arr);          my $sw_q = join(" and ",@s_arr);
204          if (@path_arr) {          if (@path_arr && $q->param('show_full')) {
205                  $sw_q .= "and (swishdocpath=\"";                  $sw_q .= "and (swishdocpath=\"";
206                  $sw_q .= join("\" or swishdocpath=\"",@path_arr);                  $sw_q .= join("\" or swishdocpath=\"",@path_arr);
207                  $sw_q .= "\")";                  $sw_q .= "\")";
208                  $tmpl->param('full',1); # show full records                  $tmpl->param('full',1); # show full records
209            } elsif ($q->param('show_full')) {
210                    # just show full path, no path defined
211                    $tmpl->param('full',1);
212            } else {
213                    $tmpl->param('full',0);
214          }          }
215    
216          my $hits = $sh->query($sw_q);          my $hits = $sh->query($sw_q);
# Line 162  sub show_results_list { Line 221  sub show_results_list {
221          $tmpl->param('PAGER_offset',$q->param("PAGER_offset") || 0);          $tmpl->param('PAGER_offset',$q->param("PAGER_offset") || 0);
222          $tmpl->param('last_PAGER_offset',$q->param("last_PAGER_offset") || 0);          $tmpl->param('last_PAGER_offset',$q->param("last_PAGER_offset") || 0);
223    
224            $tmpl->param('url_params',"?".join("&",@url_params));
225    
226          # create a Pager object          # create a Pager object
227          my $pager = HTML::Pager->new(          my $pager = HTML::Pager->new(
228                  # required parameters                  # required parameters
# Line 171  sub show_results_list { Line 232  sub show_results_list {
232    
233                          my @result;                          my @result;
234                          for (my $i=0; $i<$rows; $i++) {                          for (my $i=0; $i<$rows; $i++) {
235                                  push @result, $swish_results[$offset+$i] if $swish_results[$offset+$i];                                  my $r = $swish_results[$offset+$i];
236                                    if ($r && $tmpl->param('full')) {
237                                            push @result, $r;
238                                    } elsif ($r) {
239                                            # if not full output, skip html
240                                            delete $r->{html};
241                                            push @result, $r;
242                                    }
243                          }                          }
244                          return \@result;                          return \@result;
245                  },                  },
246                  rows => $hits,                  rows => $hits,
247                  page_size => $ON_PAGE,                  page_size => $ON_PAGE,
248                  # some optional parameters                  # some optional parameters
249                  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',  
                         ],  
250                  #cell_space_color => '#000000',                  #cell_space_color => '#000000',
251                  #cell_background_color => '#ffffff',                  #cell_background_color => '#ffffff',
252                  #nav_background_color => '#dddddd',                  #nav_background_color => '#dddddd',
# Line 200  sub show_results_list { Line 257  sub show_results_list {
257    
258          my $html = $pager->output;          my $html = $pager->output;
259    
260          return $html;          return in_template($html);
261  }  }
262    
263  sub show_index {  sub show_index {
# Line 221  sub show_index { Line 278  sub show_index {
278                  $cfg_global->val('global', 'dbi_passwd') || ''                  $cfg_global->val('global', 'dbi_passwd') || ''
279          );          );
280    
281          my $total = $index->check($field);          my $total = $index->count($field,$limit);
282          if (! $total) {          if (! $total) {
283                  my $tmpl = $self->load_tmpl('no_index.html');                  my $tmpl = $self->load_tmpl('no_index.html');
284                  $tmpl->param('field',$field);                  $tmpl->param('field',$field);
# Line 229  sub show_index { Line 286  sub show_index {
286                  return $html;                  return $html;
287          }          }
288    
289          my $tmpl = $self->load_tmpl('index_res.html');          my $tmpl = $self->load_tmpl('index_res.html', global_vars => 1);
290          $tmpl->param('field',$field);          $tmpl->param('field',$field);
291          $tmpl->param('limit',$limit);          $tmpl->param('limit',$limit);
292          $tmpl->param('total',$total);          $tmpl->param('total',$total);
# Line 244  sub show_index { Line 301  sub show_index {
301                  get_data_callback => sub {                  get_data_callback => sub {
302                          my ($offset, $rows) = @_;                          my ($offset, $rows) = @_;
303    
304                          my @result = $index->fetch($field,'item',$limit, $offset, $rows);                          my @result = $index->fetch($field,$limit, $offset, $rows);
305                          return \@result;                          return \@result;
306                  },                  },
307                  rows => $total,                  rows => $total,
# Line 258  sub show_index { Line 315  sub show_index {
315                  template => $tmpl,                  template => $tmpl,
316          );          );
317    
318          return $pager->output;          return in_template($pager->output);
319  }  }
320    
321  1;  1;

Legend:
Removed from v.80  
changed lines
  Added in v.186

  ViewVC Help
Powered by ViewVC 1.1.26