]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/perlmods/lib/OpenILS/WWW/EGWeb.pm
Templatize TPAC styles
[Evergreen.git] / Open-ILS / src / perlmods / lib / OpenILS / WWW / EGWeb.pm
1 package OpenILS::WWW::EGWeb;
2 use strict; use warnings;
3 use Template;
4 use XML::Simple;
5 use XML::LibXML;
6 use File::stat;
7 use Encode;
8 use Apache2::Const -compile => qw(OK DECLINED HTTP_INTERNAL_SERVER_ERROR);
9 use Apache2::Log;
10 use OpenSRF::EX qw(:try);
11 use OpenILS::Utils::CStoreEditor q/:funcs/;
12 use List::MoreUtils qw/uniq/;
13
14 use constant OILS_HTTP_COOKIE_SKIN => 'eg_skin';
15 use constant OILS_HTTP_COOKIE_THEME => 'eg_theme';
16 use constant OILS_HTTP_COOKIE_LOCALE => 'eg_locale';
17
18 # cache string bundles
19 my %registered_locales;
20
21 sub handler {
22     my $r = shift;
23     my $ctx = load_context($r);
24     my $base = $ctx->{base_path};
25
26     my($template, $page_args, $as_xml) = find_template($r, $base, $ctx);
27     $ctx->{page_args} = $page_args;
28
29     my $stat = run_context_loader($r, $ctx);
30
31     return $stat unless $stat == Apache2::Const::OK;
32     return Apache2::Const::DECLINED unless $template;
33
34     my $text_handler = set_text_handler($ctx, $r);
35
36     my $tt = Template->new({
37         ENCODING => 'utf-8',
38         OUTPUT => ($as_xml) ?  sub { parse_as_xml($r, $ctx, @_); } : $r,
39         INCLUDE_PATH => $ctx->{template_paths},
40         DEBUG => $ctx->{debug_template},
41         PLUGINS => {
42             EGI18N => 'OpenILS::WWW::EGWeb::I18NFilter',
43             CGI_utf8 => 'OpenILS::WWW::EGWeb::CGI_utf8'
44         },
45         FILTERS => {
46             # Register a dynamic filter factory for our locale::maketext generator
47             l => [
48                 sub {
49                     my($ctx, @args) = @_;
50                     return sub { $text_handler->(shift(), @args); }
51                 }, 1
52             ]
53         }
54     });
55
56     if (!$tt) {
57         $r->log->error("Error creating template processor: $@");
58         return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
59     }   
60
61     $ctx->{encode_utf8} = sub {return encode_utf8(shift())};
62
63     unless($tt->process($template, {ctx => $ctx, ENV => \%ENV, l => $text_handler})) {
64         $r->log->warn('egweb: template error: ' . $tt->error);
65         return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
66     }
67
68     return Apache2::Const::OK;
69 }
70
71 sub set_text_handler {
72     my $ctx = shift;
73     my $r = shift;
74
75     my $locale = $ctx->{locale};
76
77     $r->log->debug("egweb: messages locale = $locale");
78
79     return sub {
80         my $lh = OpenILS::WWW::EGWeb::I18N->get_handle($locale);
81         return $lh->maketext(@_);
82     };
83 }
84
85
86
87 sub run_context_loader {
88     my $r = shift;
89     my $ctx = shift;
90
91     my $stat = Apache2::Const::OK;
92
93     my $loader = $r->dir_config('OILSWebContextLoader');
94     return $stat unless $loader;
95
96     eval {
97         $loader->use;
98         $stat = $loader->new($r, $ctx)->load;
99     };
100
101     if($@) {
102         $r->log->error("egweb: Context Loader error: $@");
103         return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
104     }
105
106     $r->log->debug("egweb: context loader resulted in status $stat");
107     return $stat;
108 }
109
110 sub parse_as_xml {
111     my $r = shift;
112     my $ctx = shift;
113     my $data = shift;
114
115     my $success = 0;
116
117     try { 
118         my $doc = XML::LibXML->new->parse_string($data); 
119         $data = $doc->documentElement->toStringC14N;
120         $data = $ctx->{final_dtd} . "\n" . $data;
121         $success = 1;
122     } otherwise {
123             my $e = shift;
124         my $err = "Invalid XML: $e";
125         $r->log->error("egweb: $err");
126         $r->content_type('text/plain; encoding=utf8');
127         $r->print("\n$err\n\n$data");
128     };
129
130     $r->print($data) if ($success);
131 }
132
133 sub load_context {
134     my $r = shift;
135     my $cgi = CGI->new;
136     my $ctx = {}; # new context for each page load
137
138     $ctx->{base_path} = $r->dir_config('OILSWebBasePath');
139     $ctx->{web_dir} = $r->dir_config('OILSWebWebDir');
140     $ctx->{debug_template} = ($r->dir_config('OILSWebDebugTemplate') =~ /true/io);
141     $ctx->{media_prefix} = $r->dir_config('OILSWebMediaPrefix');
142     $ctx->{hostname} = $r->hostname;
143     $ctx->{base_url} = $cgi->url(-base => 1);
144     $ctx->{skin} = $cgi->cookie(OILS_HTTP_COOKIE_SKIN) || 'default';
145     $ctx->{theme} = $cgi->cookie(OILS_HTTP_COOKIE_THEME) || 'default';
146     $ctx->{proto} = $cgi->https ? 'https' : 'http';
147
148     my @template_paths = uniq $r->dir_config->get('OILSWebTemplatePath');
149     $ctx->{template_paths} = [ reverse @template_paths ];
150
151     my %locales = $r->dir_config->get('OILSWebLocale');
152     load_locale_handlers($ctx, %locales);
153
154     $ctx->{locales} = \%registered_locales;
155
156     # Set a locale cookie if the requested locale is valid
157     my $set_locale = $cgi->param('set_eg_locale');
158     if (!(grep {$_ eq $set_locale} keys %registered_locales)) {
159         $set_locale = '';
160     } else {
161         my $slc = $cgi->cookie({
162             '-name' => OILS_HTTP_COOKIE_LOCALE,
163             '-value' => $set_locale,
164             '-expires' => '+10y'
165         });
166         $r->headers_out->add('Set-Cookie' => $slc);
167     }
168
169     $ctx->{locale} = $set_locale ||
170         $cgi->cookie(OILS_HTTP_COOKIE_LOCALE) || 
171         parse_accept_lang($r->headers_in->get('Accept-Language')) || 'en_us';
172
173     my $mprefix = $ctx->{media_prefix};
174     if($mprefix and $mprefix !~ /^http/ and $mprefix !~ /^\//) {
175         # if a hostname is provided /w no protocol, match the protocol to the current page
176         $ctx->{media_prefix} = ($cgi->https) ? "https://$mprefix" : "http://$mprefix";
177     }
178
179     return $ctx;
180 }
181
182 # turn Accept-Language into sometihng EG can understand
183 # TODO: try all langs, not just the first
184 sub parse_accept_lang {
185     my $al = shift;
186     return undef unless $al;
187     my ($locale) = split(/,/, $al);
188     ($locale) = split(/;/, $locale);
189     return undef unless $locale;
190     $locale =~ s/-/_/og;
191     return $locale;
192 }
193
194 # Given a URI, finds the configured template and any extra page 
195 # arguments (trailing path info).  Any extra data is returned
196 # as page arguments, in the form of an array, one item per 
197 # /-separated URI component
198 sub find_template {
199     my $r = shift;
200     my $base = shift;
201     my $ctx = shift;
202     my $path = $r->uri;
203     $path =~ s/$base\/?//og;
204     my $template = '';
205     my $page_args = [];
206     my $as_xml = $r->dir_config('OILSWebForceValidXML');
207     my $ext = $r->dir_config('OILSWebDefaultTemplateExtension');
208
209     my @parts = split('/', $path);
210     my $localpath = $path;
211
212     if ($localpath =~ m|opac/css|) {
213         $r->content_type('text/css; encoding=utf8');
214     } else {
215         $r->content_type('text/html; encoding=utf8');
216     }
217     my @args;
218     while(@parts) {
219         last unless $localpath;
220         for my $tpath (@{$ctx->{template_paths}}) {
221             my $fpath = "$tpath/$localpath.$ext";
222             $r->log->debug("egweb: looking at possible template $fpath");
223             if(-r $fpath) {
224                 $template = "$localpath.$ext";
225                 last;
226             }
227         }
228         last if $template;
229         push(@args, pop @parts);
230         $localpath = join('/', @parts);
231     } 
232
233     $page_args = [@args];
234
235     # no template configured or found
236     unless($template) {
237         $r->log->debug("egweb: No template configured for path $path");
238         return ();
239     }
240
241     $r->log->debug("egweb: template = $template : page args = @$page_args");
242     return ($template, $page_args, $as_xml);
243 }
244
245 # Create an I18N sub-module for each supported locale
246 # Each module creates its own MakeText lexicon by parsing .po/.mo files
247 sub load_locale_handlers {
248     my $ctx = shift;
249     my %locales = @_;
250
251     my $editor = new_editor();
252     my @locale_tags = sort { length($a) <=> length($b) } keys %locales;
253
254     # always fall back to en_us, the assumed template language
255     push(@locale_tags, 'en_us');
256
257     for my $idx (0..$#locale_tags) {
258
259         my $tag = $locale_tags[$idx];
260         next if grep { $_ eq $tag } keys %registered_locales;
261
262         my $res = $editor->json_query({
263             "from" => [
264                 "evergreen.get_locale_name",
265                 $tag
266             ]
267         });
268
269         my $locale_name = $res->[0]->{"name"} if exists $res->[0]->{"name"};
270         next unless $locale_name;
271
272         my $parent_tag = '';
273         my $sub_idx = $idx;
274
275         # find the parent locale if possible.  It will be 
276         # longest left-anchored substring of the current tag
277         while( --$sub_idx >= 0 ) {
278             my $ptag = $locale_tags[$sub_idx];
279             if( substr($tag, 0, length($ptag)) eq $ptag ) {
280                 $parent_tag = "::$ptag";
281                 last;
282             }
283         }
284
285         my $messages = $locales{$tag} || '';
286
287         # TODO Can we do this without eval?
288         my $eval = <<"        EVAL";
289             package OpenILS::WWW::EGWeb::I18N::$tag;
290             use base 'OpenILS::WWW::EGWeb::I18N$parent_tag';
291             if(\$messages) {
292                 use Locale::Maketext::Lexicon {
293                     _decode => 1
294                 };
295                 use Locale::Maketext::Lexicon::Gettext;
296                 if(open F, '$messages') {
297                     our %Lexicon = (%Lexicon, %{ Locale::Maketext::Lexicon::Gettext->parse(<F>) });
298                     close F;
299                 } else {
300                     warn "EGWeb: unable to open messages file: $messages"; 
301                 }
302             }
303         EVAL
304         eval $eval;
305
306         if ($@) {
307             warn "$@\n" if $@;
308         } else {
309             $registered_locales{"$tag"} = $locale_name;
310         }
311     }
312 }
313
314
315 # base class for all supported locales
316 package OpenILS::WWW::EGWeb::I18N;
317 use base 'Locale::Maketext';
318 our %Lexicon = (_AUTO => 1);
319
320 1;