Bug 15635: Koha::Patron::Images - Remove GetPatronImage
[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
10 # under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 3 of the License, or
12 # (at your option) any later version.
13 #
14 # Koha is distributed in the hope that it will be useful, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with Koha; if not, see <http://www.gnu.org/licenses>.
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 qw ( -utf8 );
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 use Koha::Acquisition::Currencies;
49 use Koha::Patron::Images;
50
51 my $query = new CGI;
52
53 unless (C4::Context->preference('WebBasedSelfCheck')) {
54     # redirect to OPAC home if self-check is not enabled
55     print $query->redirect("/cgi-bin/koha/opac-main.pl");
56     exit;
57 }
58
59 if (C4::Context->preference('AutoSelfCheckAllowed')) 
60 {
61     my $AutoSelfCheckID = C4::Context->preference('AutoSelfCheckID');
62     my $AutoSelfCheckPass = C4::Context->preference('AutoSelfCheckPass');
63     $query->param(-name=>'userid',-values=>[$AutoSelfCheckID]);
64     $query->param(-name=>'password',-values=>[$AutoSelfCheckPass]);
65     $query->param(-name=>'koha_login_context',-values=>['sco']);
66 }
67 my ($template, $loggedinuser, $cookie) = get_template_and_user({
68     template_name   => "sco/sco-main.tt",
69     authnotrequired => 0,
70     flagsrequired => { circulate => "self_checkout" },
71     query => $query,
72     type  => "opac",
73     debug => 1,
74 });
75
76 if (C4::Context->preference('SelfCheckoutByLogin'))
77 {
78     $template->param(authbylogin  => 1);
79 }
80
81 # Get the self checkout timeout preference, or use 120 seconds as a default
82 my $selfchecktimeout = 120000;
83 if (C4::Context->preference('SelfCheckTimeout')) { 
84     $selfchecktimeout = C4::Context->preference('SelfCheckTimeout') * 1000;
85 }
86 $template->param(SelfCheckTimeout => $selfchecktimeout);
87
88 # Checks policy laid out by AllowSelfCheckReturns, defaults to 'on' if preference is undefined
89 my $allowselfcheckreturns = 1;
90 if (defined C4::Context->preference('AllowSelfCheckReturns')) {
91     $allowselfcheckreturns = C4::Context->preference('AllowSelfCheckReturns');
92 }
93 $template->param(AllowSelfCheckReturns => $allowselfcheckreturns);
94
95
96 my $issuerid = $loggedinuser;
97 my ($op, $patronid, $patronlogin, $patronpw, $barcode, $confirmed) = (
98     $query->param("op")         || '',
99     $query->param("patronid")   || '',
100     $query->param("patronlogin")|| '',
101     $query->param("patronpw")   || '',
102     $query->param("barcode")    || '',
103     $query->param("confirmed")  || '',
104 );
105
106 my $issuenoconfirm = 1; #don't need to confirm on issue.
107 #warn "issuerid: " . $issuerid;
108 my $issuer   = GetMemberDetails($issuerid);
109 my $item     = GetItem(undef,$barcode);
110 if (C4::Context->preference('SelfCheckoutByLogin') && !$patronid) {
111     my $dbh = C4::Context->dbh;
112     my $resval;
113     ($resval, $patronid) = checkpw($dbh, $patronlogin, $patronpw);
114 }
115 my $borrower = GetMemberDetails(undef,$patronid);
116
117 my $currencySymbol = "";
118 if ( my $active_currency = Koha::Acquisition::Currencies->get_active ) {
119     $currencySymbol = $active_currency->symbol;
120 }
121
122 my $branch = $issuer->{branchcode};
123 my $confirm_required = 0;
124 my $return_only = 0;
125 #warn "issuer cardnumber: " .   $issuer->{cardnumber};
126 #warn "patron cardnumber: " . $borrower->{cardnumber};
127 if ($op eq "logout") {
128     $query->param( patronid => undef, patronlogin => undef, patronpw => undef );
129 }
130 elsif ( $op eq "returnbook" && $allowselfcheckreturns ) {
131     my ($doreturn) = AddReturn( $barcode, $branch );
132     #warn "returnbook: " . $doreturn;
133     $borrower = GetMemberDetails(undef,$patronid);
134 }
135 elsif ( $op eq "checkout" ) {
136     my $impossible  = {};
137     my $needconfirm = {};
138     if ( !$confirmed ) {
139         ( $impossible, $needconfirm ) = CanBookBeIssued(
140             $borrower,
141             $barcode,
142             undef,
143             0,
144             C4::Context->preference("AllowItemsOnHoldCheckout")
145         );
146     }
147     $confirm_required = scalar keys %$needconfirm;
148
149     #warn "confirm_required: " . $confirm_required ;
150     if (scalar keys %$impossible) {
151
152         #  warn "impossible: numkeys: " . scalar (keys(%$impossible));
153         #warn join " ", keys %$impossible;
154         my $issue_error = (keys %$impossible)[0];
155
156         # FIXME  we assume only one error.
157         $template->param(
158             impossible                => $issue_error,
159             "circ_error_$issue_error" => 1,
160             title                     => $item->{title},
161             hide_main                 => 1,
162         );
163         if ($issue_error eq 'DEBT') {
164             $template->param(amount => $currencySymbol.$impossible->{DEBT});
165         }
166         #warn "issue_error: " . $issue_error ;
167         if ( $issue_error eq "NO_MORE_RENEWALS" ) {
168             $return_only = 1;
169             $template->param(
170                 returnitem => 1,
171                 barcode    => $barcode,
172             );
173         }
174     } elsif ( $needconfirm->{RENEW_ISSUE} ) {
175         if ($confirmed) {
176             #warn "renewing";
177             AddRenewal( $borrower, $item->{itemnumber} );
178         } else {
179             #warn "renew confirmation";
180             $template->param(
181                 renew               => 1,
182                 barcode             => $barcode,
183                 confirm             => 1,
184                 confirm_renew_issue => 1,
185                 hide_main           => 1,
186             );
187         }
188     } elsif ( $confirm_required && !$confirmed ) {
189         #warn "failed confirmation";
190         my $issue_error = (keys %$needconfirm)[0];
191         $template->param(
192             impossible                => (keys %$needconfirm)[0],
193             "circ_error_$issue_error" => 1,
194             hide_main                 => 1,
195         );
196         if ($issue_error eq 'DEBT') {
197             $template->param(amount => $currencySymbol.$needconfirm->{DEBT});
198         }
199     } else {
200         if ( $confirmed || $issuenoconfirm ) {    # we'll want to call getpatroninfo again to get updated issues.
201             # warn "issuing book?";
202             AddIssue( $borrower, $barcode );
203             # ($borrower, $flags) = getpatroninformation(undef,undef, $patronid);
204             # $template->param(
205             #   patronid => $patronid,
206             #   validuser => 1,
207             # );
208         } else {
209             $confirm_required = 1;
210             #warn "issue confirmation";
211             $template->param(
212                 confirm    => "Issuing title: " . $item->{title},
213                 barcode    => $barcode,
214                 hide_main  => 1,
215                 inputfocus => 'confirm',
216             );
217         }
218     }
219 } # $op
220
221 if ($borrower->{cardnumber}) {
222 #   warn "issuer's  branchcode: " .   $issuer->{branchcode};
223 #   warn   "user's  branchcode: " . $borrower->{branchcode};
224     my $borrowername = sprintf "%s %s", ($borrower->{firstname} || ''), ($borrower->{surname} || '');
225     my @issues;
226     my ($issueslist) = GetPendingIssues( $borrower->{'borrowernumber'} );
227     foreach my $it (@$issueslist) {
228         my ($renewokay, $renewerror) = CanBookBeIssued(
229             $borrower,
230             $it->{'barcode'},
231             undef,
232             0,
233             C4::Context->preference("AllowItemsOnHoldCheckout")
234         );
235         $it->{'norenew'} = 1 if $renewokay->{'NO_MORE_RENEWALS'};
236         push @issues, $it;
237     }
238
239     $template->param(
240         validuser => 1,
241         borrowername => $borrowername,
242         issues_count => scalar(@issues),
243         ISSUES => \@issues,
244         patronid => $patronid,
245         patronlogin => $patronlogin,
246         patronpw => $patronpw,
247         noitemlinks => 1 ,
248         borrowernumber => $borrower->{'borrowernumber'},
249     );
250     my $inputfocus = ($return_only      == 1) ? 'returnbook' :
251                      ($confirm_required == 1) ? 'confirm'    : 'barcode' ;
252     $template->param(
253         inputfocus => $inputfocus,
254         nofines => 1,
255
256     );
257     if (C4::Context->preference('ShowPatronImageInWebBasedSelfCheck')) {
258         my $patron_image = Koha::Patron::Images->find($borrower->{borrowernumber});
259         $template->param(
260             display_patron_image => 1,
261             cardnumber           => $borrower->{cardnumber},
262         ) if $patron_image;
263     }
264 } else {
265     $template->param(
266         patronid   => $patronid,
267         nouser     => $patronid,
268     );
269 }
270
271 $template->param(
272     SCOUserJS  => C4::Context->preference('SCOUserJS'),
273     SCOUserCSS => C4::Context->preference('SCOUserCSS'),
274 );
275
276 output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };