]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader.pm
LP1207396 Patron self-registration web form
[working/Evergreen.git] / Open-ILS / src / perlmods / lib / OpenILS / WWW / EGCatLoader.pm
1 package OpenILS::WWW::EGCatLoader;
2 use strict; use warnings;
3 use XML::LibXML;
4 use URI::Escape;
5 use Digest::MD5 qw(md5_hex);
6 use Apache2::Const -compile => qw(OK DECLINED FORBIDDEN HTTP_INTERNAL_SERVER_ERROR REDIRECT HTTP_BAD_REQUEST);
7 use OpenSRF::AppSession;
8 use OpenSRF::EX qw/:try/;
9 use OpenSRF::Utils qw/:datetime/;
10 use OpenSRF::Utils::JSON;
11 use OpenSRF::Utils::Logger qw/$logger/;
12 use OpenILS::Application::AppUtils;
13 use OpenILS::Utils::CStoreEditor qw/:funcs/;
14 use OpenILS::Utils::Fieldmapper;
15 use DateTime::Format::ISO8601;
16 use CGI qw(:all -utf8);
17 use Time::HiRes;
18
19 # EGCatLoader sub-modules 
20 use OpenILS::WWW::EGCatLoader::Util;
21 use OpenILS::WWW::EGCatLoader::Account;
22 use OpenILS::WWW::EGCatLoader::Browse;
23 use OpenILS::WWW::EGCatLoader::Search;
24 use OpenILS::WWW::EGCatLoader::Record;
25 use OpenILS::WWW::EGCatLoader::Container;
26 use OpenILS::WWW::EGCatLoader::SMS;
27 use OpenILS::WWW::EGCatLoader::Register;
28
29 my $U = 'OpenILS::Application::AppUtils';
30
31 use constant COOKIE_SES => 'ses';
32 use constant COOKIE_LOGGEDIN => 'eg_loggedin';
33 use constant COOKIE_PHYSICAL_LOC => 'eg_physical_loc';
34 use constant COOKIE_SSS_EXPAND => 'eg_sss_expand';
35
36 use constant COOKIE_ANON_CACHE => 'anoncache';
37 use constant ANON_CACHE_MYLIST => 'mylist';
38 use constant ANON_CACHE_STAFF_SEARCH => 'staffsearch';
39
40 use constant DEBUG_TIMING => 0;
41
42 sub new {
43     my($class, $apache, $ctx) = @_;
44
45     my $self = bless({}, ref($class) || $class);
46
47     $self->apache($apache);
48     $self->ctx($ctx);
49     $self->cgi(new CGI);
50     $self->timelog("New page");
51
52     OpenILS::Utils::CStoreEditor->init; # just in case
53     $self->editor(new_editor());
54
55     return $self;
56 }
57
58
59 # current Apache2::RequestRec;
60 sub apache {
61     my($self, $apache) = @_;
62     $self->{apache} = $apache if $apache;
63     return $self->{apache};
64 }
65
66 # runtime / template context
67 sub ctx {
68     my($self, $ctx) = @_;
69     $self->{ctx} = $ctx if $ctx;
70     return $self->{ctx};
71 }
72
73 # cstore editor
74 sub editor {
75     my($self, $editor) = @_;
76     $self->{editor} = $editor if $editor;
77     return $self->{editor};
78 }
79
80 # CGI handle
81 sub cgi {
82     my($self, $cgi) = @_;
83     $self->{cgi} = $cgi if $cgi;
84     return $self->{cgi};
85 }
86
87 sub timelog {
88     my($self, $description) = @_;
89
90     return unless DEBUG_TIMING;
91     return unless $description;
92     $self->ctx->{timing} ||= [];
93     
94     my $timer = [Time::HiRes::gettimeofday()];
95     $self->ctx->{time_begin} ||= $timer;
96
97     push @{$self->ctx->{timing}}, [
98         Time::HiRes::tv_interval($self->ctx->{time_begin}, $timer), $description
99     ];
100 }
101
102 # -----------------------------------------------------------------------------
103 # Perform initial setup, load common data, then load page data
104 # -----------------------------------------------------------------------------
105 sub load {
106     my $self = shift;
107
108     $self->init_ro_object_cache;
109     $self->timelog("Initial load");
110
111     my $stat = $self->load_common;
112     return $stat unless $stat == Apache2::Const::OK;
113
114     my $path = $self->apache->path_info;
115
116     (undef, $self->ctx->{mylist}) = $self->fetch_mylist unless
117         $path =~ /opac\/my(opac\/lists|list)/;
118
119     return $self->load_simple("home") if $path =~ m|opac/home|;
120     return $self->load_simple("css") if $path =~ m|opac/css|;
121     return $self->load_simple("advanced") if
122         $path =~ m:opac/(advanced|numeric|expert):;
123
124     return $self->load_rresults if $path =~ m|opac/results|;
125     return $self->load_print_record if $path =~ m|opac/record/print|;
126     return $self->load_record if $path =~ m|opac/record/\d|;
127     return $self->load_cnbrowse if $path =~ m|opac/cnbrowse|;
128     return $self->load_browse if $path =~ m|opac/browse|;
129
130     return $self->load_mylist_add if $path =~ m|opac/mylist/add|;
131     return $self->load_mylist_delete if $path =~ m|opac/mylist/delete|;
132     return $self->load_mylist_move if $path =~ m|opac/mylist/move|;
133     return $self->load_mylist if $path =~ m|opac/mylist|;
134     return $self->load_cache_clear if $path =~ m|opac/cache/clear|;
135     return $self->load_temp_warn_post if $path =~ m|opac/temp_warn/post|;
136     return $self->load_temp_warn if $path =~ m|opac/temp_warn|;
137
138     # ----------------------------------------------------------------
139     #  Everything below here requires SSL
140     # ----------------------------------------------------------------
141     return $self->redirect_ssl unless $self->cgi->https;
142     return $self->load_password_reset if $path =~ m|opac/password_reset|;
143     return $self->load_logout if $path =~ m|opac/logout|;
144     return $self->load_patron_reg if $path =~ m|opac/register|;
145
146     if($path =~ m|opac/login|) {
147         return $self->load_login unless $self->editor->requestor; # already logged in?
148
149         # This will be less confusing to users than to be shown a login form
150         # when they're already logged in.
151         return $self->generic_redirect(
152             sprintf(
153                 "%s://%s%s/myopac/main",
154                 $self->ctx->{proto},
155                 $self->ctx->{hostname}, $self->ctx->{opac_root}
156             )
157         );
158     }
159
160     if ($path =~ m|opac/sms_cn| and !$self->editor->requestor) {
161         my $org_unit = $self->ctx->{physical_loc} || $self->cgi->param('loc') || $self->ctx->{aou_tree}->()->id;
162         my $skip_sms_auth = $self->ctx->{get_org_setting}->($org_unit, 'sms.disable_authentication_requirement.callnumbers');
163         return $self->load_sms_cn if $skip_sms_auth;
164     }
165
166     # ----------------------------------------------------------------
167     #  Everything below here requires authentication
168     # ----------------------------------------------------------------
169     return $self->redirect_auth unless $self->editor->requestor;
170
171     # Don't cache anything requiring auth for security reasons
172     $self->apache->headers_out->add("cache-control" => "no-store, no-cache, must-revalidate");
173     $self->apache->headers_out->add("expires" => "-1");
174
175     return $self->load_email_record if $path =~ m|opac/record/email|;
176
177     return $self->load_place_hold if $path =~ m|opac/place_hold|;
178     return $self->load_myopac_holds if $path =~ m|opac/myopac/holds|;
179     return $self->load_myopac_circs if $path =~ m|opac/myopac/circs|;
180     return $self->load_myopac_payment_form if $path =~ m|opac/myopac/main_payment_form|;
181     return $self->load_myopac_payments if $path =~ m|opac/myopac/main_payments|;
182     return $self->load_myopac_pay_init if $path =~ m|opac/myopac/main_pay_init|;
183     return $self->load_myopac_pay if $path =~ m|opac/myopac/main_pay|;
184     return $self->load_myopac_main if $path =~ m|opac/myopac/main|;
185     return $self->load_myopac_receipt_email if $path =~ m|opac/myopac/receipt_email|;
186     return $self->load_myopac_receipt_print if $path =~ m|opac/myopac/receipt_print|;
187     return $self->load_myopac_update_email if $path =~ m|opac/myopac/update_email|;
188     return $self->load_myopac_update_password if $path =~ m|opac/myopac/update_password|;
189     return $self->load_myopac_update_username if $path =~ m|opac/myopac/update_username|;
190     return $self->load_myopac_bookbags if $path =~ m|opac/myopac/lists|;
191     return $self->load_myopac_bookbag_print if $path =~ m|opac/myopac/list/print|;
192     return $self->load_myopac_bookbag_update if $path =~ m|opac/myopac/list/update|;
193     return $self->load_myopac_circ_history_export if $path =~ m|opac/myopac/circ_history/export|;
194     return $self->load_myopac_circ_history if $path =~ m|opac/myopac/circ_history|;
195     return $self->load_myopac_hold_history if $path =~ m|opac/myopac/hold_history|;
196     return $self->load_myopac_prefs_notify if $path =~ m|opac/myopac/prefs_notify|;
197     return $self->load_myopac_prefs_settings if $path =~ m|opac/myopac/prefs_settings|;
198     return $self->load_myopac_prefs if $path =~ m|opac/myopac/prefs|;
199     return $self->load_sms_cn if $path =~ m|opac/sms_cn|;
200
201     return Apache2::Const::OK;
202 }
203
204
205 # -----------------------------------------------------------------------------
206 # Redirect to SSL equivalent of a given page
207 # -----------------------------------------------------------------------------
208 sub redirect_ssl {
209     my $self = shift;
210     my $new_page = sprintf('%s://%s%s', ($self->ctx->{is_staff} ? 'oils' : 'https'), $self->ctx->{hostname}, $self->apache->unparsed_uri);
211     return $self->generic_redirect($new_page);
212 }
213
214 # -----------------------------------------------------------------------------
215 # If an authnticated resource is requested w/o auth, redirect to the login page,
216 # then return to the originally requrested resource upon successful login.
217 # -----------------------------------------------------------------------------
218 sub redirect_auth {
219     my $self = shift;
220     my $login_page = sprintf('%s://%s%s/login',($self->ctx->{is_staff} ? 'oils' : 'https'), $self->ctx->{hostname}, $self->ctx->{opac_root});
221     my $redirect_to = uri_escape_utf8($self->apache->unparsed_uri);
222     return $self->generic_redirect("$login_page?redirect_to=$redirect_to");
223 }
224
225 # -----------------------------------------------------------------------------
226 # Fall-through for loading a basic page
227 # -----------------------------------------------------------------------------
228 sub load_simple {
229     my ($self, $page) = @_;
230     $self->ctx->{page} = $page;
231     $self->ctx->{search_ou} = $self->_get_search_lib();
232
233     return Apache2::Const::OK;
234 }
235
236 # -----------------------------------------------------------------------------
237 # Tests to see if the user is authenticated and sets some common context values
238 # -----------------------------------------------------------------------------
239 sub load_common {
240     my $self = shift;
241
242     my $e = $self->editor;
243     my $ctx = $self->ctx;
244
245     # redirect non-https to https if we think we are already logged in
246     if ($self->cgi->cookie(COOKIE_LOGGEDIN)) {
247         return $self->redirect_ssl unless $self->cgi->https;
248     }
249
250     $ctx->{referer} = $self->cgi->referer;
251     $ctx->{path_info} = $self->cgi->path_info;
252     $ctx->{full_path} = $ctx->{base_path} . $self->cgi->path_info;
253     $ctx->{unparsed_uri} = $self->apache->unparsed_uri;
254     $ctx->{opac_root} = $ctx->{base_path} . "/opac"; # absolute base url
255     my $oils_wrapper = $self->apache->headers_in->get('OILS-Wrapper') || '';
256     $ctx->{is_staff} = ($oils_wrapper =~ /true/);
257     $ctx->{proto} = 'oils' if $ctx->{is_staff};
258     $ctx->{hostname} = 'remote' if $ctx->{is_staff};
259     $ctx->{physical_loc} = $self->get_physical_loc;
260
261     # capture some commonly accessed pages
262     $ctx->{home_page} = $ctx->{proto} . '://' . $ctx->{hostname} . $self->ctx->{opac_root} . "/home";
263     $ctx->{logout_page} = ($ctx->{proto} eq 'http' ? 'https' : $ctx->{proto} ) . '://' . $ctx->{hostname} . $self->ctx->{opac_root} . "/logout";
264
265     if($e->authtoken($self->cgi->cookie(COOKIE_SES))) {
266
267         if($e->checkauth) {
268
269             $ctx->{authtoken} = $e->authtoken;
270             $ctx->{authtime} = $e->authtime;
271             $ctx->{user} = $e->requestor;
272             $ctx->{place_unfillable} = 1 if $e->requestor->wsid && $e->allowed('PLACE_UNFILLABLE_HOLD', $e->requestor->ws_ou);
273
274             $ctx->{user_stats} = $U->simplereq(
275                 'open-ils.actor', 
276                 'open-ils.actor.user.opac.vital_stats', 
277                 $e->authtoken, $e->requestor->id);
278
279         } else {
280
281             # if we encounter a stale authtoken, call load_logout 
282             # to clean up the cookie, then redirect the user to the
283             # originally requested page
284             return $self->load_logout($self->apache->unparsed_uri);
285         }
286     }
287
288     $self->extract_copy_location_group_info;
289     $ctx->{search_ou} = $self->_get_search_lib();
290     $self->staff_saved_searches_set_expansion_state if $ctx->{is_staff};
291     $self->load_eg_cache_hash;
292     $self->load_copy_location_groups;
293     $self->staff_saved_searches_set_expansion_state if $ctx->{is_staff};
294     $self->load_search_filter_groups($ctx->{search_ou});
295     $self->load_org_util_funcs;
296
297     return Apache2::Const::OK;
298 }
299
300 sub staff_saved_searches_set_expansion_state {
301     my $self = shift;
302
303     my $param = $self->cgi->param('sss_expand');
304     my $value;
305     
306     if (defined $param) {
307         $value = ($param ? 1 : 0);
308         $self->apache->headers_out->add(
309             "Set-Cookie" => $self->cgi->cookie(
310                 -name => COOKIE_SSS_EXPAND,
311                 -path => $self->ctx->{base_path},
312                 -secure => 1,   # not strictly necessary, but this feature is staff-only, so may as well
313                 -value => $value,
314                 -expires => undef
315             )
316         );
317     } else {
318         $value = $self->cgi->cookie(COOKIE_SSS_EXPAND);
319     }
320
321     $self->ctx->{saved_searches_expanded} = $value;
322 }
323
324 # physical_loc (i.e. "original location") passed in as a URL 
325 # param will replace any existing physical_loc stored as a cookie.
326 # If specified via ENV that rules over all and we don't set cookies.
327 sub get_physical_loc {
328     my $self = shift;
329
330     return $ENV{physical_loc} if($ENV{physical_loc});
331
332     if(my $physical_loc = $self->cgi->param('physical_loc')) {
333         $self->apache->headers_out->add(
334             "Set-Cookie" => $self->cgi->cookie(
335                 -name => COOKIE_PHYSICAL_LOC,
336                 -path => $self->ctx->{base_path},
337                 -value => $physical_loc,
338                 -expires => undef
339             )
340         );
341         return $physical_loc;
342     }
343
344     return $self->cgi->cookie(COOKIE_PHYSICAL_LOC);
345 }
346
347 # -----------------------------------------------------------------------------
348 # Log in and redirect to the redirect_to URL (or home)
349 # -----------------------------------------------------------------------------
350 sub load_login {
351     my $self = shift;
352     my $cgi = $self->cgi;
353     my $ctx = $self->ctx;
354
355     $self->timelog("Load login begins");
356
357     $ctx->{page} = 'login';
358
359     my $username = $cgi->param('username');
360     $username =~ s/\s//g;  # Remove blanks
361     my $password = $cgi->param('password');
362     my $org_unit = $ctx->{physical_loc} || $ctx->{aou_tree}->()->id;
363     my $persist = $cgi->param('persist');
364
365     # initial log form only
366     return Apache2::Const::OK unless $username and $password;
367
368     my $auth_proxy_enabled = 0; # default false
369     try { # if the service is not running, just let this fail silently
370         $auth_proxy_enabled = $U->simplereq(
371             'open-ils.auth_proxy',
372             'open-ils.auth_proxy.enabled');
373     } catch Error with {};
374
375     $self->timelog("Checked for auth proxy: $auth_proxy_enabled; org = $org_unit; username = $username");
376
377     my $args = {
378         type => ($persist) ? 'persist' : 'opac',
379         org => $org_unit,
380         agent => 'opac'
381     };
382
383     my $bc_regex = $ctx->{get_org_setting}->($org_unit, 'opac.barcode_regex');
384
385     # To avoid surprises, default to "Barcodes start with digits"
386     $bc_regex = '^\d' unless $bc_regex;
387
388     if ($bc_regex and ($username =~ /$bc_regex/)) {
389         $args->{barcode} = $username;
390     } else {
391         $args->{username} = $username;
392     }
393
394     my $response;
395     if (!$auth_proxy_enabled) {
396         my $seed = $U->simplereq(
397             'open-ils.auth',
398             'open-ils.auth.authenticate.init', $username);
399         $args->{password} = md5_hex($seed . md5_hex($password));
400         $response = $U->simplereq(
401             'open-ils.auth', 'open-ils.auth.authenticate.complete', $args);
402     } else {
403         $args->{password} = $password;
404         $response = $U->simplereq(
405             'open-ils.auth_proxy',
406             'open-ils.auth_proxy.login', $args);
407     }
408     $self->timelog("Checked password");
409
410     if($U->event_code($response)) { 
411         # login failed, report the reason to the template
412         $ctx->{login_failed_event} = $response;
413         return Apache2::Const::OK;
414     }
415
416     # login succeeded, redirect as necessary
417
418     my $acct = $self->apache->unparsed_uri;
419     $acct =~ s|/login|/myopac/main|;
420
421     # both login-related cookies should expire at the same time
422     my $login_cookie_expires = ($persist) ? CORE::time + $response->{payload}->{authtime} : undef;
423
424     return $self->generic_redirect(
425         $cgi->param('redirect_to') || $acct,
426         [
427             # contains the actual auth token and should be sent only over https
428             $cgi->cookie(
429                 -name => COOKIE_SES,
430                 -path => '/',
431                 -secure => 1,
432                 -value => $response->{payload}->{authtoken},
433                 -expires => $login_cookie_expires
434             ),
435             # contains only a hint that we are logged in, and is used to
436             # trigger a redirect to https
437             $cgi->cookie(
438                 -name => COOKIE_LOGGEDIN,
439                 -path => '/',
440                 -secure => 0,
441                 -value => '1',
442                 -expires => $login_cookie_expires
443             )
444         ]
445     );
446 }
447
448 # -----------------------------------------------------------------------------
449 # Log out and redirect to the home page
450 # -----------------------------------------------------------------------------
451 sub load_logout {
452     my $self = shift;
453     my $redirect_to = shift || $self->cgi->param('redirect_to');
454
455     # If the user was adding anyting to an anonymous cache 
456     # while logged in, go ahead and clear it out.
457     $self->clear_anon_cache;
458
459     return $self->generic_redirect(
460         $redirect_to || $self->ctx->{home_page},
461         [
462             # clear value of and expire both of these login-related cookies
463             $self->cgi->cookie(
464                 -name => COOKIE_SES,
465                 -path => '/',
466                 -value => '',
467                 -expires => '-1h'
468             ),
469             $self->cgi->cookie(
470                 -name => COOKIE_LOGGEDIN,
471                 -path => '/',
472                 -value => '',
473                 -expires => '-1h'
474             )
475         ]
476     );
477 }
478
479 1;
480