+++ /dev/null
-#!/usr/bin/perl
-# ---------------------------------------------------------------
-# Generates the overdue notices XML file
-# ./eg_gen_overdue.pl <bootstap> 0
-# generates today's notices
-# ./eg_gen_overdue.pl <bootstap> 1 0
-# generates notices for today - 1 and today
-# ./eg_gen_overdue.pl <bootstap> 2 1 0
-# ./eg_gen_overdue.pl <bootstap> 3 2 1 0 etc...
-# ---------------------------------------------------------------
-
-
-
-use strict; use warnings;
-require '../../../Open-ILS/src/support-scripts/oils_header.pl';
-use vars qw/$logger $apputils/;
-use Data::Dumper;
-use OpenILS::Const qw/:const/;
-use OpenILS::Application::AppUtils;
-use DateTime;
-use Email::Send;
-use DateTime::Format::ISO8601;
-use OpenSRF::Utils qw/:datetime/;
-use OpenSRF::Utils::JSON;
-use Unicode::Normalize;
-use OpenILS::Const qw/:const/;
-use OpenSRF::AppSession;
-
-my $U = 'OpenILS::Application::AppUtils';
-
-my $SEND_EMAILS = 1;
-
-my $bsconfig = shift || die "usage: $0 <bootstrap_config>\n";
-my @goback = @ARGV;
-@goback = (0) unless @goback;
-osrf_connect($bsconfig);
-my $e = OpenILS::Utils::CStoreEditor->new;
-
-my $smtp = $ENV{EG_OVERDUE_SMTP_HOST};
-my $mail_sender = $ENV{EG_OVERDUE_EMAIL_SENDER};
-
-# ---------------------------------------------------------------
-# Set up the email template
-my $etmpl = $ENV{EG_OVERDUE_EMAIL_TEMPLATE};
-my $email_template;
-if( open(F,"$etmpl") ) {
- my @etmpl = <F>;
- $email_template = join('',@etmpl);
- close(F);
-}
-# ---------------------------------------------------------------
-
-
-
-my @date = CORE::localtime;
-my $sec = $date[0];
-my $min = $date[1];
-my $hour = $date[2];
-my $day = $date[3];
-my $mon = $date[4] + 1;
-my $year = $date[5] + 1900;
-
-my %USER_CACHE;
-my %ORG_CACHE;
-
-
-print <<XML;
-<?xml version='1.0' encoding='UTF-8'?>
-<file type="notice" date="$mon/$day/$year" time="$hour:$min:$sec">
- <agency name="PINES">
-XML
-
-print_notices($_) for @goback;
-
-print <<XML;
- </agency>
-</file>
-XML
-
-
-# -----------------------------------------------------------------------
-# -----------------------------------------------------------------------
-
-
-sub print_notices {
- my $goback = shift || 0;
-
- for my $day ( qw/ 7 14 30 / ) {
- my ($start, $end) = make_date_range($day + $goback);
-
- $logger->info("OD_notice: process date range $start -> $end");
-
- my $query = [
- {
- checkin_time => undef,
- due_date => { between => [ $start, $end ] },
- },
- { order_by => { circ => 'usr, circ_lib' } }
- ];
- #my $circs = $e->search_action_circulation($query, {idlist=>1});
-
- my $ses = OpenSRF::AppSession->create('open-ils.cstore');
- my $req = $ses->request('open-ils.cstore.direct.action.circulation.id_list', @$query);
- my $circs = [];
- my $resp;
- push(@$circs, $resp->content) while ($resp = $req->recv(timeout=>600));
-
- process_circs( $circs, "${day}day" );
- }
-}
-
-
-sub process_circs {
- my $circs = shift;
- my $range = shift;
-
- return unless @$circs;
-
- $logger->info("OD_notice: processing range $range and ".scalar(@$circs)." potential circs");
-
- my $org;
- my $patron;
- my @current;
-
- my $x = 0;
- for my $circ (@$circs) {
- $circ = $e->retrieve_action_circulation($circ);
-
- if( !defined $org or
- $circ->circ_lib != $org or $circ->usr ne $patron ) {
- $org = $circ->circ_lib;
- $patron = $circ->usr;
- print_notice( $range, \@current ) if @current;
- @current = ();
- }
-
- push( @current, $circ );
- $x++;
- }
-
- $logger->info("OD_notice: processed $x circs");
- print_notice( $range, \@current );
-}
-
-sub make_date_range {
- my $daysback = shift;
-
- my $epoch = CORE::time - ($daysback * 24 * 60 * 60);
- my $date = DateTime->from_epoch( epoch => $epoch, time_zone => 'local');
-
- $date->set_hour(0);
- $date->set_minute(0);
- $date->set_second(0);
- my $start = "$date";
-
- $date->set_hour(23);
- $date->set_minute(59);
- $date->set_second(59);
-
- return ($start, "$date");
-}
-
-
-sub print_notice {
- my( $range, $circs ) = @_;
- return unless @$circs;
-
- my $s1 = scalar(@$circs);
-
- # we don't charge for lost or claimsreturned
- $circs = [
- grep {
- !$_->stop_fines or (
- $_->stop_fines ne OILS_STOP_FINES_LOST and
- $_->stop_fines ne OILS_STOP_FINES_CLAIMSRETURNED
- )
- } @$circs
- ];
-
- return unless @$circs;
-
- my $s2 = $s1 - scalar(@$circs);
- $logger->info("OD_notice: dropped $s2 lost/CR from processing...") if $s2;
-
- my $org = $circs->[0]->circ_lib;
- my $usr = $circs->[0]->usr;
- $logger->debug("OD_notice: printing $range user:$usr org:$org");
-
- my @patron_data = fetch_patron_data($usr);
- my @org_data = fetch_org_data($org);
-
- return unless (@patron_data and @org_data);
-
- my $email;
-
- if( $email = $patron_data[0]->email
- and $email =~ /.+\@.+/
- and ($range eq '7day' or $range eq '14day') ) {
-
- send_email($range, \@patron_data, \@org_data, $circs);
-
- } else {
-
- if( $patron_data[9] ) {
-
- print "\t\t<notice type='overdue' count='$range'>\n";
- print_patron_xml_chunk(@patron_data);
- print_org_xml_chunk(@org_data);
- print_circ_chunk($_) for @$circs;
- print "\t\t</notice>\n";
-
- } else {
- # There is no zip, therefore no address.
- $logger->warn("OD_notice: unable to send mail notification for $usr due to lack of valid address");
- }
- }
-}
-
-
-sub fetch_patron_data {
- my $user_id = shift;
-
- my $patron = $USER_CACHE{$user_id};
-
- if( ! $patron ) {
- $logger->debug("OD_notice: fetching patron $user_id");
-
- $patron = $e->retrieve_actor_user(
- [
- $user_id,
- {
- flesh => 1,
- flesh_fields => {
- 'au' => [qw/ card billing_address mailing_address /]
- }
- }
- ]
- ) or return handle_event($e->event);
-
- $USER_CACHE{$user_id} = $patron;
- }
-
- my $bc = $patron->card->barcode;
- my $fn = $patron->first_given_name;
- my $mn = $patron->second_given_name;
- my $ln = $patron->family_name;
-
- my ( $s1, $s2, $city, $state, $zip );
-
- my $baddr = $patron->mailing_address;
- unless( $baddr and $U->is_true($baddr->valid) ) {
- $baddr = $patron->billing_address;
- $baddr = undef unless( $baddr and $U->is_true($baddr->valid) );
- }
-
- if( $baddr ) {
- $s1 = $baddr->street1;
- $s2 = $baddr->street2;
- $city = $baddr->city;
- $state = $baddr->state;
- $zip = $baddr->post_code;
- }
-
- $bc = entityize($bc);
- $fn = entityize($fn);
- $mn = entityize($mn);
- $ln = entityize($ln);
- $s1 = entityize($s1);
- $s2 = entityize($s2);
- $city = entityize($city);
- $state = entityize($state);
- $zip = entityize($zip);
-
- return ( $patron, $bc, $fn, $mn, $ln, $s1, $s2, $city, $state, $zip );
-}
-
-
-sub print_patron_xml_chunk {
- my( $patron, $bc, $fn, $mn, $ln, $s1, $s2, $city, $state, $zip ) = @_;
- my $pid = $patron->id;
- print <<" XML";
- <patron>
- <id type="barcode">$bc</id>
- <fullname>$fn $mn $ln</fullname>
- <street1>$s1 $s2</street1>
- <city_state_zip>$city, $state $zip</city_state_zip>
- <sys_id>$pid</sys_id>
- </patron>
- XML
-}
-
-
-sub fetch_org_data {
- my $org_id = shift;
-
- my $org = $ORG_CACHE{$org_id};
-
- if( ! $org ) {
- $logger->debug("OD_notice: fetching org $org_id");
-
- $org = $e->retrieve_actor_org_unit(
- [
- $org_id,
- {
- flesh => 1,
- flesh_fields =>
- { aou => [ qw/billing_address mailing_address/ ] }
- }
- ]
- ) or return handle_event($e->event);
-
- $ORG_CACHE{$org_id} = $org;
- }
-
- my $name = $org->name;
- my $phone = $org->phone;
- my $email = $org->email;
-
-
- my( $s1, $s2, $city, $state, $zip );
- my $baddr = $org->billing_address || $org->mailing_address;
- if( $baddr ) {
- $s1 = $baddr->street1;
- $s2 = $baddr->street2;
- $city = $baddr->city;
- $state = $baddr->state;
- $zip = $baddr->post_code;
- }
-
- $name = entityize($name);
- $phone = entityize($phone);
- $s1 = entityize($s1);
- $s2 = entityize($s2);
- $city = entityize($city);
- $state = entityize($state);
- $zip = entityize($zip);
- $email = entityize($email);
-
- return ( $org, $name, $phone, $s1, $s2, $city, $state, $zip, $email );
-}
-
-
-sub print_org_xml_chunk {
- my( $org, $name, $phone, $s1, $s2, $city, $state, $zip, $email ) = @_;
- print <<" XML";
- <library>
- <libname>$name</libname>
- <libphone>$phone</libphone>
- <libstreet1>$s1 $s2</libstreet1>
- <libcity_state_zip>$city, $state $zip</libcity_state_zip>
- </library>
- XML
-}
-
-
-sub fetch_circ_data {
- my $circ = shift;
-
- my $title;
- my $author;
- my $cn;
-
- my $d = $circ->due_date;
- $d =~ s/[T ].*//og; # just for logging
- $logger->debug("OD_notice: processing circ ".$circ->id." $d");
-
- my $due = DateTime::Format::ISO8601->new->parse_datetime(
- clense_ISO8601($circ->due_date));
-
- my $day = $due->day;
- my $mon = $due->month;
- my $year = $due->year;
-
- my $copy = $e->retrieve_asset_copy($circ->target_copy)
- or return handle_event($e->event);
-
- my $bc = $copy->barcode;
-
- if( $copy->call_number == OILS_PRECAT_CALL_NUMBER ) {
- $title = $copy->dummy_title || "";
- $author = $copy->dummy_author || "";
-
- } else {
-
- my $volume = $e->retrieve_asset_call_number(
- [
- $copy->call_number,
- {
- flesh => 1,
- flesh_fields => {
- acn => [ qw/record/ ]
- }
- }
- ]
- ) or return handle_event($e->event);
-
- $cn = $volume->label;
- my $mods = $apputils->record_to_mvr($volume->record);
- if( $mods ) {
- $title = $mods->title || "";
- $author = $mods->author || "";
- }
- }
-
- $title = entityize($title);
- $author = entityize($author);
- $cn = entityize($cn);
- $bc = entityize($bc);
-
- return( $title, $author, $cn, $bc, $day, $mon, $year );
-}
-
-
-sub print_circ_chunk {
- my $circ = shift;
- my ( $title, $author, $cn, $bc, $day, $mon, $year ) = fetch_circ_data($circ);
- my $cid = $circ->id;
- print <<" XML";
- <item>
- <title>$title</title>
- <author>$author</author>
- <duedate>$mon/$day/$year</duedate>
- <callno>$cn</callno>
- <barcode>$bc</barcode>
- <circ_id>$cid</circ_id>
- </item>
- XML
-}
-
-
-
-sub send_email {
- my( $range, $patron_data, $org_data, $circs ) = @_;
- my( $org, $org_name, $org_phone, $org_s1, $org_s2, $org_city, $org_state, $org_zip, $org_email ) = @$org_data;
- my( $patron, $bc, $fn, $mn, $ln, $user_s1, $user_s2, $user_city, $user_state, $user_zip ) = @$patron_data;
-
- return unless $SEND_EMAILS;
-
- my $pemail = $patron_data->[0]->email;
-
- my $tmpl = $email_template;
- my @time = localtime;
- my $year = $time[5] + 1900;
- my $mon = $time[4] + 1;
- my $day = $time[3];
-
- my $r = ($range eq '7day') ? 7 : 14;
-
- # - default to the global sender for the errors-to header
- my $errors_to = $mail_sender;
-
- # if they have an org setting for errors-to, use that as the errors-to address
- if( my $set = $e->search_actor_org_unit_setting(
- { name => 'org.bounced_emails', org_unit => $org->id } )->[0] ) {
-
- my $bemail = OpenSRF::Utils::JSON->JSON2perl($set->value);
- $errors_to = $bemail if $bemail;
- }
-
-
- $tmpl =~ s/\${EMAIL_RECIPIENT}/$pemail/;
- $tmpl =~ s/\${EMAIL_SENDER}/$errors_to/o;
- $tmpl =~ s/\${EMAIL_REPLY_TO}/$errors_to/;
- $tmpl =~ s/\${EMAIL_ERRORS_TO}/$errors_to/;
- $tmpl =~ s/\${EMAIL_HEADERS}//; # - we have no additional headers to add
-
- $tmpl =~ s/\${RANGE}/$r/;
- $tmpl =~ s/\${DATE}/$mon\/$day\/$year/;
- $tmpl =~ s/\${FIRST_NAME}/$fn/;
- $tmpl =~ s/\${MIDDLE_NAME}/$mn/;
- $tmpl =~ s/\${LAST_NAME}/$ln/;
-
- my ($itmpl) = $tmpl =~ /\${OVERDUE_ITEMS\[(.*)\]}/ms;
-
- my $items = '';
- for my $circ (@$circs) {
- my $circtmpl = $itmpl;
- my ( $title, $author, $cn, $bc, $due_day, $due_mon, $due_year ) = fetch_circ_data($circ);
- $circtmpl =~ s/\${TITLE}/$title/o;
- $circtmpl =~ s/\${AUTHOR}/$author/o;
- $circtmpl =~ s/\${CALL_NUMBER}/$cn/o;
- $circtmpl =~ s/\${DUE_DAY}/$due_day/o;
- $circtmpl =~ s/\${DUE_MONTH}/$due_mon/o;
- $circtmpl =~ s/\${DUE_YEAR}/$due_year/o;
- $circtmpl =~ s/\${ITEM_BARCODE}/$bc/o;
- $items .= "$circtmpl\n";
- }
-
- $tmpl =~ s/\${OVERDUE_ITEMS\[.*\]}/$items/ms;
-
- my $org_addr = "$org_s1 $org_s2 $org_city, $org_state $org_zip";
- $tmpl =~ s/\${ORG_NAME}/$org_name/o;
- $tmpl =~ s/\${ORG_ADDRESS}/$org_addr/o;
- $tmpl =~ s/\${ORG_PHONE}/$org_phone/o;
-
- $logger->debug("OD_notice: sending email to $pemail: $tmpl");
-
- my $sender = Email::Send->new({mailer => 'SMTP'});
- $sender->mailer_args([Host => $smtp]);
-
- my $stat = $sender->send($tmpl);
-
- if( $stat and $stat->type eq 'success' ) {
- $logger->info("OD_notice: successfully sent overdue email");
- } else {
- $logger->warn("OD_notice: unable to send hold overdue email: ".Dumper($stat));
- }
-
- $logger->info("OD_notice: sending email to".$patron_data->[0]->email);
-}
-
-sub handle_event {
- my $evt = shift;
- warn "OD_notice: ".Dumper($evt) . "\n";
- $logger->error("OD_notice: ".Dumper($evt));
- return undef;
-}
-
-
-sub entityize {
- my $stuff = shift || return "";
- $stuff =~ s/\</</og;
- $stuff =~ s/\>/>/og;
- $stuff =~ s/\&/&/og;
- $stuff = NFC($stuff);
- $stuff =~ s/([\x{0080}-\x{fffd}])/sprintf('&#x%X;',ord($1))/sgoe;
- return $stuff;
-}
-
-
-
-