Bug 19971: Typo in the comments of parseQuery routine
[koha.git] / opac / sco / sco-main.pl
blob4153277fdbcecb3ee6d7dec68b772f60f148239e
1 #!/usr/bin/perl
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)
7 # This file is part of Koha.
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.
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.
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>.
22 # We're going to authenticate a self-check user. we'll add a flag to borrowers 'selfcheck'
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!
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.
32 # FIXME: inputfocus not really used in TMPL
34 use Modern::Perl;
36 use CGI qw ( -utf8 );
38 use C4::Auth qw(get_template_and_user checkpw);
39 use C4::Koha;
40 use C4::Circulation;
41 use C4::Reserves;
42 use C4::Output;
43 use C4::Members;
44 use C4::Biblio;
45 use C4::Items;
46 use Koha::DateUtils qw( dt_from_string );
47 use Koha::Acquisition::Currencies;
48 use Koha::Patron::Images;
49 use Koha::Patron::Messages;
50 use Koha::Token;
52 my $query = new CGI;
54 unless (C4::Context->preference('WebBasedSelfCheck')) {
55 # redirect to OPAC home if self-check is not enabled
56 print $query->redirect("/cgi-bin/koha/opac-main.pl");
57 exit;
60 if (C4::Context->preference('AutoSelfCheckAllowed'))
62 my $AutoSelfCheckID = C4::Context->preference('AutoSelfCheckID');
63 my $AutoSelfCheckPass = C4::Context->preference('AutoSelfCheckPass');
64 $query->param(-name=>'userid',-values=>[$AutoSelfCheckID]);
65 $query->param(-name=>'password',-values=>[$AutoSelfCheckPass]);
66 $query->param(-name=>'koha_login_context',-values=>['sco']);
68 $query->param(-name=>'sco_user_login',-values=>[1]);
69 my ($template, $loggedinuser, $cookie) = get_template_and_user({
70 template_name => "sco/sco-main.tt",
71 authnotrequired => 0,
72 flagsrequired => { circulate => "self_checkout" },
73 query => $query,
74 type => "opac",
75 debug => 1,
76 });
78 if (C4::Context->preference('SelfCheckoutByLogin'))
80 $template->param(authbylogin => 1);
83 # Get the self checkout timeout preference, or use 120 seconds as a default
84 my $selfchecktimeout = 120000;
85 if (C4::Context->preference('SelfCheckTimeout')) {
86 $selfchecktimeout = C4::Context->preference('SelfCheckTimeout') * 1000;
88 $template->param(SelfCheckTimeout => $selfchecktimeout);
90 # Checks policy laid out by AllowSelfCheckReturns, defaults to 'on' if preference is undefined
91 my $allowselfcheckreturns = 1;
92 if (defined C4::Context->preference('AllowSelfCheckReturns')) {
93 $allowselfcheckreturns = C4::Context->preference('AllowSelfCheckReturns');
95 $template->param(AllowSelfCheckReturns => $allowselfcheckreturns);
98 my $issuerid = $loggedinuser;
99 my ($op, $patronid, $patronlogin, $patronpw, $barcode, $confirmed) = (
100 $query->param("op") || '',
101 $query->param("patronid") || '',
102 $query->param("patronlogin")|| '',
103 $query->param("patronpw") || '',
104 $query->param("barcode") || '',
105 $query->param("confirmed") || '',
108 my $issuenoconfirm = 1; #don't need to confirm on issue.
109 #warn "issuerid: " . $issuerid;
110 my $issuer = GetMember( borrowernumber => $issuerid );
111 my $item = GetItem(undef,$barcode);
112 if (C4::Context->preference('SelfCheckoutByLogin') && !$patronid) {
113 my $dbh = C4::Context->dbh;
114 my $resval;
115 ($resval, $patronid) = checkpw($dbh, $patronlogin, $patronpw);
117 my $borrower = GetMember( cardnumber => $patronid );
119 my $currencySymbol = "";
120 if ( my $active_currency = Koha::Acquisition::Currencies->get_active ) {
121 $currencySymbol = $active_currency->symbol;
124 my $branch = $issuer->{branchcode};
125 my $confirm_required = 0;
126 my $return_only = 0;
127 #warn "issuer cardnumber: " . $issuer->{cardnumber};
128 #warn "patron cardnumber: " . $borrower->{cardnumber};
129 if ($op eq "logout") {
130 $query->param( patronid => undef, patronlogin => undef, patronpw => undef );
132 elsif ( $op eq "returnbook" && $allowselfcheckreturns ) {
133 my ($doreturn) = AddReturn( $barcode, $branch );
134 #warn "returnbook: " . $doreturn;
135 $borrower = GetMember( cardnumber => $patronid );
137 elsif ( $op eq "checkout" ) {
138 my $impossible = {};
139 my $needconfirm = {};
140 ( $impossible, $needconfirm ) = CanBookBeIssued(
141 $borrower,
142 $barcode,
143 undef,
145 C4::Context->preference("AllowItemsOnHoldCheckoutSCO")
147 my $issue_error;
148 if ( $confirm_required = scalar keys %$needconfirm ) {
149 for my $error ( qw( UNKNOWN_BARCODE max_loans_allowed ISSUED_TO_ANOTHER NO_MORE_RENEWALS NOT_FOR_LOAN DEBT WTHDRAWN RESTRICTED RESERVED ITEMNOTSAMEBRANCH EXPIRED DEBARRED CARD_LOST GNA INVALID_DATE UNKNOWN_BARCODE TOO_MANY DEBT_GUARANTEES USERBLOCKEDOVERDUE PATRON_CANT PREVISSUE NOT_FOR_LOAN_FORCING ITEM_LOST) ) {
150 if ( $needconfirm->{$error} ) {
151 $issue_error = $error;
152 $confirmed = 0;
153 last;
158 #warn "confirm_required: " . $confirm_required ;
159 if (scalar keys %$impossible) {
161 my $issue_error = (keys %$impossible)[0]; # FIXME This is wrong, we assume only one error and keys are not ordered
163 $template->param(
164 impossible => $issue_error,
165 "circ_error_$issue_error" => 1,
166 title => $item->{title},
167 hide_main => 1,
169 if ($issue_error eq 'DEBT') {
170 $template->param(amount => $currencySymbol.$impossible->{DEBT});
172 #warn "issue_error: " . $issue_error ;
173 if ( $issue_error eq "NO_MORE_RENEWALS" ) {
174 $return_only = 1;
175 $template->param(
176 returnitem => 1,
177 barcode => $barcode,
180 } elsif ( $needconfirm->{RENEW_ISSUE} ) {
181 if ($confirmed) {
182 #warn "renewing";
183 AddRenewal( $borrower->{borrowernumber}, $item->{itemnumber} );
184 } else {
185 #warn "renew confirmation";
186 $template->param(
187 renew => 1,
188 barcode => $barcode,
189 confirm => 1,
190 confirm_renew_issue => 1,
191 hide_main => 1,
194 } elsif ( $confirm_required && !$confirmed ) {
195 #warn "failed confirmation";
196 $template->param(
197 impossible => 1,
198 "circ_error_$issue_error" => 1,
199 hide_main => 1,
201 if ($issue_error eq 'DEBT') {
202 $template->param(amount => $currencySymbol.$needconfirm->{DEBT});
204 } else {
205 if ( $confirmed || $issuenoconfirm ) { # we'll want to call getpatroninfo again to get updated issues.
206 my ( $hold_existed, $item );
207 if ( C4::Context->preference('HoldFeeMode') eq 'any_time_is_collected' ) {
208 # There is no easy way to know if the patron has been charged for this item.
209 # So we check if a hold existed for this item before the check in
210 $item = Koha::Items->find({ barcode => $barcode });
211 $hold_existed = Koha::Holds->search(
213 -and => {
214 borrowernumber => $borrower->{borrowernumber},
215 -or => {
216 biblionumber => $item->biblionumber,
217 itemnumber => $item->itemnumber
221 )->count;
223 AddIssue( $borrower, $barcode );
225 if ( $hold_existed ) {
226 my $dtf = Koha::Database->new->schema->storage->datetime_parser;
227 $template->param(
228 # If the hold existed before the check in, let's confirm that the charge line exists
229 # Note that this should not be needed but since we do not have proper exception handling here we do it this way
230 patron_has_hold_fee => Koha::Account::Lines->search(
232 borrowernumber => $borrower->{borrowernumber},
233 accounttype => 'Res',
234 description => 'Reserve Charge - ' . $item->biblio->title,
235 date => $dtf->format_date(dt_from_string)
237 )->count,
240 } else {
241 $confirm_required = 1;
242 #warn "issue confirmation";
243 $template->param(
244 confirm => "Issuing title: " . $item->{title},
245 barcode => $barcode,
246 hide_main => 1,
247 inputfocus => 'confirm',
251 } # $op
253 if ($borrower->{cardnumber}) {
254 # warn "issuer's branchcode: " . $issuer->{branchcode};
255 # warn "user's branchcode: " . $borrower->{branchcode};
256 my $borrowername = sprintf "%s %s", ($borrower->{firstname} || ''), ($borrower->{surname} || '');
257 my @issues;
258 my ($issueslist) = GetPendingIssues( $borrower->{'borrowernumber'} );
259 foreach my $it (@$issueslist) {
260 my ($can_be_renewed, $renew_error) = CanBookBeRenewed(
261 $borrower->{borrowernumber},
262 $it->{itemnumber},
264 $it->{can_be_renewed} = $can_be_renewed;
265 $it->{renew_error} = $renew_error;
266 $it->{date_due} = $it->{date_due_sql};
267 push @issues, $it;
270 $template->param(
271 validuser => 1,
272 borrowername => $borrowername,
273 issues_count => scalar(@issues),
274 ISSUES => \@issues,
275 patronid => $patronid,
276 patronlogin => $patronlogin,
277 patronpw => $patronpw,
278 noitemlinks => 1 ,
279 borrowernumber => $borrower->{'borrowernumber'},
282 my $patron_messages = Koha::Patron::Messages->search(
284 borrowernumber => $borrower->{'borrowernumber'},
285 message_type => 'B',
288 $template->param(
289 patron_messages => $patron_messages,
290 opacnote => $borrower->{opacnote},
293 my $inputfocus = ($return_only == 1) ? 'returnbook' :
294 ($confirm_required == 1) ? 'confirm' : 'barcode' ;
295 $template->param(
296 inputfocus => $inputfocus,
297 nofines => 1,
300 if (C4::Context->preference('ShowPatronImageInWebBasedSelfCheck')) {
301 my $patron_image = Koha::Patron::Images->find($borrower->{borrowernumber});
302 $template->param(
303 display_patron_image => 1,
304 cardnumber => $borrower->{cardnumber},
305 csrf_token => Koha::Token->new->generate_csrf( { session_id => scalar $query->cookie('CGISESSID') . $borrower->{cardnumber}, id => $borrower->{userid}} ),
306 ) if $patron_image;
308 } else {
309 $template->param(
310 patronid => $patronid,
311 nouser => $patronid,
315 $template->param(
316 SCOUserJS => C4::Context->preference('SCOUserJS'),
317 SCOUserCSS => C4::Context->preference('SCOUserCSS'),
320 output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };