/[mws]/trunk/MWS.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/MWS.pm

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

revision 14 by dpavlin, Thu May 6 19:46:58 2004 UTC revision 26 by dpavlin, Sat May 8 16:24:46 2004 UTC
# Line 10  use Mail::Box::Manager; Line 10  use Mail::Box::Manager;
10  use Config::IniFiles;  use Config::IniFiles;
11  use POSIX qw(strftime);  use POSIX qw(strftime);
12  use Text::Autoformat;  use Text::Autoformat;
13    use Text::Iconv;
14    use Text::Unaccent;
15    use Date::Parse;
16    use POSIX qw(strftime);
17    use MIME::Base64;
18    
19  #use MWS_plucene;  #use MWS_plucene;
20  use MWS_swish;  use MWS_swish;
# Line 46  sub new { Line 51  sub new {
51          $self->{folder} = {};          $self->{folder} = {};
52    
53          $self->{wrap_margin} = $self->{config}->val('global', 'wrap_margin');          $self->{wrap_margin} = $self->{config}->val('global', 'wrap_margin');
54            $self->{max_results} = $self->{config}->val('global', 'max_results') || 100;
55            $self->reset_counters;
56    
57          return $self;          return $self;
58  }  }
59    
60    sub normalize_string {
61            my $self = shift;
62    
63            my $v = shift || return;
64    
65            $v = unac_string('ISO-8859-2', $v);
66            $v = join('',sort split(/\s+/,$v));
67            $v =~ s/\W+//g;
68    
69            return lc($v);
70    }
71    
72    # reset tables for search results
73    sub reset_counters {
74            my $self = shift;
75    
76            $self->{counter} = {};
77    
78    #       foreach my $c (qw(thread from to cc bcc lists links att)) {
79    #               $self->{counter}->{$c} = {};
80    #       }
81    
82    }
83    
84    sub add_counter($$) {
85            my $self = shift;
86    
87            my ($c,$v) = @_;
88            my $k = $self->normalize_string($v);
89    
90            $self->{counter}->{$c}->{$k}->{name} = $v;
91            return $self->{counter}->{$c}->{$k}->{usage}++;
92    }
93    
94    sub yyyymmdd {
95            my $self = shift;
96    
97            my $t = shift || time;
98    
99            my (undef,undef,undef,$dd,$mm,$yyyy) = localtime($t);
100            $mm++;
101            $yyyy+=1900;
102            return ($yyyy,$mm,$dd);
103    }
104    
105    sub fmtdate {
106            my $self = shift;
107    
108            my @out;
109            my @formats = qw(%04d %02d %02d);
110            while (my $v = shift) {
111                    my $f = shift @formats;
112                    push @out, sprintf($f, $v);
113            }
114    
115    print STDERR "fmtdate: ",join('|',@out),"\n";
116    
117            return (wantarray ? @out : join("-",@out));
118    }
119    
120    sub add_counter_calendar($) {
121            my $self = shift;
122    
123            my $t = shift || croak "add_counter_calendar without argument!";
124            
125            my ($yyyy,$mm,$dd) = $self->fmtdate($self->yyyymmdd($t));
126    
127            return $self->{counter}->{calendar}->{"$yyyy-$mm"}->{$dd}++;
128    }
129    
130    
131    sub counter {
132            my $self = shift;
133    
134            my $c = shift || return;
135    
136            return if (! $self->{counter}->{$c});
137    
138            return $self->{counter}->{$c};
139    }
140    
141  sub mbox_name2path {  sub mbox_name2path {
142          my $self = shift;          my $self = shift;
143    
# Line 73  sub open_folder { Line 161  sub open_folder {
161                  print STDERR "open_folder($mbox) ok\n" if ($debug);                  print STDERR "open_folder($mbox) ok\n" if ($debug);
162          }          }
163    
164            $self->{fetch_count} = 0;
165    
166          return $self->{folder}->{$mbox};          return $self->{folder}->{$mbox};
167    
168  }  }
# Line 82  sub close_folder { Line 172  sub close_folder {
172    
173          my $mbox = shift || croak "open_folder needs mbox name";          my $mbox = shift || croak "open_folder needs mbox name";
174    
175          return $self->{folder}->{$mbox}->close(write => 'NEVER');          $self->{folder}->{$mbox}->close(write => 'NEVER') || croak "can't close folder $mbox";
176    
177            # XXX this is rather agressive!!!
178            $self->{folder} = {};
179            return
180  }  }
181    
182  sub fetch_message {  sub fetch_message {
# Line 93  sub fetch_message { Line 187  sub fetch_message {
187    
188          # return message with ID          # return message with ID
189          print STDERR "fetch $id from $mbox\n" if ($debug);          print STDERR "fetch $id from $mbox\n" if ($debug);
190          return $self->open_folder($mbox)->find($id) ||  
191            if ($self->{fetch_count}++ > 100) {
192                    $self->close_folder($mbox);
193                    print STDERR "close_folder($mbox) forced on ",$self->{fetch_count},"iteration\n";
194            }
195            
196            my $msg = $self->open_folder($mbox)->find($id);
197            if ($msg) {
198                    return $msg;
199            } else {
200                  print STDERR "can't find message $id in $mbox. Time to re-index?\n";                  print STDERR "can't find message $id in $mbox. Time to re-index?\n";
201                    return;
202            }
203  }  }
204    
205    
206  sub search {  sub search {
207          my $self = shift;          my $self = shift;
208    
209          my $s = shift || carp "search called without argument!";          carp "search called without argument!" if (! @_);
210    
211            $self->reset_counters;
212    
213          print STDERR "search_index($s)\n" if ($debug == 2);          print STDERR "search(",join(" ",@_),")\n" if ($debug == 2);
214          my @index_ids = $self->search_index($s);          my @index_ids = $self->search_index(@_);
215    
216          $self->{'index_ids'} = \@index_ids;          $self->{'index_ids'} = \@index_ids;
217    
218          my $results = $#index_ids + 1;          #my $results = $#index_ids + 1;
219          $self->{'results'} = $results;          #$self->{'results'} = $results;
220            
221            my $results = $self->{'total_hits'} || ($#index_ids + 1);
222    
223          $self->{'curr_result'} = 0;          $self->{'curr_result'} = 0;
224    
225            $self->reset_counters;
226    
227          print STDERR "$results results\n" if ($debug == 2);          print STDERR "$results results\n" if ($debug == 2);
228    
229          return $results || 'error';          return $results || 'error';
230  }  }
231    
232    sub decode_qp($) {
233            my $self = shift;
234    
235            my $tmp = shift || return;
236    
237            sub decode($$$) {
238                    my ($cp,$enc,$qp) = @_;
239    
240                    print STDERR "decode($cp,$qp) -> " if ($debug == 2);
241    
242                    if (uc($enc) eq "Q") {
243                            $qp =~ s/=([a-f0-9][a-f0-9])/chr(hex($1))/ieg;
244                            $qp =~ s/_/ /g;
245                    } elsif (uc($enc) eq "B") {
246                            $qp = decode_base64($qp);
247                    } else {
248                            croak "unsupported encoding '$enc' in decode_qp\n";
249                            return $qp;
250                    }
251    
252                    print STDERR "$qp\n" if ($debug == 2);
253    
254                    my $iconv = Text::Iconv->new($cp,'ISO-8859-2');
255                    return $iconv->convert($qp) || '';
256            }
257    
258            $tmp =~ s/=\?([^\?]+)\?([QB])\?(.+?)\?=/decode($1,$2,$3)/ige;
259            $tmp =~ s/^\s*["']+(.*?)["']+\s*$/$1/g;
260            #print STDERR "$tmp\n" if ($debug == 2);
261            return $tmp;
262    }
263    
264  sub unroll($$$) {  sub unroll($$$) {
265          my $self = shift;          my $self = shift;
266    
# Line 125  sub unroll($$$) { Line 268  sub unroll($$$) {
268    
269          my @arr;          my @arr;
270    
271            return if (! $message->$part);
272    
273          foreach my $from ($message->$part) {          foreach my $from ($message->$part) {
274                  my $tmp = $from->$sub;                  my $tmp = $from->$sub || next;
275                  if ($tmp) {  
276                          $tmp =~ s/^\s*["'](.*)["']\s*$/$1/;                  $tmp = $self->decode_qp($tmp);
277                          push @arr, $tmp;                  push @arr, $tmp;
                 }  
278          }          }
279    
280          return @arr;          return @arr;
# Line 149  sub fetch_all_results { Line 293  sub fetch_all_results {
293                  push @arr, $self->fetch_result_by_id($id);                  push @arr, $self->fetch_result_by_id($id);
294          }          }
295    
296    
297          return @arr;          return @arr;
298  }  }
299    
# Line 185  sub plain_text_body { Line 330  sub plain_text_body {
330                  }                  }
331          }          }
332    
333            if (! $body) {
334                    $body = "[plain/text body not found]" if ($debug == 2);
335                    print STDERR "plain/text body not found\n" if ($debug);
336                    return;
337            }
338    
339          # reformat with Text::Autoformat          # reformat with Text::Autoformat
340          my $wrap = $self->{wrap_margin};          my $wrap = $self->{wrap_margin};
341          if ($wrap && $body && $body =~ m/^.{$wrap}..*$/m) {          if ($wrap && $body && $body =~ m/^.{$wrap}..*$/m) {
342                  $body = autoformat $body;                  $body = autoformat($body, {right=>$wrap, all=>1});
343                  $body .="\n[reformated using autoformat, margin at $wrap]" if ($debug == 2);                  $body .="\n[reformated using autoformat, margin at $wrap]" if ($debug == 2);
344          }          }
345    
# Line 207  sub fetch_result_by_id { Line 358  sub fetch_result_by_id {
358    
359                  print STDERR "fetch_result_by_id($id) not in cache, hitting disk\n" if ($debug == 2);                  print STDERR "fetch_result_by_id($id) not in cache, hitting disk\n" if ($debug == 2);
360    
361                  my $message = $self->fetch_message($id) || print STDERR "can't fetch message '$id'";                  my $message = $self->fetch_message($id) || return;
362    
363                  $row->{'id'} = $id;                  $row->{'id'} = $id;
364                  @{$row->{'from'}} = $self->unroll($message,'from','phrase');  
365                  @{$row->{'to'}} = $self->unroll($message,'to','phrase');                  foreach my $p (qw(from to cc bcc)) {
366                  @{$row->{'cc'}} = $self->unroll($message,'cc','phrase');                          foreach my $v ($self->unroll($message,$p,'phrase')) {
367                  $row->{'subject'} = $message->subject;                                  push @{$row->{$p}},$v;
368                                    $self->add_counter($p,$v);
369                            }
370                    }
371                    $row->{'subject'} = $self->decode_qp($message->subject);
372                  $row->{'body'} = $self->plain_text_body($message);                  $row->{'body'} = $self->plain_text_body($message);
373                  $row->{'date'} = $message->date;                  my $utime = str2time($message->date);
374    
375                    $row->{'date_utime'} = $utime;
376    
377                    $row->{'date'} = strftime("%Y-%m-%d %H:%M:%S", localtime($utime));
378                    $self->add_counter_calendar($utime);
379    
380                  # XXX store in cache?                  # XXX store in cache?
381                  $self->{cache}->{$id} = $row;                  $self->{cache}->{$id} = $row;
382                  print STDERR "$id stored in cache\n" if ($debug == 2);                  print STDERR "$id stored in cache\n" if ($debug == 2);
383          } else {          } else {
384                  print STDERR "fetch_result_by_id($id) in cache\n" if ($debug == 2);                  print STDERR "fetch_result_by_id($id) in cache\n" if ($debug == 2);
385                    foreach my $p (qw(from to cc bcc)) {
386                            foreach my $v (@{$row->{$p}}) {
387                                    $self->add_counter($p,$v);
388                            }
389                    }
390    
391                    $self->add_counter_calendar($row->{date_utime});
392          }          }
393    
394          return $row;          return $row;

Legend:
Removed from v.14  
changed lines
  Added in v.26

  ViewVC Help
Powered by ViewVC 1.1.26