]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/perlmods/lib/OpenILS/WWW/EGKPacLoader.pm
Begin enabling KPAC-branded library info page
[working/Evergreen.git] / Open-ILS / src / perlmods / lib / OpenILS / WWW / EGKPacLoader.pm
1 package OpenILS::WWW::EGKPacLoader;
2 use base 'OpenILS::WWW::EGCatLoader';
3 use strict; use warnings;
4 use XML::Simple;
5 use Apache2::Const -compile => qw(OK HTTP_BAD_REQUEST);
6 use OpenSRF::Utils::Logger qw/$logger/;
7 use OpenILS::Application::AppUtils;
8 use OpenILS::Utils::CStoreEditor qw/:funcs/;
9 my $U = 'OpenILS::Application::AppUtils';
10 my $kpac_config;
11
12 # -----------------------------------------------------------------------------
13 # Override our parent's load() sub so we can do kpac-specific path routing.
14 # -----------------------------------------------------------------------------
15 sub load {
16     my $self = shift;
17
18     $self->init_ro_object_cache; 
19
20     my $stat = $self->load_common; 
21     return $stat unless $stat == Apache2::Const::OK;
22
23     $self->load_kpac_config;
24
25     my $path = $self->apache->path_info;
26     ($self->ctx->{page} = $path) =~ s#.*/(.*)#$1#g;
27
28     return $self->load_simple("home") if $path =~ m|kpac/home|;
29     return $self->load_simple("category") if $path =~ m|kpac/category|;
30     return $self->load_kpac_rresults if $path =~ m|kpac/results|;
31     return $self->load_record(no_search => 1) if $path =~ m|kpac/record|; 
32     return $self->load_library if $path =~ m|kpac/library|;
33
34     # ----------------------------------------------------------------
35     #  Everything below here requires SSL
36     # ----------------------------------------------------------------
37     return $self->redirect_ssl unless $self->cgi->https;
38
39     return $self->load_getit_results if $path =~ m|kpac/getit_results|;
40     return $self->load_getit if $path =~ m|kpac/getit|;
41
42     # ----------------------------------------------------------------
43     #  Everything below here requires authentication
44     # ----------------------------------------------------------------
45     return $self->redirect_auth unless $self->editor->requestor;
46
47     # AUTH pages
48
49     return Apache2::Const::OK;
50 }
51
52 sub load_kpac_rresults {
53     my $self = shift;
54
55     # The redirect-to-record-details-on-single-hit logic
56     # leverages the opac_root to determine the record detail
57     # page.  Replace it temporarily for our purposes.
58     my $tpac_root = $self->ctx->{opac_root};
59     $self->ctx->{opac_root} = $self->ctx->{kpac_root};
60
61     my $stat = $self->load_rresults;
62     $self->ctx->{opac_root} = $tpac_root;
63
64     return $stat;
65 }
66
67 sub load_getit {
68     my $self = shift;
69     my $ctx = $self->ctx;
70     my $rec_id = $ctx->{page_args}->[0];
71     my $bbag_id = $self->cgi->param('bookbag');
72     my $action = $self->cgi->param('action') || '';
73
74     # first load the record
75     my $stat = $self->load_record(no_search => 1);
76     return $stat unless $stat == Apache2::Const::OK;
77
78     $self->ctx->{page} = 'getit'; # repair the page
79
80     return $self->save_item_to_bookbag($rec_id, $bbag_id) if $action eq 'save';
81     return $self->login_and_place_hold($rec_id) if $action eq 'hold';
82
83     # if the user is logged in, fetch his bookbags
84     if ($ctx->{user}) {
85         $ctx->{bookbags} = $self->editor->search_container_biblio_record_entry_bucket([
86             {   owner => $ctx->{user}->id, 
87                 btype => 'bookbag' 
88             }, 
89             {   order_by => {cbreb => 'name'},
90                 limit => $self->cgi->param('bbag_limit') || 100 
91             }
92         ]);
93     }
94
95     $self->ctx->{page} = 'getit'; # repair the page
96     return Apache2::Const::OK;
97 }
98     
99 sub login_and_place_hold {
100     my $self = shift;
101     my $bre_id = shift;
102     my $ctx = $self->ctx;
103     my $username = $self->cgi->param('username');
104     my $password = $self->cgi->param('password');
105     my $pickup_lib = $self->cgi->param('pickup_lib');
106
107     return Apache2::Const::HTTP_BAD_REQUEST 
108         unless $pickup_lib =~ /^\d+$/;
109
110     my $new_uri = $self->apache->unparsed_uri;
111     my $sep = ($new_uri =~ /\?/) ? '&' : '?';
112
113     if (!$ctx->{user}) {
114         # First, log the user in and return to 
115         $self->apache->log->info("kpac: logging in $username");
116
117         # TODO: let user know username/password is required..
118         return Apache2::Const::OK unless $username and $password;
119
120         $new_uri .= "${sep}pickup_lib=$pickup_lib&action=hold";
121         $self->cgi->param('redirect_to', $new_uri);
122         return $self->load_login;
123
124     } else {
125
126         $self->apache->log->info("kpac: placing hold for $bre_id");
127
128         $new_uri =~ s/getit/getit_results/g;
129         $self->cgi->param('hold_target', $bre_id);
130         $self->cgi->param('hold_type', 'T');
131         $self->cgi->param('part', ''); # needed even if unused
132
133         my $stat = $self->load_place_hold;
134
135         $self->apache->log->info("kpac: place hold returned $stat");
136
137         return $stat unless $stat == Apache2::Const::OK;
138
139         my $hdata = $ctx->{hold_data}->[0]; # only 1 hold placed
140         if (my $hold_id = $hdata ? $hdata->{hold_success} : undef) {
141
142             $self->apache->log->info("kpac: place hold succeeded");
143             $new_uri .= "${sep}hold=$hold_id";
144
145         } else {
146             $self->apache->log->info("kpac: place hold failed : " . $ctx->{hold_failed_event});
147             $new_uri .= "${sep}hold_failed=1";
148         }
149     }
150
151     $self->apache->log->info("kpac: place hold redirecting to: $new_uri");
152     return $self->generic_redirect($new_uri);
153 }
154
155 sub save_item_to_bookbag {
156     my $self = shift;
157     my $rec_id = shift;
158     my $bookbag_id = shift;
159
160     if ($bookbag_id) { 
161         # save to existing bookbag
162         $self->cgi->param('record', $rec_id);
163         my $stat = $self->load_myopac_bookbag_update('add_rec', $bookbag_id);
164         # TODO: check for failure
165         (my $new_uri = $self->apache->unparsed_uri) =~ s/getit/getit_results/g;
166         $new_uri .= ($new_uri =~ /\?/) ? "&list=$bookbag_id" : "?list=$bookbag_id";
167         return $self->generic_redirect($new_uri);
168
169     } else { 
170         # save to anonymous list
171        
172         # set some params assumed to exist for load_mylist_add
173         $self->cgi->param('record', $rec_id);
174         (my $new_uri = $self->apache->unparsed_uri) =~ s/getit/getit_results/g;
175         $new_uri .= ($new_uri =~ /\?/) ? '&list=anon' : '?list=anon';
176         $self->cgi->param('redirect_to', $new_uri);
177
178         return $self->load_mylist_add;
179     }
180
181     return Apache2::Const::HTTP_BAD_REQUEST;
182 }
183
184
185 sub load_getit_results {
186     my $self = shift;
187     my $ctx = $self->ctx;
188     my $e = $self->editor;
189     my $list = $self->cgi->param('list');
190     my $hold_id = $self->cgi->param('hold');
191     my $rec_id = $ctx->{page_args}->[0];
192
193     my (undef, @rec_data) = $self->get_records_and_facets([$rec_id]);
194     $ctx->{bre_id} = $rec_data[0]->{id};
195     $ctx->{marc_xml} = $rec_data[0]->{marc_xml};
196
197     if ($list) {
198         if ($list eq 'anon') {
199             $ctx->{added_to_anon} = 1;
200         } else {
201             $ctx->{added_to_list} = $e->retrieve_container_biblio_record_entry_bucket($list);
202         }
203     } else { 
204         $e->xact_begin;
205         $ctx->{hold} = $e->retrieve_action_hold_request($hold_id);
206         $e->xact_rollback;
207     }
208
209     return Apache2::Const::OK;
210 }
211
212 sub load_kpac_config {
213     my $self = shift;
214     my $ctx = $self->ctx;
215
216     if (!$kpac_config) {
217         my $path = $self->apache->dir_config('KPacConfigFile');
218
219         if (!$path) {
220             $self->apache->log->error("KPacConfigFile required!");
221             return;
222         }
223         
224         $kpac_config = XMLin(
225             $path,
226             KeyAttr => ['id'],
227             ForceArray => ['layout', 'page', 'cell'],
228             NormaliseSpace => 2
229         );
230     }
231
232     my $ou = $ctx->{physical_loc} || $self->_get_search_lib;
233     my $layout;
234
235     # Search up the org tree to find the nearest config for the context org unit
236     while (my $org = $ctx->{get_aou}->($ou)) {
237         ($layout) = grep {$_->{owner} eq $org->id} @{$kpac_config->{layout}};
238         last if $layout;
239         $ou = $org->parent_ou;
240     }
241
242     $ctx->{kpac_layout} = $layout;
243     $ctx->{kpac_config} = $kpac_config;
244     $ctx->{kpac_root} = $ctx->{base_path} . "/kpac"; 
245     $ctx->{home_page} = $ctx->{proto} . '://' . $ctx->{hostname} . $ctx->{kpac_root} . "/home";
246     $ctx->{global_search_filter} = $kpac_config->{global_filter};
247 }
248
249
250 1;