Bug 8585 : Add System Preference to specify Holds to Pull List Start Date
[koha.git] / svc / authentication
1 #!/usr/bin/perl
2
3 # Copyright 2007 LibLime
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 #
20
21 use strict;
22 use warnings;
23
24 use CGI;
25 use C4::Auth qw/check_api_auth/;
26 use XML::Simple;
27
28 my $query = new CGI;
29
30 # The authentication strategy for the biblios web 
31 # services is as follows.
32
33 # 1. biblios POSTs to the authenticate API with URL-encoded
34 # form parameters 'userid' and 'password'.  If the credentials
35 # belong to a valid user with the 'editcatalogue' privilege,
36 # a session cookie is returned and a Koha session created.  Otherwise, an 
37 # appropriate error is returned.
38 # 2. For subsequent calls to the biblios APIs, the user agent
39 # should submit the same session cookie.  If the cookie is
40 # not supplied or does not correspond to a valid session, the API
41 # will redirect to this authentication API.
42 # 3. The session cookie should not be (directly) sent back to the user's
43 # web browser, but instead should be stored and submitted by biblios.
44
45
46 my ($status, $cookie, $sessionID) = check_api_auth($query, { editcatalogue => 'edit_catalogue'} );
47
48 if ($status eq "ok") {
49     print $query->header(-type => 'text/xml', cookie => $cookie);
50 } else {
51     print $query->header(-type => 'text/xml');
52 }
53 print XMLout({ status => $status }, NoAttr => 1, RootName => 'response', XMLDecl => 1);