Revert "Bug 17880 - Add test to check version number comparison"
[koha.git] / C4 / XSLT.pm
blob5077d49131f0c3d29b427320aadd9ba309aa5e79
1 package C4::XSLT;
3 # Copyright (C) 2006 LibLime
4 # <jmf at liblime dot com>
5 # Parts Copyright Katrin Fischer 2011
6 # Parts Copyright ByWater Solutions 2011
7 # Parts Copyright Biblibre 2012
9 # This file is part of Koha.
11 # Koha is free software; you can redistribute it and/or modify it under the
12 # terms of the GNU General Public License as published by the Free Software
13 # Foundation; either version 3 of the License, or (at your option) any later
14 # version.
16 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
17 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
18 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
20 # You should have received a copy of the GNU General Public License along
21 # with Koha; if not, write to the Free Software Foundation, Inc.,
22 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 use strict;
25 use warnings;
27 use C4::Context;
28 use C4::Branch;
29 use C4::Items;
30 use C4::Koha;
31 use C4::Biblio;
32 use C4::Circulation;
33 use C4::Reserves;
34 use Koha::XSLT_Handler;
35 use Koha::Libraries;
37 use Encode;
39 use vars qw(@ISA @EXPORT);
41 my $engine; #XSLT Handler object
42 my %authval_per_framework;
43 # Cache for tagfield-tagsubfield to decode per framework.
44 # Should be preferably be placed in Koha-core...
46 BEGIN {
47 require Exporter;
48 @ISA = qw(Exporter);
49 @EXPORT = qw(
50 &XSLTParse4Display
52 $engine=Koha::XSLT_Handler->new( { do_not_return_source => 1 } );
55 =head1 NAME
57 C4::XSLT - Functions for displaying XSLT-generated content
59 =head1 FUNCTIONS
61 =head2 transformMARCXML4XSLT
63 Replaces codes with authorized values in a MARC::Record object
64 Is only used in this module currently.
66 =cut
68 sub transformMARCXML4XSLT {
69 my ($biblionumber, $record) = @_;
70 my $frameworkcode = GetFrameworkCode($biblionumber) || '';
71 my $tagslib = &GetMarcStructure(1,$frameworkcode);
72 my @fields;
73 # FIXME: wish there was a better way to handle exceptions
74 eval {
75 @fields = $record->fields();
77 if ($@) { warn "PROBLEM WITH RECORD"; next; }
78 my $marcflavour = C4::Context->preference('marcflavour');
79 my $av = getAuthorisedValues4MARCSubfields($frameworkcode);
80 foreach my $tag ( keys %$av ) {
81 foreach my $field ( $record->field( $tag ) ) {
82 if ( $av->{ $tag } ) {
83 my @new_subfields = ();
84 for my $subfield ( $field->subfields() ) {
85 my ( $letter, $value ) = @$subfield;
86 # Replace the field value with the authorised value *except* for MARC21/NORMARC field 942$n (suppression in opac)
87 if ( !( $tag eq '942' && $subfield eq 'n' ) || $marcflavour eq 'UNIMARC' ) {
88 $value = GetAuthorisedValueDesc( $tag, $letter, $value, '', $tagslib )
89 if $av->{ $tag }->{ $letter };
91 push( @new_subfields, $letter, $value );
93 $field ->replace_with( MARC::Field->new(
94 $tag,
95 $field->indicator(1),
96 $field->indicator(2),
97 @new_subfields
98 ) );
102 return $record;
105 =head2 getAuthorisedValues4MARCSubfields
107 Returns a ref of hash of ref of hash for tag -> letter controlled by authorised values
108 Is only used in this module currently.
110 =cut
112 sub getAuthorisedValues4MARCSubfields {
113 my ($frameworkcode) = @_;
114 unless ( $authval_per_framework{ $frameworkcode } ) {
115 my $dbh = C4::Context->dbh;
116 my $sth = $dbh->prepare("SELECT DISTINCT tagfield, tagsubfield
117 FROM marc_subfield_structure
118 WHERE authorised_value IS NOT NULL
119 AND authorised_value!=''
120 AND frameworkcode=?");
121 $sth->execute( $frameworkcode );
122 my $av = { };
123 while ( my ( $tag, $letter ) = $sth->fetchrow() ) {
124 $av->{ $tag }->{ $letter } = 1;
126 $authval_per_framework{ $frameworkcode } = $av;
128 return $authval_per_framework{ $frameworkcode };
131 =head2 XSLTParse4Display
133 Returns xml for biblionumber and requested XSLT transformation.
134 Returns undef if the transform fails.
136 Used in OPAC results and detail, intranet results and detail, list display.
137 (Depending on the settings of your XSLT preferences.)
139 The helper function _get_best_default_xslt_filename is used in a unit test.
141 =cut
143 sub _get_best_default_xslt_filename {
144 my ($htdocs, $theme, $lang, $base_xslfile) = @_;
146 my @candidates = (
147 "$htdocs/$theme/$lang/xslt/${base_xslfile}", # exact match
148 "$htdocs/$theme/en/xslt/${base_xslfile}", # if not, preferred theme in English
149 "$htdocs/prog/$lang/xslt/${base_xslfile}", # if not, 'prog' theme in preferred language
150 "$htdocs/prog/en/xslt/${base_xslfile}", # otherwise, prog theme in English; should always
151 # exist
153 my $xslfilename;
154 foreach my $filename (@candidates) {
155 $xslfilename = $filename;
156 if (-f $filename) {
157 last; # we have a winner!
160 return $xslfilename;
163 sub get_xslt_sysprefs {
164 my $sysxml = "<sysprefs>\n";
165 foreach my $syspref ( qw/ hidelostitems OPACURLOpenInNewWindow
166 DisplayOPACiconsXSLT URLLinkText viewISBD
167 OPACBaseURL TraceCompleteSubfields UseICU
168 UseAuthoritiesForTracings TraceSubjectSubdivisions
169 Display856uAsImage OPACDisplay856uAsImage
170 UseControlNumber IntranetBiblioDefaultView BiblioDefaultView
171 OPACItemLocation DisplayIconsXSLT
172 AlternateHoldingsField AlternateHoldingsSeparator
173 TrackClicks opacthemes IdRef OpacSuppression
174 OPACResultsLibrary / )
176 my $sp = C4::Context->preference( $syspref );
177 next unless defined($sp);
178 $sysxml .= "<syspref name=\"$syspref\">$sp</syspref>\n";
181 # singleBranchMode was a system preference, but no longer is
182 # we can retain it here for compatibility
183 my $singleBranchMode = Koha::Libraries->search->count == 1;
184 $sysxml .= "<syspref name=\"singleBranchMode\">$singleBranchMode</syspref>\n";
186 $sysxml .= "</sysprefs>\n";
187 return $sysxml;
190 sub XSLTParse4Display {
191 my ( $biblionumber, $orig_record, $xslsyspref, $fixamps, $hidden_items, $sysxml, $xslfilename, $lang ) = @_;
193 $sysxml ||= C4::Context->preference($xslsyspref);
194 $xslfilename ||= C4::Context->preference($xslsyspref);
195 $lang ||= C4::Languages::getlanguage();
197 if ( $xslfilename =~ /^\s*"?default"?\s*$/i ) {
198 my $htdocs;
199 my $theme;
200 my $xslfile;
201 if ($xslsyspref eq "XSLTDetailsDisplay") {
202 $htdocs = C4::Context->config('intrahtdocs');
203 $theme = C4::Context->preference("template");
204 $xslfile = C4::Context->preference('marcflavour') .
205 "slim2intranetDetail.xsl";
206 } elsif ($xslsyspref eq "XSLTResultsDisplay") {
207 $htdocs = C4::Context->config('intrahtdocs');
208 $theme = C4::Context->preference("template");
209 $xslfile = C4::Context->preference('marcflavour') .
210 "slim2intranetResults.xsl";
211 } elsif ($xslsyspref eq "OPACXSLTDetailsDisplay") {
212 $htdocs = C4::Context->config('opachtdocs');
213 $theme = C4::Context->preference("opacthemes");
214 $xslfile = C4::Context->preference('marcflavour') .
215 "slim2OPACDetail.xsl";
216 } elsif ($xslsyspref eq "OPACXSLTResultsDisplay") {
217 $htdocs = C4::Context->config('opachtdocs');
218 $theme = C4::Context->preference("opacthemes");
219 $xslfile = C4::Context->preference('marcflavour') .
220 "slim2OPACResults.xsl";
222 $xslfilename = _get_best_default_xslt_filename($htdocs, $theme, $lang, $xslfile);
225 if ( $xslfilename =~ m/\{langcode\}/ ) {
226 $xslfilename =~ s/\{langcode\}/$lang/;
229 # grab the XML, run it through our stylesheet, push it out to the browser
230 my $record = transformMARCXML4XSLT($biblionumber, $orig_record);
231 my $itemsxml = buildKohaItemsNamespace($biblionumber, $hidden_items);
232 my $xmlrecord = $record->as_xml(C4::Context->preference('marcflavour'));
234 $xmlrecord =~ s/\<\/record\>/$itemsxml$sysxml\<\/record\>/;
235 if ($fixamps) { # We need to correct the HTML entities that Zebra outputs
236 $xmlrecord =~ s/\&amp;amp;/\&amp;/g;
237 $xmlrecord =~ s/\&amp\;lt\;/\&lt\;/g;
238 $xmlrecord =~ s/\&amp\;gt\;/\&gt\;/g;
240 $xmlrecord =~ s/\& /\&amp\; /;
241 $xmlrecord =~ s/\&amp\;amp\; /\&amp\; /;
243 #If the xslt should fail, we will return undef (old behavior was
244 #raw MARC)
245 #Note that we did set do_not_return_source at object construction
246 return $engine->transform($xmlrecord, $xslfilename ); #file or URL
249 =head2 buildKohaItemsNamespace
251 Returns XML for items.
252 Is only used in this module currently.
254 =cut
256 sub buildKohaItemsNamespace {
257 my ($biblionumber, $hidden_items) = @_;
259 my @items = C4::Items::GetItemsInfo($biblionumber);
260 if ($hidden_items && @$hidden_items) {
261 my %hi = map {$_ => 1} @$hidden_items;
262 @items = grep { !$hi{$_->{itemnumber}} } @items;
265 my $shelflocations = GetKohaAuthorisedValues('items.location',GetFrameworkCode($biblionumber), 'opac');
266 my $ccodes = GetKohaAuthorisedValues('items.ccode',GetFrameworkCode($biblionumber), 'opac');
268 my $branches = GetBranches();
269 my $itemtypes = GetItemTypes();
270 my $location = "";
271 my $ccode = "";
272 my $xml = '';
273 for my $item (@items) {
274 my $status;
276 my ( $transfertwhen, $transfertfrom, $transfertto ) = C4::Circulation::GetTransfers($item->{itemnumber});
278 my $reservestatus = C4::Reserves::GetReserveStatus( $item->{itemnumber} );
280 if ( $itemtypes->{ $item->{itype} }->{notforloan} || $item->{notforloan} || $item->{onloan} || $item->{withdrawn} || $item->{itemlost} || $item->{damaged} ||
281 (defined $transfertwhen && $transfertwhen ne '') || $item->{itemnotforloan} || (defined $reservestatus && $reservestatus eq "Waiting") ){
282 if ( $item->{notforloan} < 0) {
283 $status = "On order";
285 if ( $item->{itemnotforloan} > 0 || $item->{notforloan} > 0 || $itemtypes->{ $item->{itype} }->{notforloan} == 1 ) {
286 $status = "reference";
288 if ($item->{onloan}) {
289 $status = "Checked out";
291 if ( $item->{withdrawn}) {
292 $status = "Withdrawn";
294 if ($item->{itemlost}) {
295 $status = "Lost";
297 if ($item->{damaged}) {
298 $status = "Damaged";
300 if (defined $transfertwhen && $transfertwhen ne '') {
301 $status = 'In transit';
303 if (defined $reservestatus && $reservestatus eq "Waiting") {
304 $status = 'Waiting';
306 } else {
307 $status = "available";
309 my $homebranch = $item->{homebranch}? xml_escape($branches->{$item->{homebranch}}->{'branchname'}):'';
310 my $holdingbranch = $item->{holdingbranch}? xml_escape($branches->{$item->{holdingbranch}}->{'branchname'}):'';
311 $location = $item->{location}? xml_escape($shelflocations->{$item->{location}}||$item->{location}):'';
312 $ccode = $item->{ccode}? xml_escape($ccodes->{$item->{ccode}}||$item->{ccode}):'';
313 my $itemcallnumber = xml_escape($item->{itemcallnumber});
314 my $stocknumber = $item->{stocknumber}? xml_escape($item->{stocknumber}):'';
315 $xml .=
316 "<item>"
317 . "<homebranch>$homebranch</homebranch>"
318 . "<holdingbranch>$holdingbranch</holdingbranch>"
319 . "<location>$location</location>"
320 . "<ccode>$ccode</ccode>"
321 . "<status>$status</status>"
322 . "<itemcallnumber>$itemcallnumber</itemcallnumber>"
323 . "<stocknumber>$stocknumber</stocknumber>"
324 . "</item>";
326 $xml = "<items xmlns=\"http://www.koha-community.org/items\">".$xml."</items>";
327 return $xml;
330 =head2 engine
332 Returns reference to XSLT handler object.
334 =cut
336 sub engine {
337 return $engine;
342 __END__
344 =head1 AUTHOR
346 Joshua Ferraro <jmf@liblime.com>
348 Koha Development Team <http://koha-community.org/>
350 =cut