Parley::App::Notification - notification helper functions


Parley documentation Contained in the Parley distribution.

Index


Code Index:

NAME

Top

Parley::App::Notification - notification helper functions

SYNOPSIS

Top

  use Parley::App::Notification qw( :watch );

  notify_watchers($c, $post);

SEE ALSO

Top

Parley::Controller::Root, Catalyst::Plugin::Email, Catalyst

AUTHOR

Top

Chisel Wright <chiselwright@users.berlios.de>

LICENSE

Top

This library is free software, you can redistribute it and/or modify it under the same terms as Perl itself.


Parley documentation Contained in the Parley distribution.

package Parley::App::Notification;
# vim: ts=8 sts=4 et sw=4 sr sta
use strict;
use warnings;

use Parley::Version;  our $VERSION = $Parley::VERSION;

use Perl6::Export::Attrs;

sub notify_watchers :Export( :watch ) {
    my ($c, $post) = @_;
    my ($send_status);

    # get a list of people we want to inform
    my $notification_list = $c->model('ParleyDB')->resultset('ThreadView')
        ->notification_list( $post )
    ;
    $c->log->debug( q{No. WATCHERS: } . $notification_list->count() );

    # loop through the list [resultset], queue and email
    # and update the time they were last notified
    while (my $thread_view_row = $notification_list->next()) {
        $c->log->debug( q{NOTIFY: } . $thread_view_row->person()->id() );
        $c->log->debug( q{NOTIFY: } . $thread_view_row->person()->forum_name() );

        # DO NOT notify people that have the 'notify_thread_watch' preference set to false
        if (not $thread_view_row->person()->preference()->notify_thread_watch()) {
            $c->log->debug( q{NOTIFY: DO NOT NOTIFY PERSON (preference.notify_thread_watch=false)} );
            next;
        }
        $c->log->debug( q{NOTIFY: NOTIFY PERSON (preference.notify_thread_watch=true)} );

        # send email
        $send_status = $c->send_email(
            {
                template        => {
                    text    => q{thread_update_notify.eml},
                    html    => q{thread_update_notify.html},
                },
                person          => $thread_view_row->person(),
                headers         => {
                    from    => $c->application_email_address(),
                    subject => qq{New Reply: } . $post->thread()->subject(),
                },
                template_data   => {
                    post    => $post,
                },
            }
        );

        # update thread_view record for thread-person
        my $thread_view_record = $c->model('ParleyDB')->resultset('ThreadView')
            ->find(
                person_id  => $thread_view_row->person()->id(),
                thread_id  => $post->thread()->id(),
            )
        ;
        $thread_view_record->last_notified(
            #$thread_view_record->timestamp()
            Time::Piece->new(time)->datetime,
        );
        $thread_view_record->update();
    }

    return;
}


1;

__END__