]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/perlmods/lib/OpenILS/WWW/EGKPacLoader.pm
kpac: save to anon-list
[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 DECLINED FORBIDDEN HTTP_INTERNAL_SERVER_ERROR REDIRECT 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_simple("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
66     # if the user is logged in, fetch his bookbags
67     if ($ctx->{user}) {
68         $ctx->{bookbags} = $self->editor->search_container_biblio_record_entry_bucket(
69             [{
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 save_item_to_bookbag {
84     my $self = shift;
85     my $rec_id = shift;
86     my $bookbag_id = shift;
87
88     if ($bookbag_id) { 
89         # save to existing bookbag
90
91     } else { 
92         # save to anonymous list
93        
94         # set some params assumed to exist for load_mylist_add
95         $self->cgi->param('record', $rec_id);
96         (my $new_uri = $self->apache->unparsed_uri) =~ s/getit/getit_results/g;
97         $self->cgi->param('redirect_to', $new_uri);
98
99         $self->load_mylist_add;
100     }
101
102     return Apache2::Const::OK;
103 }
104
105 sub load_kpac_config {
106     my $self = shift;
107
108     if (!$kpac_config) {
109         my $path = $self->apache->dir_config('KPacConfigFile');
110
111         if (!$path) {
112             $self->apache->log->error("KPacConfigFile required!");
113             return;
114         }
115         
116         $kpac_config = XMLin(
117             $path,
118             KeyAttr => ['id'],
119             ForceArray => ['layout', 'page', 'cell'],
120             NormaliseSpace => 2
121         );
122     }
123
124     my $ou = $self->ctx->{physical_loc} || $self->_get_search_lib;
125     my $layout;
126
127     # Search up the org tree to find the nearest config for the context org unit
128     while (my $org = $self->ctx->{get_aou}->($ou)) {
129         ($layout) = grep {$_->{owner} eq $org->id} @{$kpac_config->{layout}};
130         last if $layout;
131         $ou = $org->parent_ou;
132     }
133
134     $self->ctx->{kpac_layout} = $layout;
135     $self->ctx->{kpac_config} = $kpac_config;
136     $self->ctx->{kpac_root} = $self->ctx->{base_path} . "/kpac"; 
137 }
138
139
140 1;