]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader.pm
Merge branch 'master' of git.evergreen-ils.org:Evergreen-DocBook into doc_consolidati...
[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::Search;
23 use OpenILS::WWW::EGCatLoader::Record;
24 use OpenILS::WWW::EGCatLoader::Container;
25 use OpenILS::WWW::EGCatLoader::SMS;
26
27 my $U = 'OpenILS::Application::AppUtils';
28
29 use constant COOKIE_SES => 'ses';
30 use constant COOKIE_PHYSICAL_LOC => 'eg_physical_loc';
31 use constant COOKIE_SSS_EXPAND => 'eg_sss_expand';
32
33 use constant COOKIE_ANON_CACHE => 'anoncache';
34 use constant ANON_CACHE_MYLIST => 'mylist';
35 use constant ANON_CACHE_STAFF_SEARCH => 'staffsearch';
36
37 use constant DEBUG_TIMING => 0;
38
39 sub new {
40     my($class, $apache, $ctx) = @_;
41
42     my $self = bless({}, ref($class) || $class);
43
44     $self->apache($apache);
45     $self->ctx($ctx);
46     $self->cgi(new CGI);
47     $self->timelog("New page");
48
49     OpenILS::Utils::CStoreEditor->init; # just in case
50     $self->editor(new_editor());
51
52     return $self;
53 }
54
55
56 # current Apache2::RequestRec;
57 sub apache {
58     my($self, $apache) = @_;
59     $self->{apache} = $apache if $apache;
60     return $self->{apache};
61 }
62
63 # runtime / template context
64 sub ctx {
65     my($self, $ctx) = @_;
66     $self->{ctx} = $ctx if $ctx;
67     return $self->{ctx};
68 }
69
70 # cstore editor
71 sub editor {
72     my($self, $editor) = @_;
73     $self->{editor} = $editor if $editor;
74     return $self->{editor};
75 }
76
77 # CGI handle
78 sub cgi {
79     my($self, $cgi) = @_;
80     $self->{cgi} = $cgi if $cgi;
81     return $self->{cgi};
82 }
83
84 sub timelog {
85     my($self, $description) = @_;
86
87     return unless DEBUG_TIMING;
88     return unless $description;
89     $self->ctx->{timing} ||= [];
90     
91     my $timer = [Time::HiRes::gettimeofday()];
92     $self->ctx->{time_begin} ||= $timer;
93
94     push @{$self->ctx->{timing}}, [
95         Time::HiRes::tv_interval($self->ctx->{time_begin}, $timer), $description
96     ];
97 }
98
99 # -----------------------------------------------------------------------------
100 # Perform initial setup, load common data, then load page data
101 # -----------------------------------------------------------------------------
102 sub load {
103     my $self = shift;
104
105     $self->init_ro_object_cache;
106     $self->timelog("Initial load");
107
108     my $stat = $self->load_common;
109     return $stat unless $stat == Apache2::Const::OK;
110
111     my $path = $self->apache->path_info;
112
113     (undef, $self->ctx->{mylist}) = $self->fetch_mylist unless
114         $path =~ /opac\/my(opac\/lists|list)/;
115
116     return $self->load_simple("home") if $path =~ m|opac/home|;
117     return $self->load_simple("advanced") if
118         $path =~ m:opac/(advanced|numeric|expert):;
119
120     return $self->load_rresults if $path =~ m|opac/results|;
121     return $self->load_print_record if $path =~ m|opac/record/print|;
122     return $self->load_record if $path =~ m|opac/record/\d|;
123     return $self->load_cnbrowse if $path =~ m|opac/cnbrowse|;
124
125     return $self->load_mylist_add if $path =~ m|opac/mylist/add|;
126     return $self->load_mylist_delete if $path =~ m|opac/mylist/delete|;
127     return $self->load_mylist_move if $path =~ m|opac/mylist/move|;
128     return $self->load_mylist if $path =~ m|opac/mylist|;
129     return $self->load_cache_clear if $path =~ m|opac/cache/clear|;
130
131     # ----------------------------------------------------------------
132     #  Everything below here requires SSL
133     # ----------------------------------------------------------------
134     return $self->redirect_ssl unless $self->cgi->https;
135     return $self->load_password_reset if $path =~ m|opac/password_reset|;
136     return $self->load_logout if $path =~ m|opac/logout|;
137
138     if($path =~ m|opac/login|) {
139         return $self->load_login unless $self->editor->requestor; # already logged in?
140
141         # This will be less confusing to users than to be shown a login form
142         # when they're already logged in.
143         return $self->generic_redirect(
144             sprintf(
145                 "https://%s%s/myopac/main",
146                 $self->apache->hostname, $self->ctx->{opac_root}
147             )
148         );
149     }
150
151     if ($path =~ m|opac/sms_cn| and !$self->editor->requestor) {
152         my $org_unit = $self->ctx->{physical_loc} || $self->cgi->param('loc') || $self->ctx->{aou_tree}->()->id;
153         my $skip_sms_auth = $self->ctx->{get_org_setting}->($org_unit, 'sms.disable_authentication_requirement.callnumbers');
154         return $self->load_sms_cn if $skip_sms_auth;
155     }
156
157     # ----------------------------------------------------------------
158     #  Everything below here requires authentication
159     # ----------------------------------------------------------------
160     return $self->redirect_auth unless $self->editor->requestor;
161
162     return $self->load_email_record if $path =~ m|opac/record/email|;
163
164     return $self->load_place_hold if $path =~ m|opac/place_hold|;
165     return $self->load_myopac_holds if $path =~ m|opac/myopac/holds|;
166     return $self->load_myopac_circs if $path =~ m|opac/myopac/circs|;
167     return $self->load_myopac_payment_form if $path =~ m|opac/myopac/main_payment_form|;
168     return $self->load_myopac_payments if $path =~ m|opac/myopac/main_payments|;
169     return $self->load_myopac_pay_init if $path =~ m|opac/myopac/main_pay_init|;
170     return $self->load_myopac_pay if $path =~ m|opac/myopac/main_pay|;
171     return $self->load_myopac_main if $path =~ m|opac/myopac/main|;
172     return $self->load_myopac_receipt_email if $path =~ m|opac/myopac/receipt_email|;
173     return $self->load_myopac_receipt_print if $path =~ m|opac/myopac/receipt_print|;
174     return $self->load_myopac_update_email if $path =~ m|opac/myopac/update_email|;
175     return $self->load_myopac_update_password if $path =~ m|opac/myopac/update_password|;
176     return $self->load_myopac_update_username if $path =~ m|opac/myopac/update_username|;
177     return $self->load_myopac_bookbags if $path =~ m|opac/myopac/lists|;
178     return $self->load_myopac_bookbag_print if $path =~ m|opac/myopac/list/print|;
179     return $self->load_myopac_bookbag_update if $path =~ m|opac/myopac/list/update|;
180     return $self->load_myopac_circ_history_export if $path =~ m|opac/myopac/circ_history/export|;
181     return $self->load_myopac_circ_history if $path =~ m|opac/myopac/circ_history|;
182     return $self->load_myopac_hold_history if $path =~ m|opac/myopac/hold_history|;
183     return $self->load_myopac_prefs_notify if $path =~ m|opac/myopac/prefs_notify|;
184     return $self->load_myopac_prefs_settings if $path =~ m|opac/myopac/prefs_settings|;
185     return $self->load_myopac_prefs if $path =~ m|opac/myopac/prefs|;
186     return $self->load_sms_cn if $path =~ m|opac/sms_cn|;
187
188     return Apache2::Const::OK;
189 }
190
191
192 # -----------------------------------------------------------------------------
193 # Redirect to SSL equivalent of a given page
194 # -----------------------------------------------------------------------------
195 sub redirect_ssl {
196     my $self = shift;
197     my $new_page = sprintf('https://%s%s', $self->apache->hostname, $self->apache->unparsed_uri);
198     return $self->generic_redirect($new_page);
199 }
200
201 # -----------------------------------------------------------------------------
202 # If an authnticated resource is requested w/o auth, redirect to the login page,
203 # then return to the originally requrested resource upon successful login.
204 # -----------------------------------------------------------------------------
205 sub redirect_auth {
206     my $self = shift;
207     my $login_page = sprintf('https://%s%s/login', $self->apache->hostname, $self->ctx->{opac_root});
208     my $redirect_to = uri_escape($self->apache->unparsed_uri);
209     return $self->generic_redirect("$login_page?redirect_to=$redirect_to");
210 }
211
212 # -----------------------------------------------------------------------------
213 # Fall-through for loading a basic page
214 # -----------------------------------------------------------------------------
215 sub load_simple {
216     my ($self, $page) = @_;
217     $self->ctx->{page} = $page;
218     $self->ctx->{search_ou} = $self->_get_search_lib();
219
220     return Apache2::Const::OK;
221 }
222
223 # -----------------------------------------------------------------------------
224 # Tests to see if the user is authenticated and sets some common context values
225 # -----------------------------------------------------------------------------
226 sub load_common {
227     my $self = shift;
228
229     my $e = $self->editor;
230     my $ctx = $self->ctx;
231
232     $ctx->{referer} = $self->cgi->referer;
233     $ctx->{path_info} = $self->cgi->path_info;
234     $ctx->{full_path} = $ctx->{base_path} . $self->cgi->path_info;
235     $ctx->{unparsed_uri} = $self->apache->unparsed_uri;
236     $ctx->{opac_root} = $ctx->{base_path} . "/opac"; # absolute base url
237     $ctx->{is_staff} = 0; # Assume false, check for workstation id later.  Was: ($self->apache->headers_in->get('User-Agent') =~ /oils_xulrunner/);
238     $ctx->{physical_loc} = $self->get_physical_loc;
239
240     # capture some commonly accessed pages
241     $ctx->{home_page} = 'http://' . $self->apache->hostname . $self->ctx->{opac_root} . "/home";
242     $ctx->{logout_page} = 'https://' . $self->apache->hostname . $self->ctx->{opac_root} . "/logout";
243
244     if($e->authtoken($self->cgi->cookie(COOKIE_SES))) {
245
246         if($e->checkauth) {
247
248             $ctx->{authtoken} = $e->authtoken;
249             $ctx->{authtime} = $e->authtime;
250             $ctx->{user} = $e->requestor;
251
252             $ctx->{user_stats} = $U->simplereq(
253                 'open-ils.actor', 
254                 'open-ils.actor.user.opac.vital_stats', 
255                 $e->authtoken, $e->requestor->id);
256             $ctx->{is_staff} = 1 if $e->requestor->wsid;
257
258         } else {
259
260             # if we encounter a stale authtoken, call load_logout 
261             # to clean up the cookie, then redirect the user to the
262             # originally requested page
263             return $self->load_logout($self->apache->unparsed_uri);
264         }
265     }
266
267     $self->extract_copy_location_group_info;
268     $ctx->{search_ou} = $self->_get_search_lib();
269     $self->staff_saved_searches_set_expansion_state if $ctx->{is_staff};
270     $self->load_eg_cache_hash;
271     $self->load_copy_location_groups;
272     $self->staff_saved_searches_set_expansion_state if $ctx->{is_staff};
273     $self->load_search_filter_groups($ctx->{search_ou});
274
275     return Apache2::Const::OK;
276 }
277
278 sub staff_saved_searches_set_expansion_state {
279     my $self = shift;
280
281     my $param = $self->cgi->param('sss_expand');
282     my $value;
283     
284     if (defined $param) {
285         $value = ($param ? 1 : 0);
286         $self->apache->headers_out->add(
287             "Set-Cookie" => $self->cgi->cookie(
288                 -name => COOKIE_SSS_EXPAND,
289                 -path => $self->ctx->{base_path},
290                 -secure => 1,   # not strictly necessary, but this feature is staff-only, so may as well
291                 -value => $value,
292                 -expires => undef
293             )
294         );
295     } else {
296         $value = $self->cgi->cookie(COOKIE_SSS_EXPAND);
297     }
298
299     $self->ctx->{saved_searches_expanded} = $value;
300 }
301
302 # physical_loc (i.e. "original location") passed in as a URL 
303 # param will replace any existing physical_loc stored as a cookie.
304 sub get_physical_loc {
305     my $self = shift;
306
307     if(my $physical_loc = $self->cgi->param('physical_loc')) {
308         $self->apache->headers_out->add(
309             "Set-Cookie" => $self->cgi->cookie(
310                 -name => COOKIE_PHYSICAL_LOC,
311                 -path => $self->ctx->{base_path},
312                 -value => $physical_loc,
313                 -expires => undef
314             )
315         );
316         return $physical_loc;
317     }
318
319     return $self->cgi->cookie(COOKIE_PHYSICAL_LOC);
320 }
321
322 # -----------------------------------------------------------------------------
323 # Log in and redirect to the redirect_to URL (or home)
324 # -----------------------------------------------------------------------------
325 sub load_login {
326     my $self = shift;
327     my $cgi = $self->cgi;
328     my $ctx = $self->ctx;
329
330     $ctx->{page} = 'login';
331
332     my $username = $cgi->param('username');
333     my $password = $cgi->param('password');
334     my $org_unit = $cgi->param('loc') || $ctx->{aou_tree}->()->id;
335     my $persist = $cgi->param('persist');
336
337     # initial log form only
338     return Apache2::Const::OK unless $username and $password;
339
340         my $seed = $U->simplereq(
341         'open-ils.auth', 
342                 'open-ils.auth.authenticate.init', $username);
343
344     my $args = {        
345         username => $username, 
346         password => md5_hex($seed . md5_hex($password)), 
347         type => ($persist) ? 'persist' : 'opac',
348         agent => 'opac'
349     };
350
351     my $bc_regex = $ctx->{get_org_setting}->($org_unit, 'opac.barcode_regex');
352
353     # To avoid surprises, default to "Barcodes start with digits"
354     $bc_regex = '^\d' unless $bc_regex;
355
356     $args->{barcode} = delete $args->{username} 
357         if $bc_regex and ($username =~ /$bc_regex/);
358
359         my $response = $U->simplereq(
360         'open-ils.auth', 'open-ils.auth.authenticate.complete', $args);
361
362     if($U->event_code($response)) { 
363         # login failed, report the reason to the template
364         $ctx->{login_failed_event} = $response;
365         return Apache2::Const::OK;
366     }
367
368     # login succeeded, redirect as necessary
369
370     my $acct = $self->apache->unparsed_uri;
371     $acct =~ s|/login|/myopac/main|;
372
373     return $self->generic_redirect(
374         $cgi->param('redirect_to') || $acct,
375         $cgi->cookie(
376             -name => COOKIE_SES,
377             -path => '/',
378             -secure => 1,
379             -value => $response->{payload}->{authtoken},
380             -expires => ($persist) ? CORE::time + $response->{payload}->{authtime} : undef
381         )
382     );
383 }
384
385 # -----------------------------------------------------------------------------
386 # Log out and redirect to the home page
387 # -----------------------------------------------------------------------------
388 sub load_logout {
389     my $self = shift;
390     my $redirect_to = shift;
391
392     # If the user was adding anyting to an anonymous cache 
393     # while logged in, go ahead and clear it out.
394     $self->clear_anon_cache;
395
396     return $self->generic_redirect(
397         $redirect_to || $self->ctx->{home_page},
398         $self->cgi->cookie(
399             -name => COOKIE_SES,
400             -path => '/',
401             -value => '',
402             -expires => '-1h'
403         )
404     );
405 }
406
407 1;
408