Avoid XSLT stylesheet building for each biblio record to transform
[koha.git] / C4 / Breeding.pm
blob79f2e2f23c8f9c3bef1b3cf55302b0dff6106f77
1 package C4::Breeding;
3 # Copyright 2000-2002 Katipo Communications
5 # This file is part of Koha.
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.
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.
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
20 use strict;
21 use C4::Biblio;
22 use C4::Koha;
23 use C4::Charset;
24 use MARC::File::USMARC;
25 use C4::ImportBatch;
27 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
29 BEGIN {
30 # set the version for version checking
31 $VERSION = 0.02;
32 require Exporter;
33 @ISA = qw(Exporter);
34 @EXPORT = qw(&ImportBreeding &BreedingSearch);
37 =head1 NAME
39 C4::Breeding : module to add biblios to import_records via
40 the breeding/reservoir API.
42 =head1 SYNOPSIS
44 use C4::Scan;
45 &ImportBreeding($marcrecords,$overwrite_biblio,$filename,$z3950random,$batch_type);
47 C<$marcrecord> => the MARC::Record
48 C<$overwrite_biblio> => if set to 1 a biblio with the same ISBN will be overwritted.
49 if set to 0 a biblio with the same isbn will be ignored (the previous will be kept)
50 if set to -1 the biblio will be added anyway (more than 1 biblio with the same ISBN
51 possible in the breeding
52 C<$encoding> => USMARC
53 or UNIMARC. used for char_decoding.
54 If not present, the parameter marcflavour is used instead
55 C<$z3950random> => the random value created during a z3950 search result.
57 =head1 DESCRIPTION
59 ImportBreeding import MARC records in the reservoir (import_records/import_batches tables).
60 the records can be properly encoded or not, we try to reencode them in utf-8 if needed.
61 works perfectly with BNF server, that sends UNIMARC latin1 records. Should work with other servers too.
63 =head2 ImportBreeding
65 ImportBreeding($marcrecords,$overwrite_biblio,$filename,$encoding,$z3950random,$batch_type);
67 TODO description
69 =cut
71 sub ImportBreeding {
72 my ($marcrecords,$overwrite_biblio,$filename,$encoding,$z3950random,$batch_type) = @_;
73 my @marcarray = split /\x1D/, $marcrecords;
75 my $dbh = C4::Context->dbh;
77 my $batch_id = 0;
78 if ($batch_type eq 'z3950') {
79 $batch_id = GetZ3950BatchId($filename);
80 } else {
81 # create a new one
82 $batch_id = AddImportBatch('create_new', 'staging', 'batch', $filename, '');
84 my $searchisbn = $dbh->prepare("select biblioitemnumber from biblioitems where isbn=?");
85 my $searchissn = $dbh->prepare("select biblioitemnumber from biblioitems where issn=?");
86 # FIXME -- not sure that this kind of checking is actually needed
87 my $searchbreeding = $dbh->prepare("select import_record_id from import_biblios where isbn=? and title=?");
89 # $encoding = C4::Context->preference("marcflavour") unless $encoding;
90 # fields used for import results
91 my $imported=0;
92 my $alreadyindb = 0;
93 my $alreadyinfarm = 0;
94 my $notmarcrecord = 0;
95 my $breedingid;
96 for (my $i=0;$i<=$#marcarray;$i++) {
97 my ($marcrecord, $charset_result, $charset_errors);
98 ($marcrecord, $charset_result, $charset_errors) =
99 MarcToUTF8Record($marcarray[$i]."\x1D", C4::Context->preference("marcflavour"), $encoding);
101 # warn "$i : $marcarray[$i]";
102 # FIXME - currently this does nothing
103 my @warnings = $marcrecord->warnings();
105 if (scalar($marcrecord->fields()) == 0) {
106 $notmarcrecord++;
107 } else {
108 my $oldbiblio = TransformMarcToKoha($dbh,$marcrecord,'');
109 # if isbn found and biblio does not exist, add it. If isbn found and biblio exists,
110 # overwrite or ignore depending on user choice
111 # drop every "special" char : spaces, - ...
112 $oldbiblio->{isbn} =~ s/\(.*$//;
113 $oldbiblio->{isbn} =~ tr/ -_//;
114 $oldbiblio->{isbn} = uc $oldbiblio->{isbn};
115 # search if biblio exists
116 my $biblioitemnumber;
117 if ($oldbiblio->{isbn}) {
118 $searchisbn->execute($oldbiblio->{isbn});
119 ($biblioitemnumber) = $searchisbn->fetchrow;
120 } else {
121 if ($oldbiblio->{issn}) {
122 $searchissn->execute($oldbiblio->{issn});
123 ($biblioitemnumber) = $searchissn->fetchrow;
126 if ($biblioitemnumber && $overwrite_biblio ne 2) {
127 $alreadyindb++;
128 } else {
129 # FIXME - in context of batch load,
130 # rejecting records because already present in the reservoir
131 # not correct in every case.
132 # search in breeding farm
133 if ($oldbiblio->{isbn}) {
134 $searchbreeding->execute($oldbiblio->{isbn},$oldbiblio->{title});
135 ($breedingid) = $searchbreeding->fetchrow;
136 } elsif ($oldbiblio->{issn}){
137 $searchbreeding->execute($oldbiblio->{issn},$oldbiblio->{title});
138 ($breedingid) = $searchbreeding->fetchrow;
140 if ($breedingid && $overwrite_biblio eq '0') {
141 $alreadyinfarm++;
142 } else {
143 if ($breedingid && $overwrite_biblio eq '1') {
144 ModBiblioInBatch($breedingid, $marcrecord);
145 } else {
146 my $import_id = AddBiblioToBatch($batch_id, $imported, $marcrecord, $encoding, $z3950random);
147 $breedingid = $import_id;
149 $imported++;
154 return ($notmarcrecord,$alreadyindb,$alreadyinfarm,$imported,$breedingid);
158 =head2 BreedingSearch
160 ($count, @results) = &BreedingSearch($title,$isbn,$random);
161 C<$title> contains the title,
162 C<$isbn> contains isbn or issn,
163 C<$random> contains the random seed from a z3950 search.
165 C<$count> is the number of items in C<@results>. C<@results> is an
166 array of references-to-hash; the keys are the items from the C<import_records> and
167 C<import_biblios> tables of the Koha database.
169 =cut
171 sub BreedingSearch {
172 my ($title,$isbn,$z3950random) = @_;
173 my $dbh = C4::Context->dbh;
174 my $count = 0;
175 my ($query,@bind);
176 my $sth;
177 my @results;
179 $query = "SELECT import_record_id, file_name, isbn, title, author
180 FROM import_biblios
181 JOIN import_records USING (import_record_id)
182 JOIN import_batches USING (import_batch_id)
183 WHERE ";
184 if ($z3950random) {
185 $query .= "z3950random = ?";
186 @bind=($z3950random);
187 } else {
188 @bind=();
189 if ($title) {
190 $query .= "title like ?";
191 push(@bind,"$title%");
193 if ($title && $isbn) {
194 $query .= " and ";
196 if ($isbn) {
197 $query .= "isbn like ?";
198 push(@bind,"$isbn%");
201 $sth = $dbh->prepare($query);
202 $sth->execute(@bind);
203 while (my $data = $sth->fetchrow_hashref) {
204 $results[$count] = $data;
205 # FIXME - hack to reflect difference in name
206 # of columns in old marc_breeding and import_records
207 # There needs to be more separation between column names and
208 # field names used in the templates </soapbox>
209 $data->{'file'} = $data->{'file_name'};
210 $data->{'id'} = $data->{'import_record_id'};
211 $count++;
212 } # while
214 $sth->finish;
215 return($count, @results);
216 } # sub breedingsearch
219 __END__