Bug 14246: Update NewsChannel tests
[koha.git] / offline_circ / service.pl
1 #!/usr/bin/perl
2
3 # 2009 BibLibre <jeanandre.santoni@biblibre.com>
4
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19 #
20
21 use strict;
22 use warnings;
23
24 use CGI qw ( -utf8 );
25 use C4::Auth;
26 use C4::Circulation;
27
28 my $cgi = CGI->new;
29
30 # get the status of the user, this will check his credentials and rights
31 my ($status, $cookie, $sessionId) = C4::Auth::check_api_auth($cgi, undef);
32 ($status, $sessionId) = C4::Auth::check_cookie_auth($cgi, undef) if ($status ne 'ok');
33
34 my $result;
35
36 if ($status eq 'ok') { # if authentication is ok
37
38     my $userid     = $cgi->param('userid')     || '';
39     my $branchcode = $cgi->param('branchcode') || '';
40     my $timestamp  = $cgi->param('timestamp')  || '';
41     my $action     = $cgi->param('action')     || '';
42     my $barcode    = $cgi->param('barcode')    || '';
43     my $amount     = $cgi->param('amount')     || 0;
44     $barcode    =~ s/^\s+//;
45     $barcode    =~ s/\s+$//;
46     my $cardnumber = $cgi->param('cardnumber') || '';
47     $cardnumber =~ s/^\s+//;
48     $cardnumber =~ s/\s+$//;
49
50     if ( $cgi->param('pending') eq 'true' ) { # if the 'pending' flag is true, we store the operation in the db instead of directly processing them
51         $result = AddOfflineOperation(
52             $userid,
53             $branchcode,
54             $timestamp,
55             $action,
56             $barcode,
57             $cardnumber,
58             $amount
59         );
60     } else {
61         $result = ProcessOfflineOperation(
62             {
63                 'userid'      => $userid,
64                 'branchcode'  => $branchcode,
65                 'timestamp'   => $timestamp,
66                 'action'      => $action,
67                 'barcode'     => $barcode,
68                 'cardnumber'  => $cardnumber,
69                 'amount'      => $amount
70             }
71         );
72     }
73 } else {
74     $result = "Authentication failed."
75 }
76
77 print CGI::header('-type'=>'text/plain', '-charset'=>'utf-8');
78 print $result;