/[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 63 by dpavlin, Fri Jul 4 20:37:04 2003 UTC revision 111 by dpavlin, Tue Jul 15 12:48:49 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;
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 = 0;  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    
30    
31  Text::Iconv->raise_error(0);     # Conversion errors raise exceptions  Text::Iconv->raise_error(0);     # Conversion errors raise exceptions
32    
33  my $from_utf8 = Text::Iconv->new('UTF8', $CHARSET);  my $from_utf8 = Text::Iconv->new('UTF8', $CHARSET);
34    
 # read global.conf configuration  
 my $cfg_global = new Config::IniFiles( -file => '../global.conf' ) || die "can't open 'global.conf'";  
   
35    
36  sub setup {  sub setup {
37          my $self = shift;          my $self = shift;
# Line 75  sub show_results_list { Line 77  sub show_results_list {
77          my @path_arr = $q->param('path');          my @path_arr = $q->param('path');
78          my $full = $q->param('full');          my $full = $q->param('full');
79    
80          for(my $i = 1; $i <=10; $i++) {          for(my $i = 1; $i <=30; $i++) {
81    
82                  return show_index($self, $i) if ($q->param("f".$i."_index"));                  return show_index($self, $i) if ($q->param("f".$i."_index"));
                 next if (! $q->param("f$i"));  
83                  next if (! $q->param("v$i"));                  next if (! $q->param("v$i"));
84                    next if (! $q->param("f$i"));
85    
86                  # re-write query from +/- to and/and not                  # re-write query from +/- to and/and not
87                  my $s;                  my @param_vals = $q->param("v$i");
88                  my $search = $q->param("v$i");                  my @swish_q;
89                  while ($search =~ s/\s*("[^"]+")\s*/ /) {                  while (my $search = shift @param_vals) {
90                          $s .= "$1 ";                          my $s;
91                  }                          # remove accents
92                  $search =~ s/^\s+//;                          $search = unac_string($CHARSET,$search);
93                  $search =~ s/\s+$//;                          while ($search =~ s/\s*("[^"]+")\s*/ /) {
94                                    $s .= "$1 ";
95                            }
96                            $search =~ s/^\s+//;
97                            $search =~ s/\s+$//;
98    
99                  foreach (split(/\s+/,$search)) {                          foreach (split(/\s+/,$search)) {
100                          if (m/^([+-])(\S+)/) {                                  if (m/^([+-])(\S+)/) {
101                                  $s.= ($s) ? "and " : "";                                          $s.= ($s) ? "and " : "";
102                                  $s.="not " if ($1 eq "-");                                          $s.="not " if ($1 eq "-");
103                                  $s.="$2* ";                                          $s.="$2* ";
104                          } elsif (m/(and|or|not)/i) {                                  } elsif (m/(and|or|not)/i) {
105                                  $s.="$_ ";                                          $s.="$_ ";
106                          } else {                                  } else {
107                                  $s.="$_* ";                                          $s.="$_* ";
108                                    }
109                          }                          }
110                            $s =~ s/\*+/*/g;
111                            push @swish_q,$s;
112                  }                  }
113                  $s =~ s/\*+/*/g;                  # FIXME default operator for multi-value fields is or. There is
114                    # no way to change it, except here for now. Is there need?
115                  push @s_arr,$q->param("f$i")."_swish=($s)";                  push @s_arr, $q->param("f$i")."_swish=(".join(" or ",@swish_q).")";
116          }          }
117    
118          my $tmpl = $self->load_tmpl('results.html');          my $tmpl = $self->load_tmpl('results.html');
119    
120            sub esc_html {
121                    my $html = shift;
122                    $html =~ s/</&lt;/g;
123                    $html =~ s/>/&gt;/g;
124                    return $html;
125            }
126    
127          # call swish          # call swish
128          my $sh = SWISH->connect('Fork',          my $sh = SWISH->connect('Fork',
129                  prog     => $SWISH,                  prog     => $SWISH,
# Line 119  sub show_results_list { Line 135  sub show_results_list {
135                          push @swish_results, {                          push @swish_results, {
136                                  nr => ($#swish_results + 2),                                  nr => ($#swish_results + 2),
137                                  path => $hit->swishdocpath,                                  path => $hit->swishdocpath,
138                                  headline => $from_utf8->convert($hit->headline),                                  headline => esc_html($from_utf8->convert($hit->headline)),
139                                  html => back2html($from_utf8->convert($hit->html)),                                  html => back2html($from_utf8->convert($hit->html)),
140                                  rank => $hit->swishrank };                                  rank => $hit->swishrank };
141    
# Line 129  sub show_results_list { Line 145  sub show_results_list {
145          );          );
146    
147          die $SWISH::errstr unless $sh;          die $SWISH::errstr unless $sh;
   
148          # construct swish query          # construct swish query
149          my $sw_q = join(" and ",@s_arr);          my $sw_q = join(" and ",@s_arr);
150          if (@path_arr) {          if (@path_arr && $q->param('show_full')) {
151                  $sw_q .= "and (swishdocpath=\"";                  $sw_q .= "and (swishdocpath=\"";
152                  $sw_q .= join("\" or swishdocpath=\"",@path_arr);                  $sw_q .= join("\" or swishdocpath=\"",@path_arr);
153                  $sw_q .= "\")";                  $sw_q .= "\")";

Legend:
Removed from v.63  
changed lines
  Added in v.111

  ViewVC Help
Powered by ViewVC 1.1.26