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