diff options
Diffstat (limited to 'rhimport-tr')
-rwxr-xr-x | rhimport-tr | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/rhimport-tr b/rhimport-tr index b76f4bd..6551780 100755 --- a/rhimport-tr +++ b/rhimport-tr @@ -31,6 +31,7 @@ use File::Fetch; use IO::Handle; use IPC::Open3; use HTML::Entities; +use RHRD::rddb; use lib '/usr/local/share/rhimport/'; use rhimport; @@ -52,17 +53,21 @@ my $user = `/usr/bin/id -un`; $user =~ s/\n//; my $group = "tierrecht"; -my ($dbh, $errorstring) = rhimport::opendb(); +my ($dbh, $errorstring) = RHRD::rddb::opendb(); if(!defined $dbh) { print "$errorstring\n"; exit 1; } -my @allowed_dbs = rhimport::get_dropboxes($dbh, $user, $group); +my @allowed_dbs = RHRD::rddb::get_dropboxes($dbh, $user, $group); +if(!defined $allowed_dbs[0] && defined $allowed_dbs[2]) { + print "$allowed_dbs[2]\n"; + exit 1; +} my $idx = 0; if(scalar(@allowed_dbs) != 1) { print "found more or less than 1 Dropbox for this group?!\n"; - rhimport::closedb($dbh); + RHRD::rddb::closedb($dbh); exit 1; } my $dropbox = $allowed_dbs[$idx]->{'PATH'}; @@ -71,7 +76,7 @@ my $to_cart = $allowed_dbs[$idx]->{'TO_CART'}; my @today = Date::Calc::Standard_to_Business(Date::Calc::Today()); if($today[2] == 5) { print "please don't run this script on fridays!\n"; - rhimport::closedb($dbh); + RHRD::rddb::closedb($dbh); exit 1; } my @broadcast_day = Date::Calc::Business_to_Standard($today[0], $today[1], 5); @@ -117,13 +122,13 @@ for my $entry ($feed->entries) { my $current_file = `cat $STAT_FILE`; if($current_file eq $ff->output_file) { print "Already downloaded file of today\n"; - rhimport::closedb($dbh); + RHRD::rddb::closedb($dbh); exit 0; } $out_file = $ff->output_file; if(!rhimport::check_file_extension($out_file)) { print "\n\nThe extension of the matching file '". $out_file . "' seems to be wrong - manual import necessary!!!\n"; - rhimport::closedb($dbh); + RHRD::rddb::closedb($dbh); exit 1; } @@ -169,7 +174,7 @@ my $import_log; ($ret, $import_log) = rhimport::import_single($file, $dropbox, $user, 0, $error_cb); $log .= $import_log; -rhimport::closedb($dbh); +RHRD::rddb::closedb($dbh); unlink $file; |