Bug 17829: Move GetMember to Koha::Patron
[koha.git] / opac / opac-renew.pl
1 #!/usr/bin/perl
2
3 #written 18/1/2000 by chris@katipo.co.nz
4 # adapted for use in the hlt opac by finlay@katipo.co.nz 29/11/2002
5 # script to renew items from the web
6 # Parts Copyright 2010,2011 Catalyst IT
7
8 # This file is part of Koha.
9 #
10 # Koha is free software; you can redistribute it and/or modify it
11 # under the terms of the GNU General Public License as published by
12 # the Free Software Foundation; either version 3 of the License, or
13 # (at your option) any later version.
14 #
15 # Koha is distributed in the hope that it will be useful, but
16 # WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with Koha; if not, see <http://www.gnu.org/licenses>.
22
23
24 use strict;
25 use warnings;
26
27 use CGI qw ( -utf8 );
28 use C4::Circulation;
29 use C4::Auth;
30 use C4::Context;
31 use C4::Items;
32 use C4::Members;
33 use Koha::Patrons;
34 use Date::Calc qw( Today Date_to_Days );
35 my $query = new CGI;
36
37 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
38         {
39         template_name   => "opac-user.tt",
40         query           => $query,
41         type            => "opac",
42         authnotrequired => 0,
43         debug           => 1,
44         }
45 ); 
46 my @items = $query->multi_param('item');
47
48 my $opacrenew = C4::Context->preference("OpacRenewalAllowed");
49
50 my $errorstring = q{};
51 my $renewed     = q{};
52
53 my $patron = Koha::Patrons->find( $borrowernumber );
54
55 if (   $patron->category->effective_BlockExpiredPatronOpacActions
56     && $patron->is_expired )
57 {
58     $errorstring = 'card_expired';
59 }
60 else {
61     my @renewed;
62     for my $itemnumber (@items) {
63         my ( $status, $error ) =
64           CanBookBeRenewed( $borrowernumber, $itemnumber );
65         if ( $status == 1 && $opacrenew == 1 ) {
66             my $renewalbranch = C4::Context->preference('OpacRenewalBranch');
67             my $branchcode;
68             if ( $renewalbranch eq 'itemhomebranch' ) {
69                 my $item = GetItem($itemnumber);
70                 $branchcode = $item->{'homebranch'};
71             }
72             elsif ( $renewalbranch eq 'patronhomebranch' ) {
73                 $branchcode = Koha::Patrons->find( $borrowernumber )->branchcode;
74             }
75             elsif ( $renewalbranch eq 'checkoutbranch' ) {
76                 my $issue = GetOpenIssue($itemnumber);
77                 $branchcode = $issue->{'branchcode'};
78             }
79             elsif ( $renewalbranch eq 'NULL' ) {
80                 $branchcode = '';
81             }
82             else {
83                 $branchcode = 'OPACRenew';
84             }
85             AddRenewal( $borrowernumber, $itemnumber, $branchcode );
86             push( @renewed, $itemnumber );
87         }
88         else {
89             $errorstring .= $error . "|";
90         }
91     }
92     $renewed = join( ':', @renewed );
93 }
94
95 print $query->redirect("/cgi-bin/koha/opac-user.pl?renew_error=$errorstring&renewed=$renewed");
96