Bug 20434: Add default authority type
[koha.git] / Koha / Authority / MergeRequests.pm
blobc3f5ca71f787d397186c12fd0529178ec789039c
1 package Koha::Authority::MergeRequests;
3 # Copyright Rijksmuseum 2017
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 3 of the License, or (at your option) any later
10 # version.
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 use Modern::Perl;
21 use MARC::File::XML;
22 use MARC::Record;
24 use C4::Context;
25 use Koha::Authority::MergeRequest;
26 use Koha::Database;
27 use Koha::DateUtils;
29 use parent qw(Koha::Objects);
31 =head1 NAME
33 Koha::Authority::MergeRequests - Koha::Objects class for need_merge_authorities
35 =head1 SYNOPSIS
37 use Koha::Authority::MergeRequests;
39 =head1 DESCRIPTION
41 Description
43 =head1 METHODS
45 =head2 CLASS METHODS
47 =head3 cron_cleanup
49 Koha::Authority::MergeRequests->cron_cleanup({
50 reset_hours => 24, remove_days => 90,
51 });
53 Removes all entries with status "done" older than remove_days.
54 Set all entries with status "in progress" back to 0 when the timestamp
55 is older than reset_hours.
56 Defaults: reset_hours = 1, remove_days = 30.
58 =cut
60 sub cron_cleanup {
61 my ( $class_or_self, $params ) = @_;
62 my $reset_hours = $params->{reset_hours} || 1;
63 my $remove_days = $params->{remove_days} || 30;
64 my $parser = Koha::Database->new->schema->storage->datetime_parser;
66 my $dt = dt_from_string;
67 $dt->subtract( hours => $reset_hours );
68 $class_or_self->search({
69 done => 2,
70 timestamp => { '<' => $parser->format_datetime($dt) },
71 })->update({ done => 0 });
73 $dt = dt_from_string;
74 $dt->subtract( days => $remove_days );
75 $class_or_self->search({
76 done => 1,
77 timestamp => { '<' => $parser->format_datetime($dt) },
78 })->delete;
81 =head3 _type
83 Returns name of corresponding DBIC resultset
85 =cut
87 sub _type {
88 return 'NeedMergeAuthority';
91 =head3 object_class
93 Returns name of corresponding Koha object class
95 =cut
97 sub object_class {
98 return 'Koha::Authority::MergeRequest';
101 =head1 AUTHOR
103 Marcel de Rooy (Rijksmuseum)
105 Koha Development Team
107 =cut