bug 3651 followup: updated for new GetMember() parameter style
[koha.git] / C4 / XSLT.pm
1 package C4::XSLT;
2 # Copyright (C) 2006 LibLime
3 # <jmf at liblime dot com>
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA  02111-1307 USA
19
20 use strict;
21 use warnings;
22
23 use C4::Context;
24 use C4::Branch;
25 use C4::Items;
26 use C4::Koha;
27 use C4::Biblio;
28 use C4::Circulation;
29 use Encode;
30 use XML::LibXML;
31 use XML::LibXSLT;
32
33 use vars qw($VERSION @ISA @EXPORT);
34
35 BEGIN {
36     require Exporter;
37     $VERSION = 0.03;
38     @ISA = qw(Exporter);
39     @EXPORT = qw(
40         &XSLTParse4Display
41     );
42 }
43
44 =head1 NAME
45
46 C4::XSLT - Functions for displaying XSLT-generated content
47
48 =head1 FUNCTIONS
49
50 =head1 transformMARCXML4XSLT
51
52 =head2 replaces codes with authorized values in a MARC::Record object
53
54 =cut
55
56 sub transformMARCXML4XSLT {
57     my ($biblionumber, $record) = @_;
58     my $frameworkcode = GetFrameworkCode($biblionumber);
59     my $tagslib = &GetMarcStructure(1,$frameworkcode);
60     my @fields;
61     # FIXME: wish there was a better way to handle exceptions
62     eval {
63         @fields = $record->fields();
64     };
65     if ($@) { warn "PROBLEM WITH RECORD"; next; }
66     my $av = getAuthorisedValues4MARCSubfields($frameworkcode);
67     foreach my $tag ( keys %$av ) {
68         foreach my $field ( $record->field( $tag ) ) {
69             if ( $av->{ $tag } ) {
70                 my @new_subfields = ();
71                 for my $subfield ( $field->subfields() ) {
72                     my ( $letter, $value ) = @$subfield;
73                     $value = GetAuthorisedValueDesc( $tag, $letter, $value, '', $tagslib )
74                         if $av->{ $tag }->{ $letter };
75                     push( @new_subfields, $letter, $value );
76                 } 
77                 $field ->replace_with( MARC::Field->new(
78                     $tag,
79                     $field->indicator(1),
80                     $field->indicator(2),
81                     @new_subfields
82                 ) );
83             }
84         }
85     }
86     return $record;
87 }
88
89 =head1 getAuthorisedValues4MARCSubfields
90
91 =head2 returns an ref of hash of ref of hash for tag -> letter controled bu authorised values
92
93 =cut
94
95 # Cache for tagfield-tagsubfield to decode per framework.
96 # Should be preferably be placed in Koha-core...
97 my %authval_per_framework;
98
99 sub getAuthorisedValues4MARCSubfields {
100     my ($frameworkcode) = @_;
101     unless ( $authval_per_framework{ $frameworkcode } ) {
102         my $dbh = C4::Context->dbh;
103         my $sth = $dbh->prepare("SELECT DISTINCT tagfield, tagsubfield
104                                  FROM marc_subfield_structure
105                                  WHERE authorised_value IS NOT NULL
106                                    AND authorised_value!=''
107                                    AND frameworkcode=?");
108         $sth->execute( $frameworkcode );
109         my $av = { };
110         while ( my ( $tag, $letter ) = $sth->fetchrow() ) {
111             $av->{ $tag }->{ $letter } = 1;
112         }
113         $authval_per_framework{ $frameworkcode } = $av;
114     }
115     return $authval_per_framework{ $frameworkcode };
116 }
117
118 my $stylesheet;
119
120 sub XSLTParse4Display {
121     my ( $biblionumber, $orig_record, $xsl_suffix, $interface ) = @_;
122     $interface = 'opac' unless $interface;
123     # grab the XML, run it through our stylesheet, push it out to the browser
124     my $record = transformMARCXML4XSLT($biblionumber, $orig_record);
125     #return $record->as_formatted();
126     my $itemsxml  = buildKohaItemsNamespace($biblionumber);
127     my $xmlrecord = $record->as_xml(C4::Context->preference('marcflavour'));
128     my $sysxml = "<sysprefs>\n";
129 #    warn $xmlrecord;
130     foreach my $syspref ( qw/OPACURLOpenInNewWindow DisplayOPACiconsXSLT URLLinkText/ ) {
131         $sysxml .= "<syspref name=\"$syspref\">" .
132                    C4::Context->preference( $syspref ) .
133                    "</syspref>\n";
134     }
135     $sysxml .= "</sysprefs>\n";
136     $xmlrecord =~ s/\<\/record\>/$itemsxml$sysxml\<\/record\>/;
137     $xmlrecord =~ s/\& /\&amp\; /;
138
139     my $parser = XML::LibXML->new();
140     # don't die when you find &, >, etc
141     $parser->recover_silently(0);
142     my $source = $parser->parse_string($xmlrecord);
143     unless ( $stylesheet ) {
144         my $xslt = XML::LibXSLT->new();
145         my $xslfile;
146         if ($interface eq 'intranet') {
147             $xslfile = C4::Context->config('intrahtdocs') . 
148                       "/prog/en/xslt/" .
149                       C4::Context->preference('marcflavour') .
150                       "slim2intranet$xsl_suffix.xsl";
151         } else {
152             $xslfile = C4::Context->config('opachtdocs') . 
153                       "/prog/en/xslt/" .
154                       C4::Context->preference('marcflavour') .
155                       "slim2OPAC$xsl_suffix.xsl";
156         }
157         my $style_doc = $parser->parse_file($xslfile);
158         $stylesheet = $xslt->parse_stylesheet($style_doc);
159     }
160     my $results = $stylesheet->transform($source);
161     my $newxmlrecord = $stylesheet->output_string($results);
162     return $newxmlrecord;
163 }
164
165 sub buildKohaItemsNamespace {
166     my ($biblionumber) = @_;
167     my @items = C4::Items::GetItemsInfo($biblionumber);
168     my $branches = GetBranches();
169     my $itemtypes = GetItemTypes();
170     my $xml = '';
171     for my $item (@items) {
172         my $status;
173
174         my ( $transfertwhen, $transfertfrom, $transfertto ) = C4::Circulation::GetTransfers($item->{itemnumber});
175
176         if ( $itemtypes->{ $item->{itype} }->{notforloan} || $item->{notforloan} || $item->{onloan} || $item->{wthdrawn} || $item->{itemlost} || $item->{damaged} ||
177              (defined $transfertwhen && $transfertwhen ne '') || $item->{itemnotforloan} ) {
178             if ( $item->{notforloan} < 0) {
179                 $status = "On order";
180             } 
181             if ( $item->{itemnotforloan} > 0 || $item->{notforloan} > 0 || $itemtypes->{ $item->{itype} }->{notforloan} == 1 ) {
182                 $status = "reference";
183             }
184             if ($item->{onloan}) {
185                 $status = "Checked out";
186             }
187             if ( $item->{wthdrawn}) {
188                 $status = "Withdrawn";
189             }
190             if ($item->{itemlost}) {
191                 $status = "Lost";
192             }
193             if ($item->{damaged}) {
194                 $status = "Damaged"; 
195             }
196             if (defined $transfertwhen && $transfertwhen ne '') {
197                 $status = 'In transit';
198             }
199         } else {
200             $status = "available";
201         }
202         my $homebranch = $branches->{$item->{homebranch}}->{'branchname'};
203         $xml.= "<item><homebranch>$homebranch</homebranch>".
204                 "<status>$status</status>".
205                 (defined $item->{'itemcallnumber'} ? "<itemcallnumber>".$item->{'itemcallnumber'}."</itemcallnumber>" 
206                                            : "<itemcallnumber />")
207         . "</item>";
208
209     }
210     $xml = "<items xmlns=\"http://www.koha.org/items\">".$xml."</items>";
211     return $xml;
212 }
213
214
215
216 1;
217 __END__
218
219 =head1 NOTES
220
221 =head1 AUTHOR
222
223 Joshua Ferraro <jmf@liblime.com>
224
225 =cut