]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/perlmods/lib/OpenILS/WWW/EGKPacLoader.pm
kpac : wire up home search; auth timeout redirect fixes
[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_rresults if $path =~ m|kpac/results|;
31     return $self->load_record(no_search => 1) if $path =~ m|kpac/record|; 
32
33     # ----------------------------------------------------------------
34     #  Everything below here requires SSL
35     # ----------------------------------------------------------------
36     return $self->redirect_ssl unless $self->cgi->https;
37
38     return $self->load_getit_results if $path =~ m|kpac/getit_results|;
39     return $self->load_getit if $path =~ m|kpac/getit|;
40
41     # ----------------------------------------------------------------
42     #  Everything below here requires authentication
43     # ----------------------------------------------------------------
44     return $self->redirect_auth unless $self->editor->requestor;
45
46     # AUTH pages
47
48     return Apache2::Const::OK;
49 }
50
51 sub load_getit {
52     my $self = shift;
53     my $ctx = $self->ctx;
54     my $rec_id = $ctx->{page_args}->[0];
55     my $bbag_id = $self->cgi->param('bookbag');
56     my $action = $self->cgi->param('action') || '';
57
58     # first load the record
59     my $stat = $self->load_record(no_search => 1);
60     return $stat unless $stat == Apache2::Const::OK;
61
62     $self->ctx->{page} = 'getit'; # repair the page
63
64     return $self->save_item_to_bookbag($rec_id, $bbag_id) if $action eq 'save';
65     return $self->login_and_place_hold($rec_id) if $action eq 'hold';
66
67     # if the user is logged in, fetch his bookbags
68     if ($ctx->{user}) {
69         $ctx->{bookbags} = $self->editor->search_container_biblio_record_entry_bucket([
70             {   owner => $ctx->{user}->id, 
71                 btype => 'bookbag' 
72             }, 
73             {   order_by => {cbreb => 'name'},
74                 limit => $self->cgi->param('bbag_limit') || 100 
75             }
76         ]);
77     }
78
79     $self->ctx->{page} = 'getit'; # repair the page
80     return Apache2::Const::OK;
81 }
82     
83 sub login_and_place_hold {
84     my $self = shift;
85     my $bre_id = shift;
86     my $ctx = $self->ctx;
87     my $username = $self->cgi->param('username');
88     my $password = $self->cgi->param('password');
89     my $pickup_lib = $self->cgi->param('pickup_lib');
90
91     if (!$ctx->{user}) {
92         # First, log the user in and return to 
93         # TODO: let user know username/password is required..
94         return Apache2::Const::OK unless $username and $password;
95         my $new_uri = $self->apache->unparsed_uri;
96         my $sep = ($new_uri =~ /\?/) ? '&' : '?';
97         $new_uri .= "${sep}pickup_lib=$pickup_lib&action=hold";
98         $self->cgi->param('redirect_to', $new_uri);
99         return $self->load_login;
100     }
101
102     # TODO: place hold
103
104     my $hold_id = '';
105 #    (my $new_uri = $self->apache->unparsed_uri) =~ s/getit/getit_results/g;
106 #    $new_uri .= ($new_uri =~ /\?/) ? "&hold=$hold_id" : "?hold=$hold_id";
107 #    return $self->generic_redirect($new_uri);
108
109     return Apache2::Const::OK;
110 }
111
112 sub save_item_to_bookbag {
113     my $self = shift;
114     my $rec_id = shift;
115     my $bookbag_id = shift;
116
117     if ($bookbag_id) { 
118         # save to existing bookbag
119         $self->cgi->param('record', $rec_id);
120         my $stat = $self->load_myopac_bookbag_update('add_rec', $bookbag_id);
121         # TODO: check for failure
122         (my $new_uri = $self->apache->unparsed_uri) =~ s/getit/getit_results/g;
123         $new_uri .= ($new_uri =~ /\?/) ? "&list=$bookbag_id" : "?list=$bookbag_id";
124         return $self->generic_redirect($new_uri);
125
126     } else { 
127         # save to anonymous list
128        
129         # set some params assumed to exist for load_mylist_add
130         $self->cgi->param('record', $rec_id);
131         (my $new_uri = $self->apache->unparsed_uri) =~ s/getit/getit_results/g;
132         $new_uri .= ($new_uri =~ /\?/) ? '&list=anon' : '?list=anon';
133         $self->cgi->param('redirect_to', $new_uri);
134
135         return $self->load_mylist_add;
136     }
137
138     return Apache2::Const::HTTP_BAD_REQUEST;
139 }
140
141
142 sub load_getit_results {
143     my $self = shift;
144     my $ctx = $self->ctx;
145     my $e = $self->editor;
146     my $list = $self->cgi->param('list');
147     my $hold_id = $self->cgi->param('hold');
148     my $rec_id = $ctx->{page_args}->[0];
149
150     my (undef, @rec_data) = $self->get_records_and_facets([$rec_id]);
151     $ctx->{bre_id} = $rec_data[0]->{id};
152     $ctx->{marc_xml} = $rec_data[0]->{marc_xml};
153
154     if ($list) {
155         if ($list eq 'anon') {
156             $ctx->{anon_list} = 1;
157         } else {
158             $ctx->{list} = $e->retrieve_container_biblio_record_entry_bucket($list);
159         }
160
161     } elsif ($hold_id) {
162
163         # new hold means potential for replication lag
164         $e->xact_start; 
165         # fetch the hold...
166         $e->xact_rollback;
167     }
168
169     return Apache2::Const::OK;
170 }
171
172 sub load_kpac_config {
173     my $self = shift;
174     my $ctx = $self->ctx;
175
176     if (!$kpac_config) {
177         my $path = $self->apache->dir_config('KPacConfigFile');
178
179         if (!$path) {
180             $self->apache->log->error("KPacConfigFile required!");
181             return;
182         }
183         
184         $kpac_config = XMLin(
185             $path,
186             KeyAttr => ['id'],
187             ForceArray => ['layout', 'page', 'cell'],
188             NormaliseSpace => 2
189         );
190     }
191
192     my $ou = $ctx->{physical_loc} || $self->_get_search_lib;
193     my $layout;
194
195     # Search up the org tree to find the nearest config for the context org unit
196     while (my $org = $ctx->{get_aou}->($ou)) {
197         ($layout) = grep {$_->{owner} eq $org->id} @{$kpac_config->{layout}};
198         last if $layout;
199         $ou = $org->parent_ou;
200     }
201
202     $ctx->{kpac_layout} = $layout;
203     $ctx->{kpac_config} = $kpac_config;
204     $ctx->{kpac_root} = $ctx->{base_path} . "/kpac"; 
205     $ctx->{home_page} = 'http://' . $self->apache->hostname . $ctx->{kpac_root} . "/home";
206 }
207
208
209 1;