Merge remote branch 'kc/master' into new/enh/bug_5917
[koha.git] / installer / InstallAuth.pm
1 # -*- tab-width: 8 -*-
2 # NOTE: This file uses 8-character tabs; do not change the tab size!
3
4 package InstallAuth;
5
6 # Copyright 2000-2002 Katipo Communications
7 #
8 # This file is part of Koha.
9 #
10 # Koha is free software; you can redistribute it and/or modify it under the
11 # terms of the GNU General Public License as published by the Free Software
12 # Foundation; either version 2 of the License, or (at your option) any later
13 # version.
14 #
15 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
16 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
17 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License along
20 # with Koha; if not, write to the Free Software Foundation, Inc.,
21 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22
23 use strict;
24 #use warnings; FIXME - Bug 2505
25 use Digest::MD5 qw(md5_base64);
26
27 require Exporter;
28 use C4::Context;
29 use C4::Output;
30 use C4::Templates;
31 use C4::Koha;
32 use CGI::Session;
33
34 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
35
36 # set the version for version checking
37 $VERSION = 3.00;
38
39 =head1 NAME
40
41 InstallAuth - Authenticates Koha users for Install process
42
43 =head1 SYNOPSIS
44
45   use CGI;
46   use InstallAuth;
47   use C4::Output;
48
49   my $query = new CGI;
50
51   my ($template, $borrowernumber, $cookie) 
52     = get_template_and_user({template_name   => "opac-main.tmpl",
53                              query           => $query,
54                              type            => "opac",
55                              authnotrequired => 1,
56                              flagsrequired   => {borrow => 1},
57                           });
58
59   output_html_with_http_headers $query, $cookie, $template->output;
60
61 =head1 DESCRIPTION
62
63     The main function of this module is to provide
64     authentification. However the get_template_and_user function has
65     been provided so that a users login information is passed along
66     automatically. This gets loaded into the template.
67     This package is different from C4::Auth in so far as 
68     C4::Auth uses many preferences which are supposed NOT to be obtainable when installing the database.
69     
70     As in C4::Auth, Authentication is based on cookies.
71
72 =head1 FUNCTIONS
73
74 =over 2
75
76 =cut
77
78 @ISA    = qw(Exporter);
79 @EXPORT = qw(
80   &checkauth
81   &get_template_and_user
82 );
83
84 =item get_template_and_user
85
86   my ($template, $borrowernumber, $cookie)
87     = get_template_and_user({template_name   => "opac-main.tmpl",
88                              query           => $query,
89                              type            => "opac",
90                              authnotrequired => 1,
91                              flagsrequired   => {borrow => 1},
92                           });
93
94     This call passes the C<query>, C<flagsrequired> and C<authnotrequired>
95     to C<&checkauth> (in this module) to perform authentification.
96     See C<&checkauth> for an explanation of these parameters.
97
98     The C<template_name> is then used to find the correct template for
99     the page. The authenticated users details are loaded onto the
100     template in the HTML::Template LOOP variable C<USER_INFO>. Also the
101     C<sessionID> is passed to the template. This can be used in templates
102     if cookies are disabled. It needs to be put as and input to every
103     authenticated page.
104
105     More information on the C<gettemplate> sub can be found in the
106     Output.pm module.
107
108 =cut
109
110 sub get_template_and_user {
111     my $in       = shift;
112     my $query    = $in->{'query'};
113     my $language = $query->cookie('KohaOpacLanguage');
114     my $path =
115       C4::Context->config('intrahtdocs') . "/prog/"
116       . ( $language ? $language : "en" );
117     
118     my $filename = "$path/modules/" . $in->{template_name};
119     $filename =~ s/\.tmpl$/.tt/; 
120     my $interface = 'intranet';
121     my $template = C4::Templates->new( $interface, $filename);
122     
123
124     my ( $user, $cookie, $sessionID, $flags ) = checkauth(
125         $in->{'query'},
126         $in->{'authnotrequired'},
127         $in->{'flagsrequired'},
128         $in->{'type'}
129     );
130
131     #     use Data::Dumper;warn "utilisateur $user cookie : ".Dumper($cookie);
132
133     my $borrowernumber;
134     if ($user) {
135         $template->param( loggedinusername => $user );
136         $template->param( sessionID        => $sessionID );
137
138         # We are going to use the $flags returned by checkauth
139         # to create the template's parameters that will indicate
140         # which menus the user can access.
141         if ( ( $flags && $flags->{superlibrarian} == 1 ) ) {
142             $template->param( CAN_user_circulate        => 1 );
143             $template->param( CAN_user_catalogue        => 1 );
144             $template->param( CAN_user_parameters       => 1 );
145             $template->param( CAN_user_borrowers        => 1 );
146             $template->param( CAN_user_permission       => 1 );
147             $template->param( CAN_user_reserveforothers => 1 );
148             $template->param( CAN_user_borrow           => 1 );
149             $template->param( CAN_user_editcatalogue    => 1 );
150             $template->param( CAN_user_updatecharges    => 1 );
151             $template->param( CAN_user_acquisition      => 1 );
152             $template->param( CAN_user_management       => 1 );
153             $template->param( CAN_user_tools            => 1 );
154             $template->param( CAN_user_editauthorities  => 1 );
155             $template->param( CAN_user_serials          => 1 );
156             $template->param( CAN_user_reports          => 1 );
157         }
158     }
159     return ( $template, $borrowernumber, $cookie );
160 }
161
162 =item checkauth
163
164   ($userid, $cookie, $sessionID) = &checkauth($query, $noauth, $flagsrequired, $type);
165
166 Verifies that the user is authorized to run this script.  If
167 the user is authorized, a (userid, cookie, session-id, flags)
168 quadruple is returned.  If the user is not authorized but does
169 not have the required privilege (see $flagsrequired below), it
170 displays an error page and exits.  Otherwise, it displays the
171 login page and exits.
172
173 Note that C<&checkauth> will return if and only if the user
174 is authorized, so it should be called early on, before any
175 unfinished operations (e.g., if you've opened a file, then
176 C<&checkauth> won't close it for you).
177
178 C<$query> is the CGI object for the script calling C<&checkauth>.
179
180 The C<$noauth> argument is optional. If it is set, then no
181 authorization is required for the script.
182
183 C<&checkauth> fetches user and session information from C<$query> and
184 ensures that the user is authorized to run scripts that require
185 authorization.
186
187 The C<$flagsrequired> argument specifies the required privileges
188 the user must have if the username and password are correct.
189 It should be specified as a reference-to-hash; keys in the hash
190 should be the "flags" for the user, as specified in the Members
191 intranet module. Any key specified must correspond to a "flag"
192 in the userflags table. E.g., { circulate => 1 } would specify
193 that the user must have the "circulate" privilege in order to
194 proceed. To make sure that access control is correct, the
195 C<$flagsrequired> parameter must be specified correctly.
196
197 The C<$type> argument specifies whether the template should be
198 retrieved from the opac or intranet directory tree.  "opac" is
199 assumed if it is not specified; however, if C<$type> is specified,
200 "intranet" is assumed if it is not "opac".
201
202 If C<$query> does not have a valid session ID associated with it
203 (i.e., the user has not logged in) or if the session has expired,
204 C<&checkauth> presents the user with a login page (from the point of
205 view of the original script, C<&checkauth> does not return). Once the
206 user has authenticated, C<&checkauth> restarts the original script
207 (this time, C<&checkauth> returns).
208
209 The login page is provided using a HTML::Template, which is set in the
210 systempreferences table or at the top of this file. The variable C<$type>
211 selects which template to use, either the opac or the intranet 
212 authentification template.
213
214 C<&checkauth> returns a user ID, a cookie, and a session ID. The
215 cookie should be sent back to the browser; it verifies that the user
216 has authenticated.
217
218 =cut
219
220 sub checkauth {
221     my $query = shift;
222
223 # $authnotrequired will be set for scripts which will run without authentication
224     my $authnotrequired = shift;
225     my $flagsrequired   = shift;
226     my $type            = shift;
227     $type = 'intranet' unless $type;
228
229     my $dbh = C4::Context->dbh();
230     my $template_name;
231     $template_name = "installer/auth.tmpl";
232
233     # state variables
234     my $loggedin = 0;
235     my %info;
236     my ( $userid, $cookie, $sessionID, $flags, $envcookie );
237     my $logout = $query->param('logout.x');
238     if ( $sessionID = $query->cookie("CGISESSID") ) {
239         C4::Context->_new_userenv($sessionID);
240         my $session =
241           new CGI::Session( "driver:File;serializer:yaml", $sessionID,
242             { Directory => '/tmp' } );
243         if ( $session->param('cardnumber') ) {
244             C4::Context::set_userenv(
245                 $session->param('number'),
246                 $session->param('id'),
247                 $session->param('cardnumber'),
248                 $session->param('firstname'),
249                 $session->param('surname'),
250                 $session->param('branch'),
251                 $session->param('branchname'),
252                 $session->param('flags'),
253                 $session->param('emailaddress'),
254                 $session->param('branchprinter')
255             );
256             $cookie   = $query->cookie( CGISESSID => $session->id );
257             $loggedin = 1;
258             $userid   = $session->param('cardnumber');
259         }
260         my ( $ip, $lasttime );
261
262         if ($logout) {
263
264             # voluntary logout the user
265             C4::Context->_unset_userenv($sessionID);
266             $sessionID = undef;
267             $userid    = undef;
268             open L, ">>/tmp/sessionlog";
269             my $time = localtime( time() );
270             printf L "%20s from %16s logged out at %30s (manually).\n", $userid,
271               $ip, $time;
272             close L;
273         }
274     }
275     unless ($userid) {
276         my $session =
277           new CGI::Session( "driver:File;serializer:yaml", undef, { Directory => '/tmp' } );
278         $sessionID = $session->id;
279         $userid    = $query->param('userid');
280         C4::Context->_new_userenv($sessionID);
281         my $password = $query->param('password');
282         C4::Context->_new_userenv($sessionID);
283         my ( $return, $cardnumber ) = checkpw( $userid, $password );
284         if ($return) {
285             $loggedin = 1;
286             open L, ">>/tmp/sessionlog";
287             my $time = localtime( time() );
288             printf L "%20s from %16s logged in  at %30s.\n", $userid,
289               $ENV{'REMOTE_ADDR'}, $time;
290             close L;
291             $cookie = $query->cookie( CGISESSID => $sessionID );
292             if ( $return == 2 ) {
293
294            #Only superlibrarian should have access to this page.
295            #Since if it is a user, it is supposed that there is a borrower table
296            #And thus that data structure is loaded.
297                 my $hash = C4::Context::set_userenv(
298                     0,                           0,
299                     C4::Context->config('user'), C4::Context->config('user'),
300                     C4::Context->config('user'), "",
301                     "NO_LIBRARY_SET",            1,
302                     ""
303                 );
304                 $session->param( 'number',     0 );
305                 $session->param( 'id',         C4::Context->config('user') );
306                 $session->param( 'cardnumber', C4::Context->config('user') );
307                 $session->param( 'firstname',  C4::Context->config('user') );
308                 $session->param( 'surname',    C4::Context->config('user'), );
309                 $session->param( 'branch',     'NO_LIBRARY_SET' );
310                 $session->param( 'branchname', 'NO_LIBRARY_SET' );
311                 $session->param( 'flags',      1 );
312                 $session->param( 'emailaddress',
313                     C4::Context->preference('KohaAdminEmailAddress') );
314                 $session->param( 'ip',       $session->remote_addr() );
315                 $session->param( 'lasttime', time() );
316                 $userid = C4::Context->config('user');
317             }
318         }
319         else {
320             if ($userid) {
321                 $info{'invalid_username_or_password'} = 1;
322                 C4::Context->_unset_userenv($sessionID);
323             }
324         }
325     }
326
327     # finished authentification, now respond
328     if ($loggedin) {
329
330         # successful login
331         unless ($cookie) {
332             $cookie = $query->cookie(
333                 -name    => 'CGISESSID',
334                 -value   => '',
335                 -expires => ''
336             );
337         }
338         if ($envcookie) {
339             return ( $userid, [ $cookie, $envcookie ], $sessionID, $flags );
340         }
341         else {
342             return ( $userid, $cookie, $sessionID, $flags );
343         }
344     }
345
346     # else we have a problem...
347     # get the inputs from the incoming query
348     my @inputs = ();
349     foreach my $name ( param $query) {
350         (next) if ( $name eq 'userid' || $name eq 'password' );
351         my $value = $query->param($name);
352         push @inputs, { name => $name, value => $value };
353     }
354
355     my $path =
356       C4::Context->config('intrahtdocs') . "/prog/"
357       . ( $query->param('language') ? $query->param('language') : "en" );
358     my $filename = "$path/modules/$template_name";
359     $filename =~ s/\.tmpl$/.tt/;
360     my $interface = 'intranet';
361     my $template = C4::Templates->new( $interface, $filename);
362     $template->param(
363         INPUTS => \@inputs,
364
365     );
366     $template->param( login => 1 );
367     $template->param( loginprompt => 1 ) unless $info{'nopermission'};
368
369     my $self_url = $query->url( -absolute => 1 );
370     $template->param( url => $self_url, );
371     $template->param( \%info );
372     $cookie = $query->cookie(
373         -name    => 'CGISESSID',
374         -value   => $sessionID,
375         -expires => ''
376     );
377     print $query->header(
378         -type    => 'text/html; charset=utf-8',
379         -cookie  => $cookie
380       ),
381       $template->output;
382     exit;
383 }
384
385 sub checkpw {
386
387     my ( $userid, $password ) = @_;
388
389     if (   $userid
390         && $userid     eq C4::Context->config('user')
391         && "$password" eq C4::Context->config('pass') )
392     {
393
394         # Koha superuser account
395         C4::Context->set_userenv(
396             0, 0,
397             C4::Context->config('user'),
398             C4::Context->config('user'),
399             C4::Context->config('user'),
400             "", 1
401         );
402         return 2;
403     }
404     if (   $userid
405         && $userid     eq 'demo'
406         && "$password" eq 'demo'
407         && C4::Context->config('demo') )
408     {
409
410 # DEMO => the demo user is allowed to do everything (if demo set to 1 in koha.conf
411 # some features won't be effective : modify systempref, modify MARC structure,
412         return 2;
413     }
414     return 0;
415 }
416
417 END { }    # module clean-up code here (global destructor)
418 1;
419 __END__
420
421 =back
422
423 =head1 SEE ALSO
424
425 CGI(3)
426
427 C4::Output(3)
428
429 Digest::MD5(3)
430
431 =cut