/[notice-sender]/trunk/sender.pl
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/sender.pl

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

revision 18 by dpavlin, Sun May 15 17:01:19 2005 UTC revision 33 by dpavlin, Tue May 17 11:09:08 2005 UTC
# Line 1  Line 1 
1  #!/usr/bin/perl -w  #!/usr/bin/perl -w
2    
3  use strict;  use strict;
4  use Class::DBI::Loader::Pg;  use blib;
5    use Nos;
6  use Getopt::Long;  use Getopt::Long;
 use Email::Valid;  
 use Email::Send;  
7    
8  =head1 NAME  =head1 NAME
9    
# Line 12  sender.pl - command line notify sender u Line 11  sender.pl - command line notify sender u
11    
12  =head1 SYNOPSYS  =head1 SYNOPSYS
13    
14     sender.pl --new=mylist
15   sender.pl --add=mylist members.txt   sender.pl --add=mylist members.txt
16   sender.pl --list[=mylist]   sender.pl --list[=mylist]
17   sender.pl --queue[=mylist message.txt]   sender.pl --queue[=mylist message.txt]
18   sender.pl --send=mylist   sender.pl --send=mylist
19    
20    In C</etc/aliases> something like:
21    
22     mylist: "| /path/to/sender.pl --inbox=mylist"
23    
24  =head2 Command options  =head2 Command options
25    
26  =over 20  =over 20
# Line 25  sender.pl - command line notify sender u Line 29  sender.pl - command line notify sender u
29    
30  my $debug = 0;  my $debug = 0;
31  my $verbose = 0;  my $verbose = 0;
32  my $list_opt;  my $opt;
 my $add_opt;  
 my $queue_opt;  
 my $send_opt;  
 my $email_opt;  
