/usr/local/CPAN/Siesta/Siesta/Plugin/Subscribe.pm


# $Id: Subscribe.pm 1335 2003-08-13 13:08:05Z richardc $
package Siesta::Plugin::Subscribe;
use strict;
use Siesta::Plugin;
use String::Random;
use base 'Siesta::Plugin';

sub description {
    'A system plugin used for subscribing a member to the list';
}

sub process {
    my $self  = shift;
    my $mail  = shift;
    my $list  = $self->list;
    my $email = $mail->from;

    # check to see if they're already subbed
    if ( $list->is_member($email) ) {
        $mail->reply( body => Siesta->bake('subscribe_already',
                                           list    => $list,
                                           message => $mail) );
        return 1;
    }

    my $user = Siesta::Member->load( $email );
    my $newuser;
    unless ($user) {
        my $password = String::Random->new->randpattern('......');
        $user = Siesta::Member->create({ email    => $email,
                                         password => $password });
        $newuser = 1;
    }

    # add the user to the list and if that fails, send an error
    unless ( $list->add_member( $user ) ) {
        # mail them and reject them
        $mail->reply( body => Siesta->bake('subscribe_already',
                                           list    => $list,
                                           message => $mail) );
        return 1;
    }

    # mail the listowner and tell them that someone subbed
    $mail->reply( to   => $list->owner->email,
                  body => Siesta->bake('subscribe_notify',
                                       list    => $list,
                                       user    => $user,
                                       message => $mail )
                 );

    # mail the person and tell them that they've been subbed
    $mail->reply( body => Siesta->bake('subscribe_reply',
                                       list    => $list,
                                       message => $mail,
                                       user    => $user,
                                       newuser => $newuser,
                                      )
                 );
    return 1;
}


1;