/[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 6 by dpavlin, Sat May 14 12:31:27 2005 UTC revision 42 by dpavlin, Wed May 18 09:46:49 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 Data::Dumper;  
7    
8  =head1 NAME  =head1 NAME
9    
10  sender.pl - command line notify sender utility  sender.pl - command line notify sender utility
11    
12    =head1 SYNOPSYS
13    
14     sender.pl --new=mylist
15     sender.pl --add=mylist members.txt
16     sender.pl --list[=mylist]
17     sender.pl --queue[=mylist message.txt]
18     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
25    
26    =over 20
27    
28  =cut  =cut
29    
30  my ($list_opt,$debug) = (0,0);  my $debug = 0;
31  my $add_opt;  my $verbose = 0;
32  my $queue_opt;  my $opt;
33    
34  my $result = GetOptions(  my $result = GetOptions(
35          "list"  => \$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            "queue:s" => \$opt->{'queue'},
39            "send:s" => \$opt->{'send'},
40            "inbox=s" => \$opt->{'inbox'},
41          "debug" => \$debug,          "debug" => \$debug,
42            "verbose" => \$verbose,
43  );  );
44    
45    my $nos = new Nos(
46  my $loader = Class::DBI::Loader::Pg->new(          dsn => 'dbi:Pg:dbname=notices',
47          debug           => $debug,          user => 'dpavlin',
48          dsn             => "dbi:Pg:dbname=notices",          passwd => '',
49          user            => "dpavlin",          debug => $debug,
50          password        => "",          verbose => $verbose,
         namespace       => "Noticer",  
 #       additional_classes      => qw/Class::DBI::AbstractSearch/,  
 #       additional_base_classes => qw/My::Stuff/,  
         relationships   => 1,  
51  );  );
52    
53    my $loader = $nos->{'loader'} || die "can't find loader?";
54    
55  my $lists = $loader->find_class('lists');  my $lists = $loader->find_class('lists');
56  my $users = $loader->find_class('users');  my $users = $loader->find_class('users');
57  my $user_list = $loader->find_class('user_list');  my $user_list = $loader->find_class('user_list');
58  my $messages = $loader->find_class('messages');  my $messages = $loader->find_class('messages');
59  my $message_list = $loader->find_class('message_list');  my $queue = $loader->find_class('queue');
60    my $sent = $loader->find_class('sent');
61    
62    $queue->set_sql( list_queue => qq{
63            SELECT messages.message, messages.date AS date, lists.name AS list
64            FROM queue
65            JOIN messages on message_id = messages.id
66            JOIN lists on list_id = lists.id
67    } );
68    
69    my $list_name;
70    
71    
72    =item --new=list_name my-list@example.com
73    
74    Adds new list. You can also feed list name as first line to C<STDIN>.
75    
76    =cut
77    
78    if ($list_name = $opt->{'new'}) {
79    
80            my $email = shift @ARGV || <>;
81            chomp($email);
82    
83            die "need e-mail address for list (as argument or on STDIN)\n" unless ($email);
84    
85            my $id = $nos->new_list(
86                    list => $list_name,
87                    email => $email,
88            ) || die "can't add list $list_name\n";
89    
90            print "added list $list_name with ID $id\n";
91    
92    
93    =item --list[=list_name]
94    
95  if ($list_opt) {  List all available lists and users on them.
96          foreach my $list ($lists->retrieve_all) {  
97                  print $list->name,"\n";  Optional value is name of list. With it, this option will produce just users
98    on that list.
99    
100    =cut
101    
102    } elsif (defined($list_name = $opt->{'list'})) {
103    
104            my @lists;
105    
106            if ($list_name ne '') {
107                    @lists = $lists->search( name=> $list_name )->first || die "can't find list $list_name";
108            } else {
109                    @lists = $lists->retrieve_all;
110            }
111    
112            foreach my $list (@lists) {
113                    print $list->name," <",$list->email,">\n";
114                  foreach my $user_on_list ($user_list->search(list_id => $list->id)) {                  foreach my $user_on_list ($user_list->search(list_id => $list->id)) {
115                          my $user = $users->retrieve( id => $user_on_list->user_id );                          print "\t",$user_on_list->user_id->full_name," <", $user_on_list->user_id->email, ">\n";
                         print "\t",$user->full_name," <", $user->email, ">\n";  
116                  }                  }
117          }          }
118  } elsif ($add_opt) {  
119          #my $noticer = $loader->find_class('Noticer') || die "can't find my class!";  
120    =item --add=list_name
121    
122    Add users to list. Users are stored in file (which can be supplied as
123    argument) or read from C<STDIN>. List should be in following format:
124    
125     email@example.com      Optional full name of person
126     dpavlin@rot13.org      Dobrica Pavlinusic
127    
128    =cut
129    
130    } elsif ($list_name = $opt->{'add'}) {
131    
132          my $list = $lists->find_or_create({          my $list = $lists->find_or_create({
133                  name => $add_opt,                  name => $list_name,
134          }) || die "can't add list $add_opt\n";          }) || die "can't add list $list_name\n";
135    
136          my $added = 0;          my $added = 0;
137    
# Line 60  if ($list_opt) { Line 139  if ($list_opt) {
139                  chomp;                  chomp;
140                  next if (/^#/ || /^\s*$/);                  next if (/^#/ || /^\s*$/);
141                  my ($email, $name) = split(/\s+/,$_, 2);                  my ($email, $name) = split(/\s+/,$_, 2);
142                  print "# $name <$email>\n";                  $added++ if ($nos->add_member_to_list( email => $email, name => $name, list => $list_name ));
                 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();  
143          }          }
144    
145          print "list ",$list->name," has $added users\n";          print "list ",$list->name," has $added users\n";
146    
 } elsif ($queue_opt) {  
         my $this_list = $lists->search(  
                 name => $queue_opt,  
         )->first || die "can't find list $queue_opt";  
147    
148          my $message_text;  =item --queue[=list_name]
149          while(<>) {  
150                  $message_text .= $_;  Queue message for later delivery. Message can be read from file (specified as
151    argument) or read from C<STDIN>.
152    
153    This option without optional parametar will display pending queue. If you
154    add C<--verbose> flag, it will display all messages in queue.
155    
156    =cut
157    
158    } elsif (defined($list_name = $opt->{'queue'})) {
159    
160            if ($list_name ne '') {
161                    # add message to list queue
162    
163                    my $message_text;
164                    while(<>) {
165                            $message_text .= $_;
166                    }
167    
168                    my $id = $nos->add_message_to_list(
169                            list => $list_name,
170                            message => $message_text,
171                    ) || die "can't add message to list $list_name\n";
172    
173                    print "added message $id to list $list_name\n";
174    
175            } else {
176                    # list messages in queue        
177    
178                    foreach my $m ($queue->retrieve_all) {
179                            next if ($m->all_sent && ! $verbose);
180    
181                            my $l = $m->all_sent ? 'S' : 'Q';
182    
183                            my $date = $m->message_id->date;
184                            $date =~ s/\..+$//;
185                            my $msg = $m->message_id->message;
186                            $msg =~ s/\s+/ /gs;
187    
188                            $l .= sprintf(" %-15s %15s : ", $m->list_id->name, $date);
189                            $l .= substr($msg, 0, 79 - length($l));
190    
191                            print "$l\n";
192                    }
193    
194          }          }
195    
         die "no message" unless ($message_text);  
196    
197          my $this_message = $messages->find_or_create({  =item --send[=list_name]
198                  message => $message_text  
199          }) || die "can't insert message";  Send e-mails waiting in queue, or with optional argument, just send messages
200    for single list.
201    
202    =cut
203    
204    } elsif (defined($list_name = $opt->{'send'})) {
205    
206            $nos->send_queued_messages($list_name);
207    
208    
209    =item --inbox=list_name
210    
211          $this_message->dbi_commit();  Feed incomming message back into notice sender.
212    
213          $message_list->find_or_create({  =cut
214                  message_id => $this_message->id,  
215                  list_id => $this_list->id,  } elsif ($list_name = $opt->{'inbox'}) {
216          }) || die "can't add message ",$this_message->id," to list ",$this_list->id, ": ",$this_list->name;  
217            my $message;
218            while(<>) {
219                    $message .= $_;
220            }
221    
222            $nos->inbox_message(
223                    list => $list_name,
224                    message => $message,
225            ) || die "can't receive message for list $list_name";
226    
         print "added message ",$this_message->id, " to list ",$this_list->name,"\n";  
227    
228  } else  {  } else  {
229          die $0.'          die "see perldoc $0 for help\n";
         --list                          show all lists and users  
         --add=name_of_list < users.txt  add users (email@example.com full name)  
         --queue=name_of_list < message  queue message for sending to list  
         --debug  
 ';  
230  }  }
231    
232    =back
233    
234    
235    
236    =head2 Helper options
237    
238    =over 20
239    
240    =item --debug
241    
242    Turn on debugging output from C<Class::DBI>
243    
244    =item --verbose
245    
246    Dump more info on screen.
247    
248    =back
249    
250    
251    
252    =head1 AUTHOR
253    
254    Dobrica Pavlinusic <dpavlin@rot13.org>
255    
256    =cut
257    

Legend:
Removed from v.6  
changed lines
  Added in v.42

  ViewVC Help
Powered by ViewVC 1.1.26