33    
34  my $result = GetOptions(  my $result = GetOptions(
35          "list:s" => \$list_opt,          "new=s" => \$opt->{'new'},
36          "add=s" => \$add_opt,          "list:s" => \$opt->{'list'},
37          "queue:s" => \$queue_opt,          "add=s" => \$opt->{'add'},
38          "send:s" => \$send_opt,          "queue:s" => \$opt->{'queue'},
39            "send:s" => \$opt->{'send'},
40            "inbox=s" => \$opt->{'inbox'},
41          "debug" => \$debug,          "debug" => \$debug,
42          "verbose" => \$verbose,          "verbose" => \$verbose,
43          "email=s" => \$email_opt,          "email=s" => \$opt->{'email'},
44  );  );
45    
46    my $nos = new Nos(
47  my $loader = Class::DBI::Loader::Pg->new(          dsn => 'dbi:Pg:dbname=notices',
48          debug           => $debug,          user => 'dpavlin',
49          dsn             => "dbi:Pg:dbname=notices",          passwd => '',
50          user            => "dpavlin",          debug => $debug,
51          password        => "",          verbose => $verbose,
         namespace       => "Noticer",  
 #       additional_classes      => qw/Class::DBI::AbstractSearch/,  
 #       additional_base_classes => qw/My::Stuff/,  
         relationships   => 1,  
52  );  );
53    
54    my $loader = $nos->{'loader'} || die "can't find loader?";
55    
56  my $lists = $loader->find_class('lists');  my $lists = $loader->find_class('lists');
57  my $users = $loader->find_class('users');  my $users = $loader->find_class('users');
58  my $user_list = $loader->find_class('user_list');  my $user_list = $loader->find_class('user_list');
# Line 67  $queue->set_sql( list_queue => qq{ Line 67  $queue->set_sql( list_queue => qq{
67          JOIN lists on list_id = lists.id          JOIN lists on list_id = lists.id
68  } );  } );
69    
70    my $list_name;
71    
72    
73    =item --new=list_name my-list@example.com
74    
75    Adds new list. You can also feed list name as first line to C<STDIN>.
76    
77    =cut
78    
79    if ($list_name = $opt->{'new'}) {
80    
81            my $email = shift @ARGV || <>;
82            chomp($email);
83    
84            die "need e-mail address for list (as argument or on STDIN)\n" unless ($email);
85    
86            my $id = $nos->new_list(
87                    list => $list_name,
88                    email => $email,
89            ) || die "can't add list $list_name\n";
90    
91            print "added list $list_name with ID $id\n";
92    
93    
94  =item --list[=list_name]  =item --list[=list_name]
95    
# Line 77  on that list. Line 100  on that list.
100    
101  =cut  =cut
102    
103  if (defined($list_opt)) {  } elsif (defined($list_name = $opt->{'list'})) {
104    
105          my @lists;          my @lists;
106          if ($list_opt ne '') {  
107                  @lists = $lists->search( name=> $list_opt )->first || die "can't find list $list_opt";          if ($list_name ne '') {
108                    @lists = $lists->search( name=> $list_name )->first || die "can't find list $list_name";
109          } else {          } else {
110                  @lists = $lists->retrieve_all;                  @lists = $lists->retrieve_all;
111          }          }
# Line 93  if (defined($list_opt)) { Line 118  if (defined($list_opt)) {
118                  }                  }
119          }          }
120    
121    
122  =item --add=list_name  =item --add=list_name
123    
124  Add users to list. Users are stored in file (which can be supplied as  Add users to list. Users are stored in file (which can be supplied as
# Line 106  B<This seems somewhat cludgy, and it wil Line 132  B<This seems somewhat cludgy, and it wil
132    
133  =cut  =cut
134    
135  } elsif ($add_opt) {  } elsif ($list_name = $opt->{'add'}) {
136          #my $noticer = $loader->find_class('Noticer') || die "can't find my class!";  
137          my $list = $lists->find_or_create({          my $list = $lists->find_or_create({
138                  name => $add_opt,                  name => $list_name,
139          }) || die "can't add list $add_opt\n";          }) || die "can't add list $list_name\n";
         if ($email_opt && $list->email ne $email_opt) {  
                 $list->email($email_opt);  
                 $list->update;  
                 $list->dbi_commit;  
         }  
140    
141          my $added = 0;          my $added = 0;
142    
# Line 123  B<This seems somewhat cludgy, and it wil Line 144  B<This seems somewhat cludgy, and it wil
144                  chomp;                  chomp;
145                  next if (/^#/ || /^\s*$/);                  next if (/^#/ || /^\s*$/);
146                  my ($email, $name) = split(/\s+/,$_, 2);                  my ($email, $name) = split(/\s+/,$_, 2);
147                  $name ||= '';                  $added++ if ($nos->add_member_to_list( email => $email, name => $name, list => $list_name ));
                 if (! Email::Valid->address($email)) {  
                         print "SKIPPING $name <$email>\n";  
                         next;  
                 }  
                 print "# $name <$email>\n";  
                 my $this_user = $users->find_or_create({  
                         email => $email,  
                         full_name => $name,  
                 }) || die "can't find or create member\n";  
                 my $user_on_list = $user_list->find_or_create({  
                         user_id => $this_user->id,  
                         list_id => $list->id,  
                 }) || die "can't add user to list";  
                 $added++;  
         }  
   
         foreach my $c_name ($loader->tables) {  
                 my $c = $loader->find_class($c_name)|| die "can't find $c_name";  
                 $c->dbi_commit();  
148          }          }
149    
150          print "list ",$list->name," has $added users\n";          print "list ",$list->name," has $added users\n";
151    
152    
153  =item --queue[=list_name]  =item --queue[=list_name]
154    
155  Queue message for later delivery. Message can be read from file (specified as  Queue message for later delivery. Message can be read from file (specified as
# Line 157  add C<--verbose> flag, it will display a Line 160  add C<--verbose> flag, it will display a
160    
161  =cut  =cut
162    
163  } elsif (defined($queue_opt)) {  } elsif (defined($list_name = $opt->{'queue'})) {
164    
165          if ($queue_opt ne '') {          if ($list_name ne '') {
166                  # add message to list queue                  # add message to list queue
167    
                 my $this_list = $lists->search(  
                         name => $queue_opt,  
                 )->first || die "can't find list $queue_opt";  
   
168                  my $message_text;                  my $message_text;
169                  while(<>) {                  while(<>) {
170                          $message_text .= $_;                          $message_text .= $_;
171                  }                  }
172    
173                  die "no message" unless ($message_text);                  my $id = $nos->add_message_to_list(
174                            list => $list_name,
175                  my $this_message = $messages->find_or_create({                          message => $message_text,
176                          message => $message_text                  ) || die "can't add message to list $list_name\n";
                 }) || die "can't insert message";  
   
                 $this_message->dbi_commit() || die "can't add message";  
   
                 $queue->find_or_create({  
                         message_id => $this_message->id,  
                         list_id => $this_list->id,  
                 }) || die "can't add message ",$this_message->id," to list ",$this_list->id, ": ",$this_list->name;  
177    
178                  $queue->dbi_commit || die "can't add message to list ",$this_list->name;                  print "added message $id to list $list_name\n";
   
                 print "added message ",$this_message->id, " to list ",$this_list->name,"\n";  
179    
180          } else {          } else {
181                  # list messages in queue                          # list messages in queue        
# Line 209  add C<--verbose> flag, it will display a Line 198  add C<--verbose> flag, it will display a
198    
199          }          }
200    
201    
202  =item --send[=list_name]  =item --send[=list_name]
203    
204  Send e-mails waiting in queue, or with optional argument, just send messages  Send e-mails waiting in queue, or with optional argument, just send messages
# Line 216  for single list. Line 206  for single list.
206    
207  =cut  =cut
208    
209  } elsif (defined($send_opt)) {  } elsif (defined($list_name = $opt->{'send'})) {
210    
211          my $my_q;          $nos->send_queued_messages($list_name);
         if ($send_opt ne '') {  
                 my $l_id = $lists->search_like( name => $send_opt )->first ||  
                         die "can't find list $send_opt";  
                 $my_q = $queue->search_like( list_id => $l_id ) ||  
                         die "can't find list $send_opt";  
         } else {  
                 $my_q = $queue->retrieve_all;  
         }  
212    
         while (my $m = $my_q->next) {  
                 next if ($m->all_sent);  
213    
214                  print "sending message ",$m->message_id," enqueued on ",$m->date," to list ",$m->list_id->name,"\n";  =item --inbox=list_name
                 my $msg = $m->message_id->message;  
215    
216                  foreach my $u ($user_list->search(list_id => $m->list_id)) {  Feed incomming message back into notice sender.
217    
218                          my $hdr = "To: ".$u->user_id->full_name." <". $u->user_id->email. ">\n";  =cut
219    
220                          if ($sent->search( message_id => $m->message_id, user_id => $u->user_id )) {  } elsif ($opt->{'inbox'}) {
221                                  print "SKIP ",$u->user_id->email," message allready sent\n";  
222                          } else {          warn "inbox option is not implemented";
                                 print "\t",$u->user_id->email,"\n";  
   
                                 # FIXME do real sending :-)  
                                 send IO => "$hdr\n$msg";  
   
                                 $sent->create({  
                                         message_id => $m->message_id,  
                                         user_id => $u->user_id,  
                                 });  
                                 $sent->dbi_commit;  
                         }  
                 }  
                 $m->all_sent(1);  
                 $m->update;  
                 $m->dbi_commit;  
         }  
223    
224  } else  {  } else  {
225          die "see perldoc $0 for help";          die "see perldoc $0 for help\n";
226  }  }
227    
228  =back  =back

Legend:
Removed from v.18  
changed lines
  Added in v.33

  ViewVC Help
Powered by ViewVC 1.1.26