summaryrefslogtreecommitdiff
path: root/rhimport.pm
diff options
context:
space:
mode:
Diffstat (limited to 'rhimport.pm')
-rw-r--r--rhimport.pm14
1 files changed, 12 insertions, 2 deletions
diff --git a/rhimport.pm b/rhimport.pm
index b9a430a..6597fb4 100644
--- a/rhimport.pm
+++ b/rhimport.pm
@@ -159,12 +159,16 @@ sub import_playlist
next if($entry =~ /^#/);
next if($entry =~ /^\s/);
$entry =~ s/\n$//;
+ next if(-d $entry);
+ next if(!-r $entry);
push @entries, $entry;
}
close(FILE);
my $num_entries = scalar(@entries);
print " ($num_entries Files in list)\n";
+
+ return (0, "");
my $cnt = 0;
my $ret = 0;
my $log = "";
@@ -268,11 +272,17 @@ sub import_file
my ($volume, $directories, $remote_file) = File::Spec->splitpath($file);
$remote_file = "$ssh_dir/$user/$remote_file";
my ($out ,$error) = ssh_exec_command("$rdimport_wrapper --path \"$dropbox\" --file \"$remote_file\"");
- if($error ne "") {
+ my $lastline = $1 if $out =~ /\n(.*)$/;
+ if($error ne "" || $lastline !~ /^[0-9:\- ]+:\s+Deleted file/) {
print "Import Error\n";
delete_file($remote_file);
if($error_cb) {
- return $error_cb->("Import Fehler: $error");
+ if($error) {
+ return $error_cb->("Import Fehler: $error");
+ }
+ else {
+ return $error_cb->("Import Fehler: \n$out");
+ }
}
return 0;
}