3 # Copyright 2007 LibLime
5 # This file is part of Koha.
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
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.
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.
25 use C4
::Auth qw
/check_api_auth/;
30 # The authentication strategy for the biblios web
31 # services is as follows.
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.
46 my ($status, $cookie, $sessionID) = check_api_auth
($query, { editcatalogue
=> 'edit_catalogue'} );
48 if ($status eq "ok") {
49 print $query->header(-type
=> 'text/xml', cookie
=> $cookie);
51 print $query->header(-type
=> 'text/xml');
53 print XMLout
({ status
=> $status }, NoAttr
=> 1, RootName
=> 'response', XMLDecl
=> 1);