]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader.pm
TPac: Barcodes default to starting with digits
[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
274     return Apache2::Const::OK;
275 }
276
277 sub staff_saved_searches_set_expansion_state {
278     my $self = shift;
279
280     my $param = $self->cgi->param('sss_expand');
281     my $value;
282     
283     if (defined $param) {
284         $value = ($param ? 1 : 0);
285         $self->apache->headers_out->add(
286             "Set-Cookie" => $self->cgi->cookie(
287                 -name => COOKIE_SSS_EXPAND,
288                 -path => $self->ctx->{base_path},
289                 -secure => 1,   # not strictly necessary, but this feature is staff-only, so may as well
290                 -value => $value,
291                 -expires => undef
292             )
293         );
294     } else {
295         $value = $self->cgi->cookie(COOKIE_SSS_EXPAND);
296     }
297
298     $self->ctx->{saved_searches_expanded} = $value;
299 }
300
301 # physical_loc (i.e. "original location") passed in as a URL 
302 # param will replace any existing physical_loc stored as a cookie.
303 sub get_physical_loc {
304     my $self = shift;
305
306     if(my $physical_loc = $self->cgi->param('physical_loc')) {
307         $self->apache->headers_out->add(
308             "Set-Cookie" => $self->cgi->cookie(
309                 -name => COOKIE_PHYSICAL_LOC,
310                 -path => $self->ctx->{base_path},
311                 -value => $physical_loc,
312                 -expires => undef
313             )
314         );
315         return $physical_loc;
316     }
317
318     return $self->cgi->cookie(COOKIE_PHYSICAL_LOC);
319 }
320
321 # -----------------------------------------------------------------------------
322 # Log in and redirect to the redirect_to URL (or home)
323 # -----------------------------------------------------------------------------
324 sub load_login {
325     my $self = shift;
326     my $cgi = $self->cgi;
327     my $ctx = $self->ctx;
328
329     $ctx->{page} = 'login';
330
331     my $username = $cgi->param('username');
332     my $password = $cgi->param('password');
333     my $org_unit = $cgi->param('loc') || $ctx->{aou_tree}->()->id;
334     my $persist = $cgi->param('persist');
335
336     # initial log form only
337     return Apache2::Const::OK unless $username and $password;
338
339         my $seed = $U->simplereq(
340         'open-ils.auth', 
341                 'open-ils.auth.authenticate.init', $username);
342
343     my $args = {        
344         username => $username, 
345         password => md5_hex($seed . md5_hex($password)), 
346         type => ($persist) ? 'persist' : 'opac',
347         agent => 'opac'
348     };
349
350     my $bc_regex = $ctx->{get_org_setting}->($org_unit, 'opac.barcode_regex');
351
352     # To avoid surprises, default to "Barcodes start with digits"
353     $bc_regex = '^\d' unless $bc_regex;
354
355     $args->{barcode} = delete $args->{username} 
356         if $bc_regex and ($username =~ /$bc_regex/);
357
358         my $response = $U->simplereq(
359         'open-ils.auth', 'open-ils.auth.authenticate.complete', $args);
360
361     if($U->event_code($response)) { 
362         # login failed, report the reason to the template
363         $ctx->{login_failed_event} = $response;
364         return Apache2::Const::OK;
365     }
366
367     # login succeeded, redirect as necessary
368
369     my $acct = $self->apache->unparsed_uri;
370     $acct =~ s|/login|/myopac/main|;
371
372     return $self->generic_redirect(
373         $cgi->param('redirect_to') || $acct,
374         $cgi->cookie(
375             -name => COOKIE_SES,
376             -path => '/',
377             -secure => 1,
378             -value => $response->{payload}->{authtoken},
379             -expires => ($persist) ? CORE::time + $response->{payload}->{authtime} : undef
380         )
381     );
382 }
383
384 # -----------------------------------------------------------------------------
385 # Log out and redirect to the home page
386 # -----------------------------------------------------------------------------
387 sub load_logout {
388     my $self = shift;
389     my $redirect_to = shift;
390
391     # If the user was adding anyting to an anonymous cache 
392     # while logged in, go ahead and clear it out.
393     $self->clear_anon_cache;
394
395     return $self->generic_redirect(
396         $redirect_to || $self->ctx->{home_page},
397         $self->cgi->cookie(
398             -name => COOKIE_SES,
399             -path => '/',
400             -value => '',
401             -expires => '-1h'
402         )
403     );
404 }
405
406 1;
407