From bb7c95d1bef2a4263a1b5ed2aa62d29e61575dc2 Mon Sep 17 00:00:00 2001 From: Jonathan Prykop Date: Fri, 16 Sep 2016 09:09:48 -0500 Subject: [PATCH] RT72219, calculate process date using upstream date --- BillBuddy.pm | 27 ++++++++++++++++++++++----- 1 file changed, 22 insertions(+), 5 deletions(-) diff --git a/BillBuddy.pm b/BillBuddy.pm index 72b5afe..3b125e7 100644 --- a/BillBuddy.pm +++ b/BillBuddy.pm @@ -83,10 +83,11 @@ See http://dev.perl.org/licenses/ for more information. =cut use Business::BatchPayment; +use DateTime; use Moose; with 'Business::BatchPayment::Processor'; -our $VERSION = '0.02'; +our $VERSION = '0.03'; has [ qw(username password) ] => ( is => 'ro', @@ -271,12 +272,28 @@ sub xmlrpc_post { sub upload { my ($self,$request,$batch) = @_; my @tokens = (); - # get date from batch - my ($date) = $batch->process_date =~ /^(....-..-..)/; # login my $resp = $self->xmlrpc_post('xmlrpc_tp_Login.asp','',$self->username,$self->password); my $sid = $resp->{'ResponseData'}->{'sessionID'}; die "Could not parse sessionid from gateway response" unless $sid; + # get date from login, to ensure we're using upstream date + my ($year,$mon,$mday,$hour,$min,$sec) = $resp->{'ResponseTimestamp'} =~ /^(....)-(..)-(..)\s+(..):(..):(..)/; + # then add a day and a bit, because "processs date need to be a date in the future" + my $date = DateTime->new( + year => $year, + month => $mon, + day => $mday, + hour => $hour, + minute => $min, + second => $sec, + # timezone on object mostly doesn't matter, + # but this does appear to be the tz being passed by BillBuddy, + # and this should avoid DST troubles (Queensland does not do DST) + time_zone => 'Australia/Queensland', + )->add_duration( + # extra hour is buffer for upload to run, hopefully that's plenty + DateTime::Duration->new( hours => 25 ) + )->ymd; # start a payment batch $resp = $self->xmlrpc_post('xmlrpc_tp_DDRBatch_Open.asp',$sid,$self->username,$date); my $batchno = $resp->{'ResponseData'}->{'batchno'}; @@ -328,10 +345,10 @@ sub download { error_message => $error, authorization => '', ); - #not sure what format date gets returned in, item creation will fail on bad format, - #so I'm taking a guess, and not recording the date if my guess is wrong if ($resp->{'ResponseData'}->{'actualprocessdate'} =~ /^(\d\d\d\d).(\d\d).(\d\d)/) { $item->payment_date($1.'-'.$2.'-'.$3); + } else { + warn "Could not parse actualprocessdate ".$resp->{'ResponseData'}->{'actualprocessdate'}; } push(@batchitems,$item); } -- 2.11.0