Merge branch 'master' of /home/jmf/repos/koha-rm-root.git/
[koha.git] / misc / migration_tools / rebuild_nozebra.pl
1 #!/usr/bin/perl
2
3 use C4::Context;
4 use Getopt::Long;
5 use C4::Biblio;
6 use C4::AuthoritiesMarc;
7
8 use strict;
9
10 # script that fills the nozebra table
11 #
12 #
13
14 $|=1; # flushes output
15
16 # limit for database dumping
17 my $limit;# = "LIMIT 100";
18 my $directory;
19 my $skip_export;
20 my $keep_export;
21 my $reset;
22 my $biblios;
23 my $authorities;
24 GetOptions(
25         'd:s'      => \$directory,
26         'reset'      => \$reset,
27         's'        => \$skip_export,
28         'k'        => \$keep_export,
29         'b'        => \$biblios,
30         'a'        => \$authorities,
31         );
32
33 $directory = "export" unless $directory;
34 my $dbh=C4::Context->dbh;
35 $dbh->do("update systempreferences set value=1 where variable='NoZebra'");
36 $dbh->do("CREATE TABLE `nozebra` (
37                 `server` varchar(20)     NOT NULL,
38                 `indexname` varchar(40)  NOT NULL,
39                 `value` varchar(250)     NOT NULL,
40                 `biblionumbers` longtext NOT NULL,
41                 KEY `indexname` (`server`,`indexname`),
42                 KEY `value` (`server`,`value`))
43                 ENGINE=InnoDB DEFAULT CHARSET=utf8");
44
45 $dbh->do("truncate nozebra");
46
47 my %index = GetNoZebraIndexes();
48
49 unless (%index) {
50     if (C4::Context->preference('marcflavour') eq 'UNIMARC') {
51         $dbh->do("UPDATE systempreferences SET value=\"'title' => '200a,200c,200d,200e,225a,225d,225e,225f,225h,225i,225v,500*,501*,503*,510*,512*,513*,514*,515*,516*,517*,518*,519*,520*,530*,531*,532*,540*,541*,545*,604t,610t,605a',
52         'author' =>'200f,600a,601a,604a,700a,700b,700c,700d,700a,701b,701c,701d,702a,702b,702c,702d,710a,710b,710c,710d,711a,711b,711c,711d,712a,712b,712c,712d',
53         'isbn' => '010a',
54         'issn' => '011a',
55         'biblionumber' =>'0909',
56         'itemtype' => '200b',
57         'language' => '101a',
58         'publisher' => '210c',
59         'date' => '210d',
60         'note' => '300a,301a,302a,303a,304a,305a,306az,307a,308a,309a,310a,311a,312a,313a,314a,315a,316a,317a,318a,319a,320a,321a,322a,323a,324a,325a,326a,327a,328a,330a,332a,333a,336a,337a,345a',
61         'Koha-Auth-Number' => '6009,6019,6029,6039,6049,6059,6069,6109,7009,7019,7029,7109,7119,7129',
62         'subject' => '600*,601*,606*,610*',
63         'dewey' => '676a',
64         'host-item' => '995a,995c',\" where variable='NoZebraIndexes'");
65         %index = GetNoZebraIndexes();
66     } else {
67         # build a MARC21 default index file
68     }
69 }
70 $|=1;
71
72 print "***********************************\n";
73 print "***** building BIBLIO indexes *****\n";
74 print "***********************************\n";
75 my $sth;
76 $sth=$dbh->prepare("select biblionumber from biblioitems order by biblionumber $limit");
77 $sth->execute();
78 my $i=0;
79 my %result;
80 while (my ($biblionumber) = $sth->fetchrow) {
81     $i++;
82     print "\r$i";
83     my  $record;
84    eval{
85         $record = GetMarcBiblio($biblionumber);
86    };
87    if($@){
88         print "  There was some pb getting biblionumber : ".$biblionumber."\n";
89         next;
90    }
91     # get title of the record (to store the 10 first letters with the index)
92     my ($titletag,$titlesubfield) = GetMarcFromKohaField('biblio.title');
93     my $title = lc($record->subfield($titletag,$titlesubfield));
94
95     # remove blancks comma (that could cause problem when decoding the string for CQL retrieval) and regexp specific values
96     $title =~ s/ |,|;|\[|\]|\(|\)|\*|-|'|=//g;
97     $title = quotemeta $title;
98     # limit to 10 char, should be enough, and limit the DB size
99     $title = substr($title,0,10);
100     #parse each field
101     foreach my $field ($record->fields()) {
102         #parse each subfield
103         next if $field->tag <10;
104         foreach my $subfield ($field->subfields()) {
105             my $tag = $field->tag();
106             my $subfieldcode = $subfield->[0];
107             my $indexed=0;
108             # check each index to see if the subfield is stored somewhere
109             # otherwise, store it in __RAW__ index
110             foreach my $key (keys %index) {
111                 if ($index{$key} =~ /$tag\*/ or $index{$key} =~ /$tag$subfieldcode/) {
112                     $indexed=1;
113                     my $line= lc $subfield->[1];
114                     # remove meaningless value in the field...
115                     $line =~ s/-|\.|\?|,|;|!|'|\(|\)|\[|\]|{|}|"|<|>|&|\+|\*|\/|=|:/ /g;
116                     # ... and split in words
117                     foreach (split / /,$line) {
118                         next unless $_; # skip  empty values (multiple spaces)
119                         # if the entry is already here, improve weight
120                         if ($result{$key}->{$_} =~ /$biblionumber,$title\-(\d);/) {
121                             my $weight=$1+1;
122                             $result{$key}->{$_} =~ s/$biblionumber,$title\-(\d);//;
123                             $result{$key}->{$_} .= "$biblionumber,$title-$weight;";
124                         # otherwise, create it, with weight=1
125                         } else {
126                             $result{$key}->{$_}.="$biblionumber,$title-1;";
127                         }
128                     }
129                 }
130             }
131             # the subfield is not indexed, store it in __RAW__ index anyway
132             unless ($indexed) {
133                 my $line= lc $subfield->[1];
134                 $line =~ s/-|\.|\?|,|;|!|'|\(|\)|\[|\]|{|}|"|<|>|&|\+|\*|\/|=/ /g;
135                 foreach (split / /,$line) {
136                         next unless $_;
137 #                     warn $record->as_formatted."$_ =>".$title;
138                         if ($result{__RAW__}->{$_} =~ /$biblionumber,$title\-(\d);/) {
139                             my $weight=$1+1;
140 #                             $weight++;
141                             $result{__RAW__}->{$_} =~ s/$biblionumber,$title\-(\d);//;
142                             $result{__RAW__}->{$_} .= "$biblionumber,$title-$weight;";
143                         } else {
144                             $result{__RAW__}->{$_}.="$biblionumber,$title-1;";
145                         }
146                 }
147             }
148         }
149     }
150 }
151 print "\nInserting records...\n";
152 $i=0;
153 my $sth = $dbh->prepare("INSERT INTO nozebra (server,indexname,value,biblionumbers) VALUES ('biblioserver',?,?,?)");
154 foreach my $key (keys %result) {
155     foreach my $index (keys %{$result{$key}}) {
156         if (length($result{$key}->{$index}) > 1000000) {
157             print "very long index (".length($result{$key}->{$index}).")for $key / $index. update mySQL config file if you have an error just after this warning (max_paquet_size parameter)\n";
158         }
159         print "\r$i";
160         $i++;
161         $sth->execute($key,$index,$result{$key}->{$index});
162     }
163 }
164 print "\nbiblios done\n";
165
166 print "\n***********************************\n";
167 print "***** building AUTHORITIES indexes *****\n";
168 print "***********************************\n";
169
170 my $sth;
171 $sth=$dbh->prepare("select authid from auth_header order by authid $limit");
172 $sth->execute();
173 my $i=0;
174 my %result;
175 while (my ($authid) = $sth->fetchrow) {
176     $i++;
177     print "\r$i";
178     my $record;
179     eval{
180         $record = GetAuthority($authid);
181     };
182     if($@){
183         print "  There was some pb getting authnumber : ".$authid."\n";
184         next;
185     }
186     
187     my %index;
188     # for authorities, the "title" is the $a mainentry
189     my $authref = C4::AuthoritiesMarc::GetAuthType($record->subfield(152,'b'));
190
191     warn "ERROR : authtype undefined for ".$record->as_formatted unless $authref;
192     my $title = $record->subfield($authref->{auth_tag_to_report},'a');
193     $index{'mainmainentry'}= $authref->{'auth_tag_to_report'}.'a';
194     $index{'mainentry'}    = $authref->{'auth_tag_to_report'}.'*';
195     $index{'auth_type'}    = '152b';
196
197     # remove blancks comma (that could cause problem when decoding the string for CQL retrieval) and regexp specific values
198     $title =~ s/ |,|;|\[|\]|\(|\)|\*|-|'|=//g;
199     $title = quotemeta $title;
200     # limit to 10 char, should be enough, and limit the DB size
201     $title = substr($title,0,10);
202     #parse each field
203     foreach my $field ($record->fields()) {
204         #parse each subfield
205         next if $field->tag <10;
206         foreach my $subfield ($field->subfields()) {
207             my $tag = $field->tag();
208             my $subfieldcode = $subfield->[0];
209             my $indexed=0;
210             # check each index to see if the subfield is stored somewhere
211             # otherwise, store it in __RAW__ index
212             foreach my $key (keys %index) {
213                 if ($index{$key} =~ /$tag\*/ or $index{$key} =~ /$tag$subfieldcode/) {
214                     $indexed=1;
215                     my $line= lc $subfield->[1];
216                     # remove meaningless value in the field...
217                     $line =~ s/-|\.|\?|,|;|!|'|\(|\)|\[|\]|{|}|"|<|>|&|\+|\*|\/|=|:/ /g;
218                     # ... and split in words
219                     foreach (split / /,$line) {
220                         next unless $_; # skip  empty values (multiple spaces)
221                         # if the entry is already here, improve weight
222                         if ($result{$key}->{$_} =~ /$authid,$title\-(\d);/) {
223                             my $weight=$1+1;
224                             $result{$key}->{$_} =~ s/$authid,$title\-(\d);//;
225                             $result{$key}->{$_} .= "$authid,$title-$weight;";
226                         # otherwise, create it, with weight=1
227                         } else {
228                             $result{$key}->{$_}.="$authid,$title-1;";
229                         }
230                     }
231                 }
232             }
233             # the subfield is not indexed, store it in __RAW__ index anyway
234             unless ($indexed) {
235                 my $line= lc $subfield->[1];
236                 $line =~ s/-|\.|\?|,|;|!|'|\(|\)|\[|\]|{|}|"|<|>|&|\+|\*|\/|=/ /g;
237                 foreach (split / /,$line) {
238                         next unless $_;
239 #                     warn $record->as_formatted."$_ =>".$title;
240                         if ($result{__RAW__}->{$_} =~ /$authid,$title\-(\d);/) {
241                             my $weight=$1+1;
242 #                             $weight++;
243                             $result{__RAW__}->{$_} =~ s/$authid,$title\-(\d);//;
244                             $result{__RAW__}->{$_} .= "$authid,$title-$weight;";
245                         } else {
246                             $result{__RAW__}->{$_}.="$authid,$title-1;";
247                         }
248                 }
249             }
250         }
251     }
252 }
253 print "\nInserting...\n";
254 $i=0;
255 my $sth = $dbh->prepare("INSERT INTO nozebra (server,indexname,value,biblionumbers) VALUES ('authorityserver',?,?,?)");
256 foreach my $key (keys %result) {
257     foreach my $index (keys %{$result{$key}}) {
258         if (length($result{$key}->{$index}) > 1000000) {
259             print "very long index (".length($result{$key}->{$index}).")for $key / $index. update mySQL config file if you have an error just after this warning (max_paquet_size parameter)\n";
260         }
261         print "\r$i";
262         $i++;
263         $sth->execute($key,$index,$result{$key}->{$index});
264     }
265 }
266 print "\nauthorities done\n";