Bug 7607: (follow-up) Address OPAC and limits
[koha.git] / C4 / Templates.pm
blobbad3275959360ed5746fad4fba808da713c49a3c
1 package C4::Templates;
3 use strict;
4 use warnings;
5 use Carp;
6 use CGI qw ( -utf8 );
7 use List::MoreUtils qw/ any uniq /;
9 # Copyright 2009 Chris Cormack and The Koha Dev Team
11 # This file is part of Koha.
13 # Koha is free software; you can redistribute it and/or modify it
14 # under the terms of the GNU General Public License as published by
15 # the Free Software Foundation; either version 3 of the License, or
16 # (at your option) any later version.
18 # Koha is distributed in the hope that it will be useful, but
19 # WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 # GNU General Public License for more details.
23 # You should have received a copy of the GNU General Public License
24 # along with Koha; if not, see <http://www.gnu.org/licenses>.
26 =head1 NAME
28 C4::Templates - Object for manipulating templates for use with Koha
30 =cut
32 use base qw(Class::Accessor);
33 use Template;
34 use Template::Constants qw( :debug );
35 use C4::Languages qw(getTranslatedLanguages get_bidi regex_lang_subtags language_get_description accept_language );
37 use C4::Context;
39 use Koha::Cache::Memory::Lite;
40 use Koha::Exceptions;
42 __PACKAGE__->mk_accessors(qw( theme activethemes preferredtheme lang filename htdocs interface vars));
46 sub new {
47 my $class = shift;
48 my $interface = shift;
49 my $filename = shift;
50 my $tmplbase = shift;
51 my $query = @_? shift: undef;
52 my $htdocs;
53 if ( $interface ne "intranet" ) {
54 $htdocs = C4::Context->config('opachtdocs');
56 else {
57 $htdocs = C4::Context->config('intrahtdocs');
59 my ($theme, $lang, $activethemes)= themelanguage( $htdocs, $tmplbase, $interface, $query);
60 my @includes;
61 foreach (@$activethemes) {
62 push @includes, "$htdocs/$_/$lang/includes";
63 push @includes, "$htdocs/$_/en/includes" unless $lang eq 'en';
65 # Do not use template cache if script is called from commandline
66 my $use_template_cache = C4::Context->config('template_cache_dir') && defined $ENV{GATEWAY_INTERFACE};
67 my $template = Template->new(
68 { EVAL_PERL => 1,
69 ABSOLUTE => 1,
70 PLUGIN_BASE => 'Koha::Template::Plugin',
71 COMPILE_EXT => $use_template_cache ? '.ttc' : '',
72 COMPILE_DIR => $use_template_cache ? C4::Context->config('template_cache_dir') : '',
73 INCLUDE_PATH => \@includes,
74 FILTERS => {},
75 ENCODING => 'UTF-8',
77 ) or die Template->error();
78 my $self = {
79 TEMPLATE => $template,
80 VARS => {},
82 bless $self, $class;
83 $self->theme($theme);
84 $self->lang($lang);
85 $self->activethemes($activethemes);
86 $self->preferredtheme($activethemes->[0]);
87 $self->filename($filename);
88 $self->htdocs($htdocs);
89 $self->interface($interface);
90 $self->{VARS}->{"test"} = "value";
91 return $self;
95 sub output {
96 my $self = shift;
97 my $vars = shift;
99 # my $file = $self->htdocs . '/' . $self->theme .'/'.$self->lang.'/'.$self->filename;
100 my $template = $self->{TEMPLATE};
101 if ( $self->interface eq 'intranet' ) {
102 $vars->{themelang} = '/intranet-tmpl';
104 else {
105 $vars->{themelang} = '/opac-tmpl';
107 $vars->{lang} = $self->lang;
108 $vars->{themelang} .= '/' . $self->preferredtheme . '/' . $self->lang;
109 $vars->{interface} =
110 ( $self->{interface} ne 'intranet' ? '/opac-tmpl' : '/intranet-tmpl' );
111 $vars->{theme} = $self->theme;
112 $vars->{OpacAdditionalStylesheet} =
113 C4::Context->preference('OpacAdditionalStylesheet');
114 $vars->{opaclayoutstylesheet} =
115 C4::Context->preference('opaclayoutstylesheet');
117 # add variables set via param to $vars for processing
118 $vars = { %$vars, %{ $self->{VARS} } };
120 my $data;
121 binmode( STDOUT, ":encoding(UTF-8)" );
122 $template->process( $self->filename, $vars, \$data )
123 || die "Template process failed: ", $template->error();
124 return $data;
127 # wrapper method to allow easier transition from HTML template pro to Template Toolkit
128 sub param {
129 my $self = shift;
130 while (@_) {
131 my $key = shift;
132 my $val = shift;
133 if ( ref($val) eq 'ARRAY' && !scalar @$val ) { $val = undef; }
134 elsif ( ref($val) eq 'HASH' && !scalar %$val ) { $val = undef; }
135 if ( $key ) {
136 $self->{VARS}->{$key} = $val;
137 } else {
138 warn "Problem = a value of $val has been passed to param without key";
144 =head1 NAME
146 C4::Templates - Functions for managing templates
148 =head1 FUNCTIONS
150 =cut
152 # FIXME: this is a quick fix to stop rc1 installing broken
153 # Still trying to figure out the correct fix.
154 my $path = C4::Context->config('intrahtdocs') . "/prog/en/includes/";
156 #---------------------------------------------------------------------------------------------------------
157 # FIXME - POD
159 sub _get_template_file {
160 my ($tmplbase, $interface, $query) = @_;
162 my $is_intranet = $interface eq 'intranet';
163 my $htdocs = C4::Context->config($is_intranet ? 'intrahtdocs' : 'opachtdocs');
164 my ($theme, $lang, $availablethemes) = themelanguage($htdocs, $tmplbase, $interface, $query);
165 $lang //= 'en';
166 $theme //= '';
167 $tmplbase = "$htdocs/$theme/$lang/modules/$tmplbase" if $tmplbase !~ /^\//;
168 # do not prefix an absolute path
170 return ( $htdocs, $theme, $lang, $tmplbase );
173 =head2 badtemplatecheck
175 badtemplatecheck( $template_path );
177 The sub will throw an exception if the template path is not allowed.
179 Note: At this moment the sub is actually a helper routine for
180 sub gettemplate.
182 =cut
184 sub badtemplatecheck {
185 my ( $template ) = @_;
186 if( !$template || $template !~ m/^[a-zA-Z0-9_\-\/]+\.(tt|pref)$/ ) {
187 # This also includes two dots
188 Koha::Exceptions::NoPermission->throw( 'bad template path' );
189 } else {
190 # Check allowed dirs
191 my $dirs = C4::Context->config("pluginsdir");
192 $dirs = [ $dirs ] if !ref($dirs);
193 unshift @$dirs, C4::Context->config('opachtdocs'), C4::Context->config('intrahtdocs');
194 my $found = 0;
195 foreach my $dir ( @$dirs ) {
196 $dir .= '/' if $dir !~ m/\/$/;
197 $found++ if $template =~ m/^$dir/;
198 last if $found;
200 Koha::Exceptions::NoPermission->throw( 'bad template path' ) if !$found;
204 sub gettemplate {
205 my ( $tmplbase, $interface, $query ) = @_;
206 ($query) or warn "no query in gettemplate";
207 my ($htdocs, $theme, $lang, $filename)
208 = _get_template_file($tmplbase, $interface, $query);
209 badtemplatecheck( $filename ); # single trip for bad templates
210 my $template = C4::Templates->new($interface, $filename, $tmplbase, $query);
212 # NOTE: Commenting these out rather than deleting them so that those who need
213 # to know how we previously shimmed these directories will be able to understand.
214 # my $is_intranet = $interface eq 'intranet';
215 # my $themelang =
216 # ($is_intranet ? '/intranet-tmpl' : '/opac-tmpl') .
217 # "/$theme/$lang";
218 # $template->param(
219 # themelang => $themelang,
220 # interface => $is_intranet ? '/intranet-tmpl' : '/opac-tmpl',
221 # theme => $theme,
222 # lang => $lang
223 # );
225 # Bidirectionality, must be sent even if is the only language
226 my $current_lang = regex_lang_subtags($lang);
227 my $bidi;
228 $bidi = get_bidi($current_lang->{script}) if $current_lang->{script};
229 $template->param(
230 bidi => $bidi,
232 # Languages
233 my $languages_loop = getTranslatedLanguages($interface,$theme,$lang);
234 my $num_languages_enabled = 0;
235 foreach my $lang (@$languages_loop) {
236 foreach my $sublang (@{ $lang->{'sublanguages_loop'} }) {
237 $num_languages_enabled++ if $sublang->{enabled};
240 my $one_language_enabled = ($num_languages_enabled <= 1) ? 1 : 0; # deal with zero enabled langs as well
241 $template->param(
242 languages_loop => $languages_loop,
243 one_language_enabled => $one_language_enabled,
244 ) unless $one_language_enabled;
246 return $template;
250 =head2 themelanguage
252 my ($theme,$lang,\@themes) = themelanguage($htdocs,$tmpl,$interface,query);
254 This function returns the theme and language to be used for rendering the UI.
255 It also returns the list of themes that should be applied as a fallback. This is
256 used for the theme overlay feature (i.e. if a file doesn't exist on the requested
257 theme, fallback to the configured fallback).
259 Important: this function is used on the webinstaller too, so always consider
260 the use case where the DB is not populated already when rewriting/fixing.
262 =cut
264 sub themelanguage {
265 my ($htdocs, $tmpl, $interface, $query) = @_;
266 ($query) or warn "no query in themelanguage";
268 # Select a language based on cookie, syspref available languages & browser
269 my $lang = C4::Languages::getlanguage($query);
271 # Get theme
272 my @themes;
273 my $theme_syspref = ($interface eq 'intranet') ? 'template' : 'opacthemes';
274 my $fallback_syspref = ($interface eq 'intranet') ? 'template' : 'OPACFallback';
275 # Yeah, hardcoded, last resort if the DB is not populated
276 my $hardcoded_theme = ($interface eq 'intranet') ? 'prog' : 'bootstrap';
278 # Configured theme is the first one
279 push @themes, C4::Context->preference( $theme_syspref )
280 if C4::Context->preference( $theme_syspref );
281 # Configured fallback next
282 push @themes, C4::Context->preference( $fallback_syspref )
283 if C4::Context->preference( $fallback_syspref );
284 # The hardcoded fallback theme is the last one
285 push @themes, $hardcoded_theme;
287 # Try to find first theme for the selected theme/lang, then for fallback/lang
288 my $where = $tmpl =~ /xsl$/ ? 'xslt' : 'modules';
289 for my $theme (@themes) {
290 if ( -e "$htdocs/$theme/$lang/$where/$tmpl" ) {
291 return ( $theme, $lang, [ uniq(@themes) ] );
294 # Otherwise return theme/'en', last resort fallback/'en'
295 for my $theme (@themes) {
296 if ( -e "$htdocs/$theme/en/$where/$tmpl" ) {
297 return ( $theme, 'en', [ uniq(@themes) ] );
300 # tmpl is a full path, so this is a template for a plugin
301 if ( $tmpl =~ /^\// && -e $tmpl ) {
302 return ( $themes[0], $lang, [ uniq(@themes) ] );
307 sub setlanguagecookie {
308 my ( $query, $language, $uri ) = @_;
310 my $cookie = getlanguagecookie( $query, $language );
312 # We do not want to set getlanguage in cache, some additional checks are
313 # done in C4::Languages::getlanguage
314 Koha::Cache::Memory::Lite->get_instance()->clear_from_cache( 'getlanguage' );
316 print $query->redirect(
317 -uri => $uri,
318 -cookie => $cookie
322 =head2 getlanguagecookie
324 my $cookie = getlanguagecookie($query,$language);
326 Returns a cookie object containing the calculated language to be used.
328 =cut
330 sub getlanguagecookie {
331 my ( $query, $language ) = @_;
332 my $cookie = $query->cookie(
333 -name => 'KohaOpacLanguage',
334 -value => $language,
335 -HttpOnly => 1,
336 -expires => '+3y'
339 return $cookie;
342 =head2 GetColumnDefs
344 my $columns = GetColumnDefs( $cgi )
346 It is passed a CGI object and returns a hash of hashes containing
347 the column names and descriptions for each table defined in the
348 columns.def file corresponding to the CGI object.
350 =cut
352 sub GetColumnDefs {
354 my $query = shift;
356 my $columns = {};
358 my $htdocs = C4::Context->config('intrahtdocs');
359 my $columns_file = 'columns.def';
361 # Get theme and language to build the path to columns.def
362 my ($theme, $lang, $availablethemes) =
363 themelanguage($htdocs, 'about.tt', 'intranet', $query);
364 # Build columns.def path
365 my $path = "$htdocs/$theme/$lang/$columns_file";
366 my $fh;
367 if ( ! open ( $fh, q{<:encoding(utf-8)}, $path ) ) {
368 carp "Error opening $path. Check your templates.";
369 return;
371 # Loop through the columns.def file
372 while ( my $input = <$fh> ){
373 chomp $input;
374 if ( $input =~ m|<field name="(.*)">(.*)</field>| ) {
375 my ( $table, $column ) = split( '\.', $1);
376 my $description = $2;
377 # Initialize the table array if needed.
378 @{$columns->{ $table }} = () if ! defined $columns->{ $table };
379 # Push field and description
380 push @{$columns->{ $table }},
381 { field => $column, description => $description };
384 close $fh;
386 return $columns;