Merge branch 'bug_10054' into 3.14-master
[koha.git] / opac / sco / sco-main.pl
1 #!/usr/bin/perl
2 #
3 # This code has been modified by Trendsetters (originally from opac-user.pl)
4 # This code has been modified by rch
5 # Parts Copyright 2010-2011, ByWater Solutions (those related to username/password auth)
6 #
7 # This file is part of Koha.
8 #
9 # Koha is free software; you can redistribute it and/or modify it under the
10 # terms of the GNU General Public License as published by the Free Software
11 # Foundation; either version 2 of the License, or (at your option) any later
12 # version.
13 #
14 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
15 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
16 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License along
19 # with Koha; if not, write to the Free Software Foundation, Inc.,
20 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21
22 # We're going to authenticate a self-check user.  we'll add a flag to borrowers 'selfcheck'
23 #
24 # We're in a controlled environment; we trust the user.
25 # So the selfcheck station will accept a patronid and issue items to that borrower.
26 # FIXME: NOT really a controlled environment...  We're on the internet!
27 #
28 # The checkout permission comes form the CGI cookie/session of a staff user.
29 # The patron is not really logging in here in the same way as they do on the
30 # rest of the OPAC.  So don't confuse loggedinuser with the patron user.
31 #
32 # FIXME: inputfocus not really used in TMPL
33
34 use strict;
35 use warnings;
36
37 use CGI;
38 use Digest::MD5 qw(md5_base64);
39
40 use C4::Auth qw(get_template_and_user checkpw);
41 use C4::Koha;
42 use C4::Circulation;
43 use C4::Reserves;
44 use C4::Output;
45 use C4::Members;
46 use C4::Biblio;
47 use C4::Items;
48
49 my $query = new CGI;
50
51 unless (C4::Context->preference('WebBasedSelfCheck')) {
52     # redirect to OPAC home if self-check is not enabled
53     print $query->redirect("/cgi-bin/koha/opac-main.pl");
54     exit;
55 }
56
57 if (C4::Context->preference('AutoSelfCheckAllowed')) 
58 {
59     my $AutoSelfCheckID = C4::Context->preference('AutoSelfCheckID');
60     my $AutoSelfCheckPass = C4::Context->preference('AutoSelfCheckPass');
61     $query->param(-name=>'userid',-values=>[$AutoSelfCheckID]);
62     $query->param(-name=>'password',-values=>[$AutoSelfCheckPass]);
63     $query->param(-name=>'koha_login_context',-values=>['sco']);
64 }
65 my ($template, $loggedinuser, $cookie) = get_template_and_user({
66     template_name   => "sco/sco-main.tmpl",
67     authnotrequired => 0,
68     flagsrequired => { circulate => "circulate_remaining_permissions" },
69     query => $query,
70     type  => "opac",
71     debug => 1,
72 });
73 if (C4::Context->preference('SelfCheckoutByLogin'))
74 {
75     $template->param(authbylogin  => 1);
76 }
77
78 # Get the self checkout timeout preference, or use 120 seconds as a default
79 my $selfchecktimeout = 120000;
80 if (C4::Context->preference('SelfCheckTimeout')) { 
81     $selfchecktimeout = C4::Context->preference('SelfCheckTimeout') * 1000;
82 }
83 $template->param(SelfCheckTimeout => $selfchecktimeout);
84
85 # Checks policy laid out by AllowSelfCheckReturns, defaults to 'on' if preference is undefined
86 my $allowselfcheckreturns = 1;
87 if (defined C4::Context->preference('AllowSelfCheckReturns')) {
88     $allowselfcheckreturns = C4::Context->preference('AllowSelfCheckReturns');
89 }
90 $template->param(AllowSelfCheckReturns => $allowselfcheckreturns);
91
92
93 my $issuerid = $loggedinuser;
94 my ($op, $patronid, $patronlogin, $patronpw, $barcode, $confirmed) = (
95     $query->param("op")         || '',
96     $query->param("patronid")   || '',
97     $query->param("patronlogin")|| '',
98     $query->param("patronpw")   || '',
99     $query->param("barcode")    || '',
100     $query->param("confirmed")  || '',
101 );
102
103 my $issuenoconfirm = 1; #don't need to confirm on issue.
104 #warn "issuerid: " . $issuerid;
105 my $issuer   = GetMemberDetails($issuerid);
106 my $item     = GetItem(undef,$barcode);
107 if (C4::Context->preference('SelfCheckoutByLogin') && !$patronid) {
108     my $dbh = C4::Context->dbh;
109     my $resval;
110     ($resval, $patronid) = checkpw($dbh, $patronlogin, $patronpw);
111 }
112 my $borrower = GetMemberDetails(undef,$patronid);
113
114
115 my $branch = $issuer->{branchcode};
116 my $confirm_required = 0;
117 my $return_only = 0;
118 #warn "issuer cardnumber: " .   $issuer->{cardnumber};
119 #warn "patron cardnumber: " . $borrower->{cardnumber};
120 if ($op eq "logout") {
121     $query->param( patronid => undef, patronlogin => undef, patronpw => undef );
122 }
123 elsif ( $op eq "returnbook" && $allowselfcheckreturns ) {
124     my ($doreturn) = AddReturn( $barcode, $branch );
125     #warn "returnbook: " . $doreturn;
126     $borrower = GetMemberDetails(undef,$patronid);
127 }
128 elsif ( $op eq "checkout" ) {
129     my $impossible  = {};
130     my $needconfirm = {};
131     if ( !$confirmed ) {
132         ( $impossible, $needconfirm ) = CanBookBeIssued(
133             $borrower,
134             $barcode,
135             undef,
136             0,
137             C4::Context->preference("AllowItemsOnHoldCheckout")
138         );
139     }
140     $confirm_required = scalar keys %$needconfirm;
141
142     #warn "confirm_required: " . $confirm_required ;
143     if (scalar keys %$impossible) {
144
145         #  warn "impossible: numkeys: " . scalar (keys(%$impossible));
146         #warn join " ", keys %$impossible;
147         my $issue_error = (keys %$impossible)[0];
148
149         # FIXME  we assume only one error.
150         $template->param(
151             impossible                => $issue_error,
152             "circ_error_$issue_error" => 1,
153             title                     => $item->{title},
154             hide_main                 => 1,
155         );
156         if ($issue_error eq 'DEBT') {
157             $template->param(amount => C4::Budgets->GetCurrency()->{symbol}.$impossible->{DEBT});
158         }
159         #warn "issue_error: " . $issue_error ;
160         if ( $issue_error eq "NO_MORE_RENEWALS" ) {
161             $return_only = 1;
162             $template->param(
163                 returnitem => 1,
164                 barcode    => $barcode,
165             );
166         }
167     } elsif ( $needconfirm->{RENEW_ISSUE} ) {
168         if ($confirmed) {
169             #warn "renewing";
170             AddRenewal( $borrower, $item->{itemnumber} );
171         } else {
172             #warn "renew confirmation";
173             $template->param(
174                 renew               => 1,
175                 barcode             => $barcode,
176                 confirm             => 1,
177                 confirm_renew_issue => 1,
178                 hide_main           => 1,
179             );
180         }
181     } elsif ( $confirm_required && !$confirmed ) {
182         #warn "failed confirmation";
183         my $issue_error = (keys %$needconfirm)[0];
184         $template->param(
185             impossible                => (keys %$needconfirm)[0],
186             "circ_error_$issue_error" => 1,
187             hide_main                 => 1,
188         );
189         if ($issue_error eq 'DEBT') {
190             $template->param(amount => C4::Budgets->GetCurrency()->{symbol}.$needconfirm->{DEBT});
191         }
192     } else {
193         if ( $confirmed || $issuenoconfirm ) {    # we'll want to call getpatroninfo again to get updated issues.
194             # warn "issuing book?";
195             AddIssue( $borrower, $barcode );
196             # ($borrower, $flags) = getpatroninformation(undef,undef, $patronid);
197             # $template->param(
198             #   patronid => $patronid,
199             #   validuser => 1,
200             # );
201         } else {
202             $confirm_required = 1;
203             #warn "issue confirmation";
204             $template->param(
205                 confirm    => "Issuing title: " . $item->{title},
206                 barcode    => $barcode,
207                 hide_main  => 1,
208                 inputfocus => 'confirm',
209             );
210         }
211     }
212 } # $op
213
214 if ($borrower->{cardnumber}) {
215 #   warn "issuer's  branchcode: " .   $issuer->{branchcode};
216 #   warn   "user's  branchcode: " . $borrower->{branchcode};
217     my $borrowername = sprintf "%s %s", ($borrower->{firstname} || ''), ($borrower->{surname} || '');
218     my @issues;
219     my ($issueslist) = GetPendingIssues( $borrower->{'borrowernumber'} );
220     foreach my $it (@$issueslist) {
221         my ($renewokay, $renewerror) = CanBookBeIssued(
222             $borrower,
223             $it->{'barcode'},
224             undef,
225             0,
226             C4::Context->preference("AllowItemsOnHoldCheckout")
227         );
228         $it->{'norenew'} = 1 if $renewokay->{'NO_MORE_RENEWALS'};
229         push @issues, $it;
230     }
231
232     $template->param(
233         validuser => 1,
234         borrowername => $borrowername,
235         issues_count => scalar(@issues),
236         ISSUES => \@issues,
237         patronid => $patronid,
238         patronlogin => $patronlogin,
239         patronpw => $patronpw,
240         noitemlinks => 1 ,
241         borrowernumber => $borrower->{'borrowernumber'},
242     );
243     my $inputfocus = ($return_only      == 1) ? 'returnbook' :
244                      ($confirm_required == 1) ? 'confirm'    : 'barcode' ;
245     $template->param(
246         inputfocus => $inputfocus,
247         nofines => 1,
248
249     );
250     if (C4::Context->preference('ShowPatronImageInWebBasedSelfCheck')) {
251         my ($image, $dberror) = GetPatronImage($borrower->{cardnumber});
252         if ($image) {
253             $template->param(
254                 display_patron_image => 1,
255                 cardnumber           => $borrower->{cardnumber},
256             );
257         }
258     }
259 } else {
260     $template->param(
261         patronid   => $patronid,
262         nouser     => $patronid,
263     );
264 }
265
266 $template->param(
267     SCOUserJS  => C4::Context->preference('SCOUserJS'),
268     SCOUserCSS => C4::Context->preference('SCOUserCSS'),
269 );
270
271 output_html_with_http_headers $query, $cookie, $template->output;