/[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 12 by dpavlin, Wed Jan 22 22:27:19 2003 UTC revision 126 by dpavlin, Thu Sep 4 13:47:36 2003 UTC
# Line 6  use strict; Line 6  use strict;
6  use HTML::Pager;  use HTML::Pager;
7  use HTML::FillInForm;  use HTML::FillInForm;
8  use SWISH;  use SWISH;
9  use Unicode::MapUTF8 qw(to_utf8 from_utf8 utf8_supported_charset);  use Text::Iconv;
10  use DBI;  use DBI;
11    use Config::IniFiles;
12    use Text::Unaccent;
13    
14  use lib '..';  use lib '..';
15  use index_DBI;  use index_DBI;
16    use back2html;
17    
18  # configuration options  
19  # FIX: 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/local/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    
31    
32    Text::Iconv->raise_error(0);     # Conversion errors raise exceptions
33    
34    my $from_utf8 = Text::Iconv->new('UTF8', $CHARSET);
35    
36    
37  sub setup {  sub setup {
# Line 63  sub show_results_list { Line 75  sub show_results_list {
75    
76          my @s_arr;      # all queries are located here          my @s_arr;      # all queries are located here
77    
78          for(my $i = 1; $i <=10; $i++) {          my @path_arr = $q->param('path');
79            my $full = $q->param('full');
80    
81            my @persist_vars = ( 'rm' );
82            my @url_params = ( 'rm=results', 'show_full=1', 'last_PAGER_offset='.$q->param('PAGER_offset') || 0 );
83    
84            for(my $i = 1; $i <=30; $i++) {
85    
86                  return show_index($self, $i) if ($q->param("f".$i."_index"));                  return show_index($self, $i) if ($q->param("f".$i."_index"));
87                  next if (! $q->param("f$i"));  
88                  next if (! $q->param("v$i"));                  next if (! $q->param("v$i"));
89                    next if (! $q->param("f$i"));
90    
91                    push @persist_vars, "f$i";
92                    push @persist_vars, "v$i";
93    
94                    push @url_params,"f$i=".$q->url_param("f$i");
95                    push @url_params,"v$i=".$q->url_param("v$i");
96    
97                  # re-write query from +/- to and/and not                  # re-write query from +/- to and/and not
98                  my $s;                  my @param_vals = $q->param("v$i");
99                  my $search = $q->param("v$i");                  my @swish_q;
100                  while ($search =~ s/\s*("[^"]+")\s*/ /) {                  while (my $search = shift @param_vals) {
101                          $s .= "$1 ";                          my $s;
102                  }                          # remove accents
103                  $search =~ s/^\s+//;                          $search = unac_string($CHARSET,$search);
104                  $search =~ s/\s+$//;                          while ($search =~ s/\s*("[^"]+")\s*/ /) {
105                                    $s .= "$1 ";
106                            }
107                            $search =~ s/^\s+//;
108                            $search =~ s/\s+$//;
109    
110                  foreach (split(/\s+/,$search)) {                          foreach (split(/\s+/,$search)) {
111                          if (m/^([+-])(\S+)/) {                                  if (m/^([+-])(\S+)/) {
112                                  $s.= ($s) ? "and " : "";                                          $s.= ($s) ? "and " : "";
113                                  $s.="not " if ($1 eq "-");                                          $s.="not " if ($1 eq "-");
114                                  $s.="$2* ";                                          $s.="$2* ";
115                          } else {                                  } elsif (m/^\s*(and|or|not)\s*$/i) {
116                                  $s.="$_* ";                                          $s.="$_ ";
117                                    # don't add * to words with less than x chars
118                                    } elsif (length($_) <= $MIN_WILDCARD) {
119                                            $s.="$_ ";
120                                    } else {
121                                            $s.="$_* ";
122                                    }
123                          }                          }
124                            $s =~ s/\*+/*/g;
125                            push @swish_q,$s;
126                  }                  }
127                    # FIXME default operator for multi-value fields is or. There is
128                  push @s_arr,$q->param("f$i")."_swish=($s)";                  # no way to change it, except here for now. Is there need?
129                    push @s_arr, $q->param("f$i")."_swish=(".join(" or ",@swish_q).")";
130          }          }
131    
132          my $tmpl = $self->load_tmpl('results.html');          my $tmpl = $self->load_tmpl('results.html', global_vars => 1);
133    
134            sub esc_html {
135                    my $html = shift;
136                    $html =~ s/</&lt;/g;
137                    $html =~ s/>/&gt;/g;
138                    return $html;
139            }
140    
141          # call swish          # call swish
142          my $sh = SWISH->connect('Fork',          my $sh = SWISH->connect('Fork',
143                  prog     => $SWISH,                  prog     => $SWISH,
144                  indexes  => $INDEX,                  indexes  => $INDEX,
145                  #properties  => [qw/god br nr/],                  properties  => [qw/swishdocpath swishrank swishtitle headline html/],
146                  results  => sub {                  results  => sub {
147                          my ($sh,$hit) = @_;                          my ($sh,$hit) = @_;
148    
149                          push @swish_results, {                          push @swish_results, {
150                                  nr => ($#swish_results + 2),                                  nr => ($#swish_results + 2),
151                                  path => $hit->swishdocpath,                                  path => $hit->swishdocpath,
152                                  title => to_utf8({ -string => $hit->swishtitle, -charset => $CHARSET }),                                  headline => esc_html($from_utf8->convert($hit->headline)),
153                                    html => back2html($from_utf8->convert($hit->html)),
154                                  rank => $hit->swishrank };                                  rank => $hit->swishrank };
155    
 #                       my @fields = $hit->field_names;  
 #                       print "Field '$_' = '", $hit->$_, "'<br>\n" for sort @fields;  
156                  },                  },
157                  #startnum => 0,                  #startnum => 0,
158                  maxhits => $MAX_HITS,                  maxhits => $MAX_HITS
159          );          );
160    
161          die $SWISH::errstr unless $sh;          die $SWISH::errstr unless $sh;
162            # construct swish query
163            my $sw_q = join(" and ",@s_arr);
164            if (@path_arr && $q->param('show_full')) {
165                    $sw_q .= "and (swishdocpath=\"";
166                    $sw_q .= join("\" or swishdocpath=\"",@path_arr);
167                    $sw_q .= "\")";
168                    $tmpl->param('full',1); # show full records
169            } else {
170                    $tmpl->param('full',0);
171            }
172    
173          my $hits = $sh->query(join(" and ",@s_arr)) || 0;       # FIX: and/or          my $hits = $sh->query($sw_q);
174    
175          $tmpl->param('hits',$hits);          $tmpl->param('hits',$hits);
176          $tmpl->param('search',join(" and ",@s_arr));          $tmpl->param('search',$sw_q);
177    
178            $tmpl->param('PAGER_offset',$q->param("PAGER_offset") || 0);
179            $tmpl->param('last_PAGER_offset',$q->param("last_PAGER_offset") || 0);
180    
181            $tmpl->param('url_params',"?".join("&",@url_params));
182    
183          # create a Pager object          # create a Pager object
184          my $pager = HTML::Pager->new(          my $pager = HTML::Pager->new(
# Line 130  sub show_results_list { Line 189  sub show_results_list {
189    
190                          my @result;                          my @result;
191                          for (my $i=0; $i<$rows; $i++) {                          for (my $i=0; $i<$rows; $i++) {
192                                  push @result, $swish_results[$offset+$i] if $swish_results[$offset+$i];                                  my $r = $swish_results[$offset+$i];
193                                    if ($r && $tmpl->param('full')) {
194                                            push @result, $r;
195                                    } elsif ($r) {
196                                            # if not full output, skip html
197                                            delete $r->{html};
198                                            push @result, $r;
199                                    }
200                          }                          }
201                          return \@result;                          return \@result;
202                  },                  },
203                  rows => $hits,                  rows => $hits,
204                  page_size => $ON_PAGE,                  page_size => $ON_PAGE,
205                  # some optional parameters                  # some optional parameters
206                  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',  
                         ],  
207                  #cell_space_color => '#000000',                  #cell_space_color => '#000000',
208                  #cell_background_color => '#ffffff',                  #cell_background_color => '#ffffff',
209                  #nav_background_color => '#dddddd',                  #nav_background_color => '#dddddd',
# Line 173  sub show_index { Line 228  sub show_index {
228    
229          my $html;          my $html;
230    
231          my $index = new index_DBI();          my $index = new index_DBI(
232                    $cfg_global->val('global', 'dbi_dbd'),
233                    $cfg_global->val('global', 'dbi_dsn'),
234                    $cfg_global->val('global', 'dbi_user'),
235                    $cfg_global->val('global', 'dbi_passwd') || ''
236            );
237    
238          my $total = $index->check($field);          my $total = $index->check($field);
239          if (! $total) {          if (! $total) {
# Line 183  sub show_index { Line 243  sub show_index {
243                  return $html;                  return $html;
244          }          }
245    
246          my $tmpl = $self->load_tmpl('index_res.html');          my $tmpl = $self->load_tmpl('index_res.html', global_vars => 1);
247          $tmpl->param('field',$field);          $tmpl->param('field',$field);
248          $tmpl->param('limit',$limit);          $tmpl->param('limit',$limit);
249          $tmpl->param('total',$total);          $tmpl->param('total',$total);
250    
251    # FIXME I should set offset and leave out limit from fetch!!
252    #       if (! $q->param("PAGER_offset") {
253    #               $q->param("Pager_offet)
254    #       }
255    
256          my $pager = HTML::Pager->new(          my $pager = HTML::Pager->new(
257                  query => $q,                  query => $q,
258                  get_data_callback => sub {                  get_data_callback => sub {

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

  ViewVC Help
Powered by ViewVC 1.1.26