]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blobdiff - IkiWiki/Plugin/mailbox.pm
special case for comments pages
[git.ikiwiki.info.git] / IkiWiki / Plugin / mailbox.pm
index 7c8e4a5dbc0df093f812c0d077b46d7ae2d908ff..92ddf99f32f65f141f471b0590b61ba4d443d91c 100644 (file)
 # Copyright (c) 2008 David Bremner <bremner@unb.ca>
 # This file is distributed under the Artistic License/GPL2+
 
+use Email::MIME;
+use Email::MIME::Modifier;
+package Email::MIMEFolder;
+use base 'Email::Folder';
+sub bless_message { return  Email::MIME->new($_[1]) };
+
+
 package IkiWiki::Plugin::mailbox;
 
-use warnings;
-use strict;
+use Email::FolderType qw(folder_type);
 use IkiWiki 2.00;
-use Email::Folder;
+use Email::Thread;
 use CGI 'escapeHTML';
+use File::Temp qw/tempfile/;
+use File::MimeInfo::Magic;
+use Date::Parse;
+use Email::Address;
+
+my %metaheaders;
+
 
 sub import { #{{{
        hook(type => "preprocess", id => "mailbox", call => \&preprocess);
+       hook(type => "scan", id => "mailbox", call => \&scan);
+       hook(type => "pagetemplate", id=>"mailbox", call => \&pagetemplate);
+       hook(type => "htmlize",id=>"mbox",call => \&mbox_htmlize);
+       IkiWiki::loadplugin("filecheck");
 } # }}}
 
+sub scan(@){
+       my %params=@_;
+       my $page=$params{page};
+       
+       my $linktext=$config{url}.'/mailbox.css';
+
+       push @{$metaheaders{$page}}, 
+              '<link rel="stylesheet" href="'.$linktext.'" type="text/css"/>'
+}
+
 sub preprocess (@) { #{{{
        my %params=@_;
        
        my $page=$params{page};
-       my $type=$params{type} || 'maildir';
+       my $type=$params{type} || 'Maildir';
 
        my $path=$params{path} ||  error gettext("missing parameter") . " path";
+       
+       # hmm, this should probably only be inserted once per page.
 
-       # note, mbox is not a directory, needs to be special cased
-       my $dir=bestdir($page,$params{path}) || 
+       my $dir=bestpath($page,$params{path}) || 
            error("could not find ".$params{path});
 
        $params{path} = $config{srcdir} ."/" . $dir;
-
-       return  format_mailbox(path=>$dir,%params);
+       $params{type} = $type;
+       
+       return  format_mailbox(%params);
 
 } # }}}
 
+sub mbox_htmlize(@){
+    my %params=@_;
+    
+    my $path=$config{srcdir} . '/' . $params{page}.".mbox";
+    return format_mailbox(path=>$path,type=>'Mbox',destpage=>$params{page});
+}
 
 ### The guts of the plugin
 ### parameters 
 sub format_mailbox(@){
     my %params=@_;
-    my $path=$params{path} || error("path parameter mandatory");
-    my $header_list=$params{headers} || "subject,from";
+    my $path=$params{path} || error gettext("missing parameter "). 'path';
+    my $type=$params{type} || error gettext("missing paramater ")."type";
+
+    debug('type='.$type);
+    my $folder=Email::MIMEFolder->new($path,reader=>'Email::Folder::'.$type) || error("mailbox could not be opened");
+    my $threader=new Email::Thread($folder->messages);
+
+    $threader->thread();
+
+    my @roots= sort  { str2time($a->header('Date'))  <=> 
+                          str2time($b->header('Date'))}  ($threader->rootset);
+
+    return join "\n", map { format_thread(%params,thread=>$_) } @roots; 
+
+}
+
+sub format_thread(@){
+    my %params=@_;
+    
+    my $thread=$params{thread} || error gettext("missing parameter") . "thread";
 
-    my $folder=Email::Folder->new($path) || error("mailbox could not be opened");
-    return join "\n", map { format_message(message=>$_) } $folder->messages;
+    my $output="";
 
+    if ($thread->message) {
+       $output .= format_message(%params,message=>$thread->message);
+    } else {
+       $output .= sprintf gettext("Message %s not available"), $thread->messageid;
+    }
+
+    if ($thread->child){
+       $output .= '<div class="emailthreadindent">' .
+           format_thread(%params,thread=>$thread->child).
+           '</div>';
+    }
+
+    if ($thread->next){
+       $output .= format_thread(%params,thread=>$thread->next);
+    }
+    return $output;
 }
 
