#-*- perl -*- # # Copyright (C) 2000,2001,2002 Ken'ichi Fukamachi # All rights reserved. # # $FML: Distribute.pm,v 1.64 2002/02/17 03:07:55 fukachan Exp $ # package FML::Process::Distribute; use vars qw($debug @ISA @EXPORT @EXPORT_OK); use strict; use Carp; use FML::Process::Kernel; use FML::Log qw(Log LogWarn LogError); use FML::Config; @ISA = qw(FML::Process::Kernel); =head1 NAME FML::Process::Distribute -- fml5 article distributer library. =head1 SYNOPSIS use FML::Process::Distribute; ... See L for details of the fml flow. =head1 DESCRIPTION C drives the fml flow where C<$obj> is the object C returns. =head1 METHOD =head2 C create C object. C<$curproc> is the object C returns but we bless it as C object again. =cut # Descriptions: constructor. # sub class of FML::Process::Kernel # Arguments: OBJ($self) HASH_REF($args) # Side Effects: none # Return Value: OBJ(FML::Process::Distribute) sub new { my ($self, $args) = @_; my $type = ref($self) || $self; my $curproc = new FML::Process::Kernel $args; return bless $curproc, $type; } =head2 C forward the request to the base class. =cut # Descriptions: prepare miscellaneous work before the main routine starts # Arguments: OBJ($self) HASH_REF($args) # Side Effects: none # Return Value: none sub prepare { my ($self, $args) = @_; my $config = $self->{ config }; my $eval = $config->get_hook( 'distribute_prepare_start_hook' ); if ($eval) { eval qq{ $eval; }; LogWarn($@) if $@; } $self->SUPER::prepare($args); $eval = $config->get_hook( 'distribute_prepare_end_hook' ); if ($eval) { eval qq{ $eval; }; LogWarn($@) if $@; } } =head2 C check the mail sender and the mail loop possibility. =cut # Descriptions: verify the mail sender and others # Arguments: OBJ($curproc) HASH_REF($args) # Side Effects: lock # Return Value: none sub verify_request { my ($curproc, $args) = @_; my $config = $curproc->{ config }; my $eval = $config->get_hook( 'distribute_verify_request_start_hook' ); if ($eval) { eval qq{ $eval; }; LogWarn($@) if $@; } $curproc->verify_sender_credential(); $curproc->simple_loop_check(); $eval = $config->get_hook( 'distribute_verify_request_end_hook' ); if ($eval) { eval qq{ $eval; }; LogWarn($@) if $@; } } =head2 C) Firstly it locks (giant lock) the current process. If the mail sender is one of our mailing list member, we can distribute the mail as an article. If not, we inform "you are not a member" which is sent by C in C. Lastly we unlock the current process. =cut # Descriptions: the main routine, kick off _distribute() # Arguments: OBJ($curproc) HASH_REF($args) # Side Effects: distribution of articles. # See _distribute() for more details. # Return Value: none sub run { my ($curproc, $args) = @_; my $config = $curproc->{ config }; my $eval = $config->get_hook( 'distribute_run_start_hook' ); if ($eval) { eval qq{ $eval; }; LogWarn($@) if $@; } $curproc->lock(); { if ($curproc->permit_post($args)) { $curproc->_distribute($args); } else { Log("deny article submission"); } } $curproc->unlock(); $eval = $config->get_hook( 'distribute_run_end_hook' ); if ($eval) { eval qq{ $eval; }; LogWarn($@) if $@; } } =head2 help() =cut # Descriptions: show help # Arguments: none # Side Effects: none # Return Value: none sub help { print <<"_EOF_"; Usage: $0 \$ml_home_prefix/\$ml_name [options] For example, distribute of elena ML $0 /var/spool/ml/elena _EOF_ } =head2 C Finalize the current process. If needed, we send back error messages to the mail sender. =cut # Descriptions: clean up in the end of the curreen process. # return error messages et. al. # Arguments: OBJ($curproc) HASH_REF($args) # Side Effects: queue flush # Return Value: none sub finish { my ($curproc, $args) = @_; my $config = $curproc->{ config }; my $eval = $config->get_hook( 'distribute_finish_start_hook' ); if ($eval) { eval qq{ $eval; }; LogWarn($@) if $@; } $curproc->inform_reply_messages(); $curproc->queue_flush(); $eval = $config->get_hook( 'distribute_finish_end_hook' ); if ($eval) { eval qq{ $eval; }; LogWarn($@) if $@; } } # Descriptions: the top level routine to drive the article spooling and # distribution. # $article->header_rewrite(); # $article->increment_id(); # $article->spool(); # Arguments: OBJ($curproc) HASH_REF($args) # Side Effects: header rewrite # the article sequence number is incremanted # article spooling. # Return Value: none sub _distribute { my ($curproc, $args) = @_; my $config = $curproc->{ config }; # XXX $ah is "article handler" object. # XXX $ah != $curproc->{ article } (which is just a key) # XXX $curproc->{ article } is prepared as a side effect. my $ah = $curproc->_prepare_article($args); # get sequence number my $id = $ah->increment_id; # XXX debug, remove here in the future { my $ha_msg = $curproc->{ article }->{ body }->data_type_list; for (@$ha_msg) { Log($_);} } # thread system checks the message before header rewritings. $curproc->_thread_check($args) if $config->yes('use_thread_track'); # header operations # XXX we need $curproc->{ article }, which is prepared above. $curproc->_header_rewrite({ id => $id }); # spool in the article before delivery $ah->spool_in($id); # delivery starts ! $curproc->_deliver_article($args); if ($config->yes('use_html_archive')) { Log("htmlify article $id"); $curproc->htmlify($args); } } # Descriptions: build and return FML::Article object # Arguments: OBJ($curproc) HASH_REF($args) # Side Effects: none # Return Value: OBJ(FML::Article) sub _prepare_article { my ($curproc, $args) = @_; # create aritcle to distribute use FML::Article; # Side Effects: $article->{ curproc } = $curproc; return new FML::Article $curproc; } # Descriptions: header rewrite followed by # $config->{ article_header_rewrite_rules } # each method exists in FML::Header module. # Arguments: OBJ($curproc) HASH_REF($args) # Side Effects: $curproc->{ article }->{ header } is rewritten # Return Value: none sub _header_rewrite { my ($curproc, $args) = @_; my $config = $curproc->{ config }; my $header = $curproc->{ article }->{ header }; my $rules = $curproc->{ config }->{ article_header_rewrite_rules }; my $id = $args->{ id }; for my $rule (split(/\s+/, $rules)) { Log("_header_rewrite( $rule )") if $config->yes('debug'); if ($header->can($rule)) { # See FML::Header and FML::Header::* $header->$rule($config, { # for methods themself mode => 'distribute', id => $id, }); } else { Log("Error: header->$rule is undefined"); } } } # Descriptions: deliver the article # Arguments: OBJ($curproc) HASH_REF($args) # Side Effects: mail delivery, logging # Return Value: none sub _deliver_article { my ($curproc, $args) = @_; my $config = $curproc->{ config }; # FML::Config object my $message = $curproc->{ article }->{ message }; # Mail::Message object my $header = $curproc->{ article }->{ header }; # FML::Header object my $body = $curproc->{ article }->{ body }; # Mail::Message object unless ( $config->yes( 'use_article_delivery' ) ) { return; } # SMTP-FROM is a must! unless ( $config->{'maintainer'} ) { Log("not delivery for undefined \$maintainer"); return; } # distribute article my $fp = sub { Log(@_);}; # pointer to the log function my $sfp = sub { my ($s) = @_; print $s; print "\n" if $s !~ /\n$/o;}; { # debug my $dir = $config->{ smtp_log_dir }; use File::Utils qw(mkdirhier); mkdirhier($dir) unless -d $dir; my $f = $config->{ smtp_log_file }; unlink $f if -f $f; if ($f) { use FileHandle; my $fh = new FileHandle "> $f"; if (defined $fh) { $fh->autoflush(1); $sfp = sub { print $fh @_;}; } } } # delay loading of module my $service = {}; eval q{ use Mail::Delivery; $service = new Mail::Delivery { log_function => $fp, smtp_log_function => $sfp, }; }; croak($@) if $@; if ($service->error) { Log($service->error); return;} $service->deliver( { 'smtp_servers' => $config->{'smtp_servers'}, 'smtp_sender' => $config->{'smtp_sender'}, 'recipient_maps' => $config->{recipient_maps}, 'recipient_limit' => $config->{recipient_limit}, 'message' => $message, }); if ($service->error) { Log($service->error); return;} } # Descriptions: the top level interface to drive thread tracking system # Arguments: OBJ($curproc) HASH_REF($args) # Side Effects: update thread information # Return Value: none sub _thread_check { my ($curproc, $args) = @_; my $config = $curproc->{ config }; my $pcb = $curproc->{ pcb }; my $myname = $curproc->myname(); my $ml_name = $config->{ ml_name }; my $thread_db_dir = $config->{ thread_db_dir }; my $spool_dir = $config->{ spool_dir }; my $article_id = $pcb->get('article', 'id'); my $is_rewrite_hdr = $config->yes('use_thread_subject_tag') ? 1 : 0; my $ttargs = { myname => $myname, logfp => \&Log, fd => \*STDOUT, db_base_dir => $thread_db_dir, ml_name => $ml_name, spool_dir => $spool_dir, article_id => $article_id, rewrite_header => $is_rewrite_hdr, }; my $msg = $curproc->{ article }->{ message }; eval q{ use Mail::ThreadTrack; my $thread = new Mail::ThreadTrack $ttargs; $thread->analyze($msg); }; Log($@) if $@; } # Descriptions: the top level entry to create HTML article # Arguments: OBJ($curproc) HASH_REF($args) # Side Effects: update html database # Return Value: none sub htmlify { my ($curproc, $args) = @_; my $config = $curproc->{ config }; my $pcb = $curproc->{ pcb }; my $myname = $curproc->myname(); my $ml_name = $config->{ ml_name }; my $spool_dir = $config->{ spool_dir }; my $html_dir = $config->{ html_archive_dir }; my $article_id = $pcb->get('article', 'id'); use File::Spec; my $article_file = File::Spec->catfile($spool_dir, $article_id); eval q{ use Mail::HTML::Lite; use File::Utils qw(mkdirhier); }; unless ($@) { mkdirhier($html_dir) unless -d $html_dir; &Mail::HTML::Lite::htmlify_file($article_file, { directory => $html_dir, }); } else { Log($@) if $@; } } =head1 AUTHOR Ken'ichi Fukamachi =head1 COPYRIGHT Copyright (C) 2000,2001,2002 Ken'ichi Fukamachi All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =head1 HISTORY FML::Process::Distribute appeared in fml5 mailing list driver package. See C for more details. =cut 1;