MT 3044, Follow-up : Fix CSV Export when there are blank chars in tag names
[koha.git] / C4 / Record.pm
1 package C4::Record;
2 #
3 # Copyright 2006 (C) LibLime
4 # Joshua Ferraro <jmf@liblime.com>
5 #
6 # This file is part of Koha.
7 #
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 2 of the License, or (at your option) any later
11 # version.
12 #
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License along with
18 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
19 # Suite 330, Boston, MA  02111-1307 USA
20 #
21 #
22 use strict;# use warnings; #FIXME: turn off warnings before release
23
24 # please specify in which methods a given module is used
25 use MARC::Record; # marc2marcxml, marcxml2marc, html2marc, changeEncoding
26 use MARC::File::XML; # marc2marcxml, marcxml2marc, html2marcxml, changeEncoding
27 use MARC::Crosswalk::DublinCore; # marc2dcxml
28 use Biblio::EndnoteStyle;
29 use Unicode::Normalize; # _entity_encode
30 use XML::LibXSLT;
31 use XML::LibXML;
32 use C4::Biblio; #marc2bibtex
33 use C4::Csv; #marc2csv
34 use C4::Koha; #marc2csv
35 use YAML; #marcrecords2csv
36 use Text::CSV::Encoded; #marc2csv
37
38 use vars qw($VERSION @ISA @EXPORT);
39
40 # set the version for version checking
41 $VERSION = 3.00;
42
43 @ISA = qw(Exporter);
44
45 # only export API methods
46
47 @EXPORT = qw(
48   &marc2endnote
49   &marc2marc
50   &marc2marcxml
51   &marcxml2marc
52   &marc2dcxml
53   &marc2modsxml
54   &marc2bibtex
55   &marc2csv
56   &html2marcxml
57   &html2marc
58   &changeEncoding
59 );
60
61 =head1 NAME
62
63 C4::Record - MARC, MARCXML, DC, MODS, XML, etc. Record Management Functions and API
64
65 =head1 SYNOPSIS
66
67 New in Koha 3.x. This module handles all record-related management functions.
68
69 =head1 API (EXPORTED FUNCTIONS)
70
71 =head2 marc2marc - Convert from one flavour of ISO-2709 to another
72
73 =over 4
74
75 my ($error,$newmarc) = marc2marc($marc,$to_flavour,$from_flavour,$encoding);
76
77 Returns an ISO-2709 scalar
78
79 =back
80
81 =cut
82
83 sub marc2marc {
84         my ($marc,$to_flavour,$from_flavour,$encoding) = @_;
85         my $error = "Feature not yet implemented\n";
86         return ($error,$marc);
87 }
88
89 =head2 marc2marcxml - Convert from ISO-2709 to MARCXML
90
91 =over 4
92
93 my ($error,$marcxml) = marc2marcxml($marc,$encoding,$flavour);
94
95 Returns a MARCXML scalar
96
97 =over 2
98
99 C<$marc> - an ISO-2709 scalar or MARC::Record object
100
101 C<$encoding> - UTF-8 or MARC-8 [UTF-8]
102
103 C<$flavour> - MARC21 or UNIMARC
104
105 C<$dont_entity_encode> - a flag that instructs marc2marcxml not to entity encode the xml before returning (optional)
106
107 =back
108
109 =back
110
111 =cut
112
113 sub marc2marcxml {
114         my ($marc,$encoding,$flavour,$dont_entity_encode) = @_;
115         my $error; # the error string
116         my $marcxml; # the final MARCXML scalar
117
118         # test if it's already a MARC::Record object, if not, make it one
119         my $marc_record_obj;
120         if ($marc =~ /^MARC::Record/) { # it's already a MARC::Record object
121                 $marc_record_obj = $marc;
122         } else { # it's not a MARC::Record object, make it one
123                 eval { $marc_record_obj = MARC::Record->new_from_usmarc($marc) }; # handle exceptions
124
125                 # conversion to MARC::Record object failed, populate $error
126                 if ($@) { $error .="\nCreation of MARC::Record object failed: ".$MARC::File::ERROR };
127         }
128         # only proceed if no errors so far
129         unless ($error) {
130
131                 # check the record for warnings
132                 my @warnings = $marc_record_obj->warnings();
133                 if (@warnings) {
134                         warn "\nWarnings encountered while processing ISO-2709 record with title \"".$marc_record_obj->title()."\":\n";
135                         foreach my $warn (@warnings) { warn "\t".$warn };
136                 }
137                 unless($encoding) {$encoding = "UTF-8"}; # set default encoding
138                 unless($flavour) {$flavour = C4::Context->preference("marcflavour")}; # set default MARC flavour
139
140                 # attempt to convert the record to MARCXML
141                 eval { $marcxml = $marc_record_obj->as_xml_record($flavour) }; #handle exceptions
142
143                 # record creation failed, populate $error
144                 if ($@) {
145                         $error .= "Creation of MARCXML failed:".$MARC::File::ERROR;
146                         $error .= "Additional information:\n";
147                         my @warnings = $@->warnings();
148                         foreach my $warn (@warnings) { $error.=$warn."\n" };
149
150                 # record creation was successful
151         } else {
152
153                         # check the record for warning flags again (warnings() will be cleared already if there was an error, see above block
154                         @warnings = $marc_record_obj->warnings();
155                         if (@warnings) {
156                                 warn "\nWarnings encountered while processing ISO-2709 record with title \"".$marc_record_obj->title()."\":\n";
157                                 foreach my $warn (@warnings) { warn "\t".$warn };
158                         }
159                 }
160
161                 # only proceed if no errors so far
162                 unless ($error) {
163
164                         # entity encode the XML unless instructed not to
165                 unless ($dont_entity_encode) {
166                         my ($marcxml_entity_encoded) = _entity_encode($marcxml);
167                         $marcxml = $marcxml_entity_encoded;
168                 }
169                 }
170         }
171         # return result to calling program
172         return ($error,$marcxml);
173 }
174
175 =head2 marcxml2marc - Convert from MARCXML to ISO-2709
176
177 =over 4
178
179 my ($error,$marc) = marcxml2marc($marcxml,$encoding,$flavour);
180
181 Returns an ISO-2709 scalar
182
183 =over 2
184
185 C<$marcxml> - a MARCXML record
186
187 C<$encoding> - UTF-8 or MARC-8 [UTF-8]
188
189 C<$flavour> - MARC21 or UNIMARC
190
191 =back
192
193 =back
194
195 =cut
196
197 sub marcxml2marc {
198     my ($marcxml,$encoding,$flavour) = @_;
199         my $error; # the error string
200         my $marc; # the final ISO-2709 scalar
201         unless($encoding) {$encoding = "UTF-8"}; # set the default encoding
202         unless($flavour) {$flavour = C4::Context->preference("marcflavour")}; # set the default MARC flavour
203
204         # attempt to do the conversion
205         eval { $marc = MARC::Record->new_from_xml($marcxml,$encoding,$flavour) }; # handle exceptions
206
207         # record creation failed, populate $error
208         if ($@) {$error .="\nCreation of MARCXML Record failed: ".$@;
209                 $error.=$MARC::File::ERROR if ($MARC::File::ERROR);
210                 };
211         # return result to calling program
212         return ($error,$marc);
213 }
214
215 =head2 marc2dcxml - Convert from ISO-2709 to Dublin Core
216
217 =over 4
218
219 my ($error,$dcxml) = marc2dcxml($marc,$qualified);
220
221 Returns a DublinCore::Record object, will eventually return a Dublin Core scalar
222
223 FIXME: should return actual XML, not just an object
224
225 =over 2
226
227 C<$marc> - an ISO-2709 scalar or MARC::Record object
228
229 C<$qualified> - specify whether qualified Dublin Core should be used in the input or output [0]
230
231 =back
232
233 =back
234
235 =cut
236
237 sub marc2dcxml {
238         my ($marc,$qualified) = @_;
239         my $error;
240     # test if it's already a MARC::Record object, if not, make it one
241     my $marc_record_obj;
242     if ($marc =~ /^MARC::Record/) { # it's already a MARC::Record object
243         $marc_record_obj = $marc;
244     } else { # it's not a MARC::Record object, make it one
245                 eval { $marc_record_obj = MARC::Record->new_from_usmarc($marc) }; # handle exceptions
246
247                 # conversion to MARC::Record object failed, populate $error
248                 if ($@) {
249                         $error .="\nCreation of MARC::Record object failed: ".$MARC::File::ERROR;
250                 }
251         }
252         my $crosswalk = MARC::Crosswalk::DublinCore->new;
253         if ($qualified) {
254                 $crosswalk = MARC::Crosswalk::DublinCore->new( qualified => 1 );
255         }
256         my $dcxml = $crosswalk->as_dublincore($marc_record_obj);
257         my $dcxmlfinal = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
258         $dcxmlfinal .= "<metadata
259   xmlns=\"http://example.org/myapp/\"
260   xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"
261   xsi:schemaLocation=\"http://example.org/myapp/ http://example.org/myapp/schema.xsd\"
262   xmlns:dc=\"http://purl.org/dc/elements/1.1/\"
263   xmlns:dcterms=\"http://purl.org/dc/terms/\">";
264
265         foreach my $element ( $dcxml->elements() ) {
266                 $dcxmlfinal.="<"."dc:".$element->name().">".$element->content()."</"."dc:".$element->name().">\n";
267     }
268         $dcxmlfinal .= "\n</metadata>";
269         return ($error,$dcxmlfinal);
270 }
271 =head2 marc2modsxml - Convert from ISO-2709 to MODS
272
273 =over 4
274
275 my ($error,$modsxml) = marc2modsxml($marc);
276
277 Returns a MODS scalar
278
279 =back
280
281 =cut
282
283 sub marc2modsxml {
284         my ($marc) = @_;
285         # grab the XML, run it through our stylesheet, push it out to the browser
286         my $xmlrecord = marc2marcxml($marc);
287         my $xslfile = C4::Context->config('intrahtdocs')."/prog/en/xslt/MARC21slim2MODS3-1.xsl";
288         my $parser = XML::LibXML->new();
289         my $xslt = XML::LibXSLT->new();
290         my $source = $parser->parse_string($xmlrecord);
291         my $style_doc = $parser->parse_file($xslfile);
292         my $stylesheet = $xslt->parse_stylesheet($style_doc);
293         my $results = $stylesheet->transform($source);
294         my $newxmlrecord = $stylesheet->output_string($results);
295         return ($newxmlrecord);
296 }
297
298 sub marc2endnote {
299     my ($marc) = @_;
300         my $marc_rec_obj =  MARC::Record->new_from_usmarc($marc);
301         my $f260 = $marc_rec_obj->field('260');
302         my $f260a = $f260->subfield('a') if $f260;
303     my $f710 = $marc_rec_obj->field('710');
304     my $f710a = $f710->subfield('a') if $f710;
305         my $f500 = $marc_rec_obj->field('500');
306         my $abstract = $f500->subfield('a') if $f500;
307         my $fields = {
308                 DB => C4::Context->preference("LibraryName"),
309                 Title => $marc_rec_obj->title(),        
310                 Author => $marc_rec_obj->author(),      
311                 Publisher => $f710a,
312                 City => $f260a,
313                 Year => $marc_rec_obj->publication_date,
314                 Abstract => $abstract,
315         };
316         my $endnote;
317         my $style = new Biblio::EndnoteStyle();
318         my $template;
319         $template.= "DB - DB\n" if C4::Context->preference("LibraryName");
320         $template.="T1 - Title\n" if $marc_rec_obj->title();
321         $template.="A1 - Author\n" if $marc_rec_obj->author();
322         $template.="PB - Publisher\n" if  $f710a;
323         $template.="CY - City\n" if $f260a;
324         $template.="Y1 - Year\n" if $marc_rec_obj->publication_date;
325         $template.="AB - Abstract\n" if $abstract;
326         my ($text, $errmsg) = $style->format($template, $fields);
327         return ($text);
328         
329 }
330
331 =head2 marc2csv - Convert several records from UNIMARC to CSV
332 Pre and postprocessing can be done through a YAML file
333
334 =over 4
335
336 my ($csv) = marc2csv($biblios, $csvprofileid);
337
338 Returns a CSV scalar
339
340 =over 2
341
342 C<$biblio> - a list of biblionumbers
343
344 C<$csvprofileid> - the id of the CSV profile to use for the export (see export_format.export_format_id and the GetCsvProfiles function in C4::Csv)
345
346 =back
347
348 =back
349
350 =cut
351 sub marc2csv {
352     my ($biblios, $id) = @_;
353     my $output;
354     my $csv = Text::CSV::Encoded->new();
355
356     # Getting yaml file
357     my $configfile = "../tools/csv-profiles/$id.yaml";
358     my ($preprocess, $postprocess, $fieldprocessing);
359     if (-e $configfile){
360         ($preprocess,$postprocess, $fieldprocessing) = YAML::LoadFile($configfile);
361     }
362
363     # Preprocessing
364     eval $preprocess if ($preprocess);
365
366     my $firstpass = 1;
367     foreach my $biblio (@$biblios) {
368         $output .= marcrecord2csv($biblio, $id, $firstpass, $csv, $fieldprocessing) ;
369         $firstpass = 0;
370     }
371
372     # Postprocessing
373     eval $postprocess if ($postprocess);
374
375     return $output;
376 }
377
378 =head2 marcrecord2csv - Convert a single record from UNIMARC to CSV
379
380 =over 4
381
382 my ($csv) = marcrecord2csv($biblio, $csvprofileid, $header);
383
384 Returns a CSV scalar
385
386 =over 2
387
388 C<$biblio> - a biblionumber
389
390 C<$csvprofileid> - the id of the CSV profile to use for the export (see export_format.export_format_id and the GetCsvProfiles function in C4::Csv)
391
392 C<$header> - true if the headers are to be printed (typically at first pass)
393
394 C<$csv> - an already initialised Text::CSV object
395
396 =back
397
398 =back
399
400 =cut
401
402
403 sub marcrecord2csv {
404     my ($biblio, $id, $header, $csv, $fieldprocessing) = @_;
405     my $output;
406
407     # Getting the record
408     my $record = GetMarcBiblio($biblio);
409
410     # Getting the framework
411     my $frameworkcode = GetFrameworkCode($biblio);
412
413     # Getting information about the csv profile
414     my $profile = GetCsvProfile($id);
415
416     # Getting output encoding
417     my $encoding          = $profile->{encoding} || 'utf8';
418     # Getting separators
419     my $csvseparator      = $profile->{csv_separator}      || ',';
420     my $fieldseparator    = $profile->{field_separator}    || '#';
421     my $subfieldseparator = $profile->{subfield_separator} || '|';
422
423     # TODO: Be more generic (in case we have to handle other protected chars or more separators)
424     if ($csvseparator eq '\t') { $csvseparator = "\t" }
425     if ($fieldseparator eq '\t') { $fieldseparator = "\t" }
426     if ($subfieldseparator eq '\t') { $subfieldseparator = "\t" }
427
428
429     $csv = $csv->encoding_out($encoding) ;
430     $csv->sep_char($csvseparator);
431
432     # Getting the marcfields
433     my $marcfieldslist = $profile->{marcfields};
434
435     # Getting the marcfields as an array
436     my @marcfieldsarray = split('\|', $marcfieldslist);
437
438    # Separating the marcfields from the the user-supplied headers
439     my @marcfields;
440     foreach (@marcfieldsarray) {
441         my @result = split('=', $_);
442         if (scalar(@result) == 2) {
443            push @marcfields, { header => $result[0], field => $result[1] }; 
444         } else {
445            push @marcfields, { field => $result[0] }
446         }
447     }
448
449     # If we have to insert the headers
450     if ($header) {
451         my @marcfieldsheaders;
452         my $dbh   = C4::Context->dbh;
453
454         # For each field or subfield
455         foreach (@marcfields) {
456
457             my $field = $_->{field};
458
459             # If we have a user-supplied header, we use it
460             if (exists $_->{header}) {
461                     push @marcfieldsheaders, $_->{header};
462             } else {
463                 # If not, we get the matching tag name from koha
464                 if (index($field, '$') > 0) {
465                     my ($fieldtag, $subfieldtag) = split('\$', $field);
466                     my $query = "SELECT liblibrarian FROM marc_subfield_structure WHERE tagfield=? AND tagsubfield=?";
467                     my $sth = $dbh->prepare($query);
468                     $sth->execute($fieldtag, $subfieldtag);
469                     my @results = $sth->fetchrow_array();
470                     push @marcfieldsheaders, $results[0];
471                 } else {
472                     my $query = "SELECT liblibrarian FROM marc_tag_structure WHERE tagfield=?";
473                     my $sth = $dbh->prepare($query);
474                     $sth->execute($field);
475                     my @results = $sth->fetchrow_array();
476                     push @marcfieldsheaders, $results[0];
477                 }
478             }
479         }
480         $csv->combine(@marcfieldsheaders);
481         $output = $csv->string() . "\n";        
482     }
483
484     # For each marcfield to export
485     my @fieldstab;
486     foreach (@marcfields) {
487         my $marcfield = $_->{field};
488
489         # Remove any blank char that might have unintentionally insered into the tag name
490         $marcfield =~ s/\s+//g; 
491
492         # If it is a subfield
493         if (index($marcfield, '$') > 0) {
494             my ($fieldtag, $subfieldtag) = split('\$', $marcfield);
495             my @fields = $record->field($fieldtag);
496             my @tmpfields;
497
498             # For each field
499             foreach my $field (@fields) {
500
501                 # We take every matching subfield
502                 my @subfields = $field->subfield($subfieldtag);
503                 foreach my $subfield (@subfields) {
504
505                     # Getting authorised value
506                     my $authvalues = GetKohaAuthorisedValuesFromField($fieldtag, $subfieldtag, $frameworkcode, undef);
507                     push @tmpfields, (defined $authvalues->{$subfield}) ? $authvalues->{$subfield} : $subfield;
508                 }
509             }
510             push (@fieldstab, join($subfieldseparator, @tmpfields));            
511         # Or a field
512         } else {
513             my @fields = ($record->field($marcfield));
514             my $authvalues = GetKohaAuthorisedValuesFromField($marcfield, undef, $frameworkcode, undef);
515
516             my @valuesarray;
517             foreach (@fields) {
518                 my $value;
519
520                 # Getting authorised value
521                 $value = defined $authvalues->{$_->as_string} ? $authvalues->{$_->as_string} : $_->as_string;
522
523                 # Field processing
524                 eval $fieldprocessing if ($fieldprocessing);
525
526                 push @valuesarray, $value;
527             }
528             push (@fieldstab, join($fieldseparator, @valuesarray)); 
529          }
530     };
531
532     $csv->combine(@fieldstab);
533     $output .= $csv->string() . "\n";
534
535     return $output;
536
537 }
538
539
540 =head2 html2marcxml
541
542 =over 4
543
544 my ($error,$marcxml) = html2marcxml($tags,$subfields,$values,$indicator,$ind_tag);
545
546 Returns a MARCXML scalar
547
548 this is used in addbiblio.pl and additem.pl to build the MARCXML record from 
549 the form submission.
550
551 FIXME: this could use some better code documentation
552
553 =back
554
555 =cut
556
557 sub html2marcxml {
558     my ($tags,$subfields,$values,$indicator,$ind_tag) = @_;
559         my $error;
560         # add the header info
561     my $marcxml= MARC::File::XML::header(C4::Context->preference('TemplateEncoding'),C4::Context->preference('marcflavour'));
562
563         # some flags used to figure out where in the record we are
564     my $prevvalue;
565     my $prevtag=-1;
566     my $first=1;
567     my $j = -1;
568
569         # handle characters that would cause the parser to choke FIXME: is there a more elegant solution?
570     for (my $i=0;$i<=@$tags;$i++){
571                 @$values[$i] =~ s/&/&amp;/g;
572                 @$values[$i] =~ s/</&lt;/g;
573                 @$values[$i] =~ s/>/&gt;/g;
574                 @$values[$i] =~ s/"/&quot;/g;
575                 @$values[$i] =~ s/'/&apos;/g;
576         
577                 if ((@$tags[$i] ne $prevtag)){
578                         $j++ unless (@$tags[$i] eq "");
579                         #warn "IND:".substr(@$indicator[$j],0,1).substr(@$indicator[$j],1,1)." ".@$tags[$i];
580                         if (!$first){
581                                 $marcxml.="</datafield>\n";
582                                 if ((@$tags[$i] > 10) && (@$values[$i] ne "")){
583                         my $ind1 = substr(@$indicator[$j],0,1);
584                                         my $ind2 = substr(@$indicator[$j],1,1);
585                                         $marcxml.="<datafield tag=\"@$tags[$i]\" ind1=\"$ind1\" ind2=\"$ind2\">\n";
586                                         $marcxml.="<subfield code=\"@$subfields[$i]\">@$values[$i]</subfield>\n";
587                                         $first=0;
588                                 } else {
589                                         $first=1;
590                                 }
591                         } else {
592                                 if (@$values[$i] ne "") {
593                                         # handle the leader
594                                         if (@$tags[$i] eq "000") {
595                                                 $marcxml.="<leader>@$values[$i]</leader>\n";
596                                                 $first=1;
597                                         # rest of the fixed fields
598                                         } elsif (@$tags[$i] lt '010') { # don't compare numerically 010 == 8
599                                                 $marcxml.="<controlfield tag=\"@$tags[$i]\">@$values[$i]</controlfield>\n";
600                                                 $first=1;
601                                         } else {
602                                                 my $ind1 = substr(@$indicator[$j],0,1);
603                                                 my $ind2 = substr(@$indicator[$j],1,1);
604                                                 $marcxml.="<datafield tag=\"@$tags[$i]\" ind1=\"$ind1\" ind2=\"$ind2\">\n";
605                                                 $marcxml.="<subfield code=\"@$subfields[$i]\">@$values[$i]</subfield>\n";
606                                                 $first=0;
607                                         }
608                                 }
609                         }
610                 } else { # @$tags[$i] eq $prevtag
611                         if (@$values[$i] eq "") {
612                         } else {
613                                 if ($first){
614                                         my $ind1 = substr(@$indicator[$j],0,1);
615                                         my $ind2 = substr(@$indicator[$j],1,1);
616                                         $marcxml.="<datafield tag=\"@$tags[$i]\" ind1=\"$ind1\" ind2=\"$ind2\">\n";
617                                         $first=0;
618                                 }
619                                 $marcxml.="<subfield code=\"@$subfields[$i]\">@$values[$i]</subfield>\n";
620                         }
621                 }
622                 $prevtag = @$tags[$i];
623         }
624         $marcxml.= MARC::File::XML::footer();
625         #warn $marcxml;
626         return ($error,$marcxml);
627 }
628
629 =head2 html2marc
630
631 =over 4
632
633 Probably best to avoid using this ... it has some rather striking problems:
634
635 =over 2
636
637 * saves blank subfields
638
639 * subfield order is hardcoded to always start with 'a' for repeatable tags (because it is hardcoded in the addfield routine).
640
641 * only possible to specify one set of indicators for each set of tags (ie, one for all the 650s). (because they were stored in a hash with the tag as the key).
642
643 * the underlying routines didn't support subfield reordering or subfield repeatability.
644
645 =back 
646
647 I've left it in here because it could be useful if someone took the time to fix it. -- kados
648
649 =back
650
651 =cut
652
653 sub html2marc {
654     my ($dbh,$rtags,$rsubfields,$rvalues,%indicators) = @_;
655     my $prevtag = -1;
656     my $record = MARC::Record->new();
657 #   my %subfieldlist=();
658     my $prevvalue; # if tag <10
659     my $field; # if tag >=10
660     for (my $i=0; $i< @$rtags; $i++) {
661         # rebuild MARC::Record
662 #           warn "0=>".@$rtags[$i].@$rsubfields[$i]." = ".@$rvalues[$i].": ";
663         if (@$rtags[$i] ne $prevtag) {
664             if ($prevtag < 10) {
665                 if ($prevvalue) {
666                     if (($prevtag ne '000') && ($prevvalue ne "")) {
667                         $record->add_fields((sprintf "%03s",$prevtag),$prevvalue);
668                     } elsif ($prevvalue ne ""){
669                         $record->leader($prevvalue);
670                     }
671                 }
672             } else {
673                 if (($field) && ($field ne "")) {
674                     $record->add_fields($field);
675                 }
676             }
677             $indicators{@$rtags[$i]}.='  ';
678                 # skip blank tags, I hope this works
679                 if (@$rtags[$i] eq ''){
680                 $prevtag = @$rtags[$i];
681                 undef $field;
682                 next;
683             }
684             if (@$rtags[$i] <10) {
685                 $prevvalue= @$rvalues[$i];
686                 undef $field;
687             } else {
688                 undef $prevvalue;
689                 if (@$rvalues[$i] eq "") {
690                 undef $field;
691                 } else {
692                 $field = MARC::Field->new( (sprintf "%03s",@$rtags[$i]), substr($indicators{@$rtags[$i]},0,1),substr($indicators{@$rtags[$i]},1,1), @$rsubfields[$i] => @$rvalues[$i]);
693                 }
694 #           warn "1=>".@$rtags[$i].@$rsubfields[$i]." = ".@$rvalues[$i].": ".$field->as_formatted;
695             }
696             $prevtag = @$rtags[$i];
697         } else {
698             if (@$rtags[$i] <10) {
699                 $prevvalue=@$rvalues[$i];
700             } else {
701                 if (length(@$rvalues[$i])>0) {
702                     $field->add_subfields(@$rsubfields[$i] => @$rvalues[$i]);
703 #           warn "2=>".@$rtags[$i].@$rsubfields[$i]." = ".@$rvalues[$i].": ".$field->as_formatted;
704                 }
705             }
706             $prevtag= @$rtags[$i];
707         }
708     }
709     #}
710     # the last has not been included inside the loop... do it now !
711     #use Data::Dumper;
712     #warn Dumper($field->{_subfields});
713     $record->add_fields($field) if (($field) && $field ne "");
714     #warn "HTML2MARC=".$record->as_formatted;
715     return $record;
716 }
717
718 =head2 changeEncoding - Change the encoding of a record
719
720 =over 4
721
722 my ($error, $newrecord) = changeEncoding($record,$format,$flavour,$to_encoding,$from_encoding);
723
724 Changes the encoding of a record
725
726 =over 2
727
728 C<$record> - the record itself can be in ISO-2709, a MARC::Record object, or MARCXML for now (required)
729
730 C<$format> - MARC or MARCXML (required)
731
732 C<$flavour> - MARC21 or UNIMARC, if MARC21, it will change the leader (optional) [defaults to Koha system preference]
733
734 C<$to_encoding> - the encoding you want the record to end up in (optional) [UTF-8]
735
736 C<$from_encoding> - the encoding the record is currently in (optional, it will probably be able to tell unless there's a problem with the record)
737
738 =back 
739
740 FIXME: the from_encoding doesn't work yet
741
742 FIXME: better handling for UNIMARC, it should allow management of 100 field
743
744 FIXME: shouldn't have to convert to and from xml/marc just to change encoding someone needs to re-write MARC::Record's 'encoding' method to actually alter the encoding rather than just changing the leader
745
746 =back
747
748 =cut
749
750 sub changeEncoding {
751         my ($record,$format,$flavour,$to_encoding,$from_encoding) = @_;
752         my $newrecord;
753         my $error;
754         unless($flavour) {$flavour = C4::Context->preference("marcflavour")};
755         unless($to_encoding) {$to_encoding = "UTF-8"};
756         
757         # ISO-2709 Record (MARC21 or UNIMARC)
758         if (lc($format) =~ /^marc$/o) {
759                 # if we're converting encoding of an ISO2709 file, we need to roundtrip through XML
760                 #       because MARC::Record doesn't directly provide us with an encoding method
761                 #       It's definitely less than idea and should be fixed eventually - kados
762                 my $marcxml; # temporary storage of MARCXML scalar
763                 ($error,$marcxml) = marc2marcxml($record,$to_encoding,$flavour);
764                 unless ($error) {
765                         ($error,$newrecord) = marcxml2marc($marcxml,$to_encoding,$flavour);
766                 }
767         
768         # MARCXML Record
769         } elsif (lc($format) =~ /^marcxml$/o) { # MARCXML Record
770                 my $marc;
771                 ($error,$marc) = marcxml2marc($record,$to_encoding,$flavour);
772                 unless ($error) {
773                         ($error,$newrecord) = marc2marcxml($record,$to_encoding,$flavour);
774                 }
775         } else {
776                 $error.="Unsupported record format:".$format;
777         }
778         return ($error,$newrecord);
779 }
780
781 =head2 marc2bibtex - Convert from MARC21 and UNIMARC to BibTex
782
783 =over 4
784
785 my ($bibtex) = marc2bibtex($record, $id);
786
787 Returns a BibTex scalar
788
789 =over 2
790
791 C<$record> - a MARC::Record object
792
793 C<$id> - an id for the BibTex record (might be the biblionumber)
794
795 =back
796
797 =back
798
799 =cut
800
801
802 sub marc2bibtex {
803     my ($record, $id) = @_;
804     my $tex;
805
806     # Authors
807     my $marcauthors = GetMarcAuthors($record,C4::Context->preference("marcflavour"));
808     my $author;
809     for my $authors ( map { map { @$_ } values %$_  } @$marcauthors  ) {  
810         $author .= " and " if ($author && $$authors{value});
811         $author .= $$authors{value} if ($$authors{value}); 
812     }
813
814     # Defining the conversion hash according to the marcflavour
815     my %bh;
816     if (C4::Context->preference("marcflavour") eq "UNIMARC") {
817         
818         # FIXME, TODO : handle repeatable fields
819         # TODO : handle more types of documents
820
821         # Unimarc to bibtex hash
822         %bh = (
823
824             # Mandatory
825             author    => $author,
826             title     => $record->subfield("200", "a") || "",
827             editor    => $record->subfield("210", "g") || "",
828             publisher => $record->subfield("210", "c") || "",
829             year      => $record->subfield("210", "d") || $record->subfield("210", "h") || "",
830
831             # Optional
832             volume  =>  $record->subfield("200", "v") || "",
833             series  =>  $record->subfield("225", "a") || "",
834             address =>  $record->subfield("210", "a") || "",
835             edition =>  $record->subfield("205", "a") || "",
836             note    =>  $record->subfield("300", "a") || "",
837             url     =>  $record->subfield("856", "u") || ""
838         );
839     } else {
840
841         # Marc21 to bibtex hash
842         %bh = (
843
844             # Mandatory
845             author    => $author,
846             title     => $record->subfield("245", "a") || "",
847             editor    => $record->subfield("260", "f") || "",
848             publisher => $record->subfield("260", "b") || "",
849             year      => $record->subfield("260", "c") || $record->subfield("260", "g") || "",
850
851             # Optional
852             # unimarc to marc21 specification says not to convert 200$v to marc21
853             series  =>  $record->subfield("490", "a") || "",
854             address =>  $record->subfield("260", "a") || "",
855             edition =>  $record->subfield("250", "a") || "",
856             note    =>  $record->subfield("500", "a") || "",
857             url     =>  $record->subfield("856", "u") || ""
858         );
859     }
860
861     $tex .= "\@book{";
862     $tex .= join(",\n", $id, map { $bh{$_} ? qq(\t$_ = "$bh{$_}") : () } keys %bh);
863     $tex .= "\n}\n";
864
865     return $tex;
866 }
867
868
869 =head1 INTERNAL FUNCTIONS
870
871 =head2 _entity_encode - Entity-encode an array of strings
872
873 =over 4
874
875 my ($entity_encoded_string) = _entity_encode($string);
876
877 or
878
879 my (@entity_encoded_strings) = _entity_encode(@strings);
880
881 Entity-encode an array of strings
882
883 =back
884
885 =cut
886
887 sub _entity_encode {
888         my @strings = @_;
889         my @strings_entity_encoded;
890         foreach my $string (@strings) {
891                 my $nfc_string = NFC($string);
892                 $nfc_string =~ s/([\x{0080}-\x{fffd}])/sprintf('&#x%X;',ord($1))/sgoe;
893                 push @strings_entity_encoded, $nfc_string;
894         }
895         return @strings_entity_encoded;
896 }
897
898 END { }       # module clean-up code here (global destructor)
899 1;
900 __END__
901
902 =head1 AUTHOR
903
904 Joshua Ferraro <jmf@liblime.com>
905
906 =head1 MODIFICATIONS
907
908
909 =cut