+sub sanitize_address($$){
+    my $hdrname=shift;
+    my $val=shift;
+    my $strategy= $config{mailbox_obfuscation_strategy} || "delete";
+
+    return $val if ($strategy eq  "none");
+
+    if ($hdrname =~ qr/From|To|Reply-To|CC/){
+       my @addrs=Email::Address->parse($val);
+       foreach my $addr (@addrs){
+           if ($strategy eq "rot13"){
+               my $orig=$addr->address;
+               $orig =~ y/A-Za-z/N-ZA-Mn-za-m/;
+               $addr->address($orig); 
+           } else {
+               $addr->address(gettext("address deleted"));
+           }
+       }
+       $val=join(",",map {$_->format;} @addrs);
+    }
+    return $val;
+                    }
+
 sub make_pair($$){
     my $message=shift;
     my $name=shift;
-    my $val=$message->header($_);
-    
+    my $val=$message->header($name);
+
+    $val = sanitize_address($name,$val);
+
     $val = escapeHTML($val);
 
     my $hash={'HEADERNAME'=>$name,'VAL'=>$val};
@@ -63,26 +156,71 @@ sub format_message(@){
     my $message=$params{message} || 
        error gettext("missing parameter"). "message";
 
+
+    my $dest=$params{destpage} || 
+       error gettext("missing parameter"). "destpage";
+
+    my $keep_headers=$params{headers} || qr/^(subject|from|date)[:]?$/i;
+    
     my $template= 
        template("email.tmpl") || error gettext("missing template");
+
+    my $output="";
+
+    my @names = grep  {m/$keep_headers/;}  ($message->header_names);
+    
+    my @headers=map { make_pair($message,$_) } @names;
+    
     
-    my @headers=map { make_pair($message,$_) } 
-       $message->header_names;
 
     $template->param(HEADERS=>[@headers]);
 
-    $template->param(body=>escapeHTML($message->body));
+    my $allowed_attachments=$params{allowed_attachments} || 
+       "maxsize(100kb) and mimetype(text/plain)";
+
+    my @parts=$message->parts;
+
+    my $partcount=1;
+    foreach(@parts){
+       #this sucks. But someone would need to modify filecheck to
+       #accept a blob of content. Or maybe hacking with IO::Scalar
+       my $tmpfile=File::Temp->new();
+
+       binmode $tmpfile,':utf8';
+       print $tmpfile $_->body();
+
+       my $allowed=pagespec_match($dest, $allowed_attachments, file=>$tmpfile);
+
+       if (!$allowed) {
+           debug("clobbering attachment $partcount");
+           $_->content_type_set('text/plain');
+           $_->body_set("[ omitting part $partcount: $allowed ]");
+
+       }
+       $partcount++;
+    }
+    my $body= join("\n", map { $_->body }  @parts);
+
+    $template->param(body=>format_body($body));
 
-    my $output=$template->output();
+    $output .= $template->output();
     return $output;
 }
 
+sub format_body($){
+    my $body=shift;
+
+    # it is not completely clear to me the right way to go here.  
+    # passing things straight to markdown is not working all that
+    # well.
+    return "<pre>".escapeHTML($body)."</pre>";
+}
 ### Utilities
 
-# From Arpit Jain
+# based on bestdir From Arpit Jain
 # http://ikiwiki.info/todo/Bestdir_along_with_bestlink_in_IkiWiki.pm/
 # need to clarify license
-sub bestdir ($$) { #{{{
+sub bestpath ($$) { #{{{
     my $page=shift;
        my $link=shift;
        my $cwd=$page;
@@ -95,7 +233,7 @@ sub bestdir ($$) { #{{{
                my $l=$cwd;
                $l.="/" if length $l;
                $l.=$link;
-               if (-d "$config{srcdir}/$l") {
+               if (-d "$config{srcdir}/$l" || -f "$config{srcdir}/$l") {
                        return $l;
                }
        } while $cwd=~s!/?[^/]+$!!;
@@ -103,7 +241,7 @@ sub bestdir ($$) { #{{{
        if (length $config{userdir}) {
                my $l = "$config{userdir}/".lc($link);
 
-               if (-d $l) {
+               if (-d $l || -f $l) {
                        return $l;
                }
        }
@@ -111,25 +249,39 @@ sub bestdir ($$) { #{{{
        return "";
 } #}}}
 
+sub pagetemplate (@) { #{{{
+       my %params=@_;
+        my $page=$params{page};
+        my $destpage=$params{destpage};
+        my $template=$params{template};
 
 
-sub fill_template(@){
-    my  %params=@_;
-    my $template = $params{template} || error gettext("missing parameter");
-
-    $params{basename}=IkiWiki::basename($params{page});
-
-    foreach my $param (keys %params) {
-       if ($template->query(name => $param)) {
-           $template->param($param =>
-                            IkiWiki::htmlize($params{page}, $params{destpage},
-                                             pagetype($pagesources{$params{page}}),
-                                             $params{$param}));
+       if ($page =~ /.*comments/  && defined($config{mailbox_copyright})){
+           $template->param(COPYRIGHT=>$config{mailbox_copyright});
        }
-       if ($template->query(name => "raw_$param")) {
-           $template->param("raw_$param" => $params{$param});
+
+       if (exists $metaheaders{$page} && $template->query(name => "meta")) {
+               # avoid duplicate meta lines
+               my %seen;
+               $template->param(meta => join("\n", grep { (! $seen{$_}) && ($seen{$_}=1) } @{$metaheaders{$page}}));
        }
+}
+
+
+
+package Email::FolderType::MH;
+
+sub match {
+    my $folder = shift;
+    return 0 if (! -d $folder);
+    opendir DIR,$folder || error("opendir failed");
+
+    while (<DIR>){
+      return 0 if (!m|\.| && !m|\.\.| && !m|\d+|);
     }
+    return 1;
 }
 
-1
+
+
+1;