Bug 15485: (QA followup) Fix behaviour and default values
[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
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 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);