Bug 24545: Fix license statements
[srvgit] / Koha / UploadedFiles.pm
index 06a9965..2f44e97 100644 (file)
@@ -4,18 +4,18 @@ package Koha::UploadedFiles;
 #
 # This file is part of Koha.
 #
-# Koha is free software; you can redistribute it and/or modify it under the
-# terms of the GNU General Public License as published by the Free Software
-# Foundation; either version 3 of the License, or (at your option) any later
-# version.
+# Koha is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
 #
-# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
-# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
-# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+# Koha is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
 #
-# You should have received a copy of the GNU General Public License along
-# with Koha; if not, write to the Free Software Foundation, Inc.,
-# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+# You should have received a copy of the GNU General Public License
+# along with Koha; if not, see <http://www.gnu.org/licenses>.
 
 use Modern::Perl;
 
@@ -57,38 +57,45 @@ provides a wrapper around search to look for a term in multiple columns.
 =head3 delete
 
 Delete uploaded files.
-Returns true if no errors occur. (So, false may mean partial success.)
 
 Parameter keep_file may be used to delete records, but keep files.
 
+Returns the number of deleted records, 0E0 or -1 (Unknown).
+Please note that the number of deleted records is not automatically the same
+as the number of files.
+
 =cut
 
 sub delete {
     my ( $self, $params ) = @_;
     $self = Koha::UploadedFiles->new if !ref($self); # handle class call
     # We use the individual delete on each resultset record
-    my $err = 0;
+    my $rv = 0;
     while( my $row = $self->next ) {
-        $err++ if !$row->delete( $params );
+        my $deleted = eval { $row->delete( $params ) };
+        $rv++ if $deleted && !$@;
     }
-    return $err==0;
+    return $rv==0 ? "0E0" : $rv;
 }
 
 =head3 delete_temporary
 
 Delete_temporary is called by cleanup_database and only removes temporary
-uploads older than [pref Upload_PurgeTemporaryFiles_Days] days.
+uploads older than [pref UploadPurgeTemporaryFilesDays] days.
 It is possible to override the pref with the override_pref parameter.
 
-Returns true if no errors occur. (Even when no files had to be deleted.)
+Return value: see delete.
 
 =cut
 
 sub delete_temporary {
     my ( $self, $params ) = @_;
-    my $days = $params->{override_pref} ||
-        C4::Context->preference('Upload_PurgeTemporaryFiles_Days');
-    return 1 if !$days;
+    my $days = C4::Context->preference('UploadPurgeTemporaryFilesDays');
+    if( exists $params->{override_pref} ) {
+        $days = $params->{override_pref};
+    } elsif( !defined($days) || $days eq '' ) { # allow 0, not NULL or ""
+        return "0E0";
+    }
     my $dt = dt_from_string();
     $dt->subtract( days => $days );
     my $parser = Koha::Database->new->schema->storage->datetime_parser;
@@ -98,6 +105,42 @@ sub delete_temporary {
     })->delete;
 }
 
+=head3 delete_missing
+
+    $cnt = Koha::UploadedFiles->delete_missing();
+
+    $cnt = Koha::UploadedFiles->delete_missing({ keep_record => 1 });
+
+Deletes all records where the actual file is not found.
+
+Supports a keep_record hash parameter to do a check only.
+
+Return value: If you pass keep_record, it returns the number of records where
+the file is not found, or 0E0. Otherwise it returns a number, 0E0 or -1 just
+as delete does.
+
+=cut
+
+sub delete_missing {
+    my ( $self, $params ) = @_;
+    $self = Koha::UploadedFiles->new if !ref($self); # handle class call
+    my $rv = 0;
+    while( my $row = $self->next ) {
+        my $file = $row->full_path;
+        next if -e $file;
+        if( $params->{keep_record} ) {
+            $rv++;
+            next;
+        }
+        # We are passing keep_file since we already know that the file
+        # is missing and we do not want to see the warning
+        # Apply the same logic as in delete for the return value
+        my $deleted = eval { $row->delete({ keep_file => 1 }) };
+        $rv++ if $deleted && !$@;
+    }
+    return $rv==0 ? "0E0" : $rv;
+}
+
 =head3 search_term
 
 Search_term allows you to pass a term to search in filename and hashvalue.