utf8 is a : go for beta test in HEAD.
[koha-ffzg.git] / updater / updatedatabase
1 #!/usr/bin/perl
2
3 # $Id$
4
5 # Database Updater
6 # This script checks for required updates to the database.
7
8 # Part of the Koha Library Software www.koha.org
9 # Licensed under the GPL.
10
11 # Bugs/ToDo:
12 # - Would also be a good idea to offer to do a backup at this time...
13
14 # NOTE:  If you do something more than once in here, make it table driven.
15 use strict;
16
17 # CPAN modules
18 use DBI;
19 use Getopt::Long;
20 # Koha modules
21 use C4::Context;
22
23 use MARC::Record;
24 use MARC::File::XML;
25
26 # FIXME - The user might be installing a new database, so can't rely
27 # on /etc/koha.conf anyway.
28
29 my $debug = 0;
30
31 my (
32     $sth, $sti,
33     $query,
34     %existingtables,    # tables already in database
35     %types,
36     $table,
37     $column,
38     $type, $null, $key, $default, $extra,
39     $prefitem,          # preference item in systempreferences table
40 );
41
42 my $silent;
43 GetOptions(
44         's' =>\$silent
45         );
46 my $dbh = C4::Context->dbh;
47 print "connected to your DB. Checking & modifying it\n" unless $silent;
48 $|=1; # flushes output
49
50 #-------------------
51 # Defines
52
53 # Tables to add if they don't exist
54 my %requiretables = (
55     categorytable       => "(categorycode char(5) NOT NULL default '',
56                              description text default '',
57                              itemtypecodes text default '',
58                              PRIMARY KEY (categorycode)
59                             )",
60     subcategorytable       => "(subcategorycode char(5) NOT NULL default '',
61                              description text default '',
62                              itemtypecodes text default '',
63                              PRIMARY KEY (subcategorycode)
64                             )",
65     mediatypetable       => "(mediatypecode char(5) NOT NULL default '',
66                              description text default '',
67                              itemtypecodes text default '',
68                              PRIMARY KEY (mediatypecode)
69                             )",
70     action_logs         => "(
71                                     `timestamp` TIMESTAMP NOT NULL ,
72                                     `user` INT( 11 ) NOT NULL ,
73                                     `module` TEXT default '',
74                                     `action` TEXT default '' ,
75                                     `object` INT(11) default '' ,
76                                     `info` TEXT default '' ,
77                                     PRIMARY KEY ( `timestamp` , `user` )
78                             )",
79         letter          => "(
80                                         module varchar(20) NOT NULL default '',
81                                         code varchar(20) NOT NULL default '',
82                                         name varchar(100) NOT NULL default '',
83                                         title varchar(200) NOT NULL default '',
84                                         content text,
85                                         PRIMARY KEY  (module,code)
86                                 )",
87         alert           =>"(
88                                         alertid int(11) NOT NULL auto_increment,
89                                         borrowernumber int(11) NOT NULL default '0',
90                                         type varchar(10) NOT NULL default '',
91                                         externalid varchar(20) NOT NULL default '',
92                                         PRIMARY KEY  (alertid),
93                                         KEY borrowernumber (borrowernumber),
94                                         KEY type (type,externalid)
95                                 )",
96
97 );
98
99 my %requirefields = (
100         subscription => { 'letter' => 'char(20) NULL', 'distributedto' => 'text NULL'},
101         itemtypes => { 'imageurl' => 'char(200) NULL'},
102 #    tablename        => { 'field' => 'fieldtype' },
103 );
104
105 my %dropable_table = (
106 # tablename => 'tablename',
107 );
108
109 my %uselessfields = (
110 # tablename => "field1,field2",
111         );
112 # the other hash contains other actions that can't be done elsewhere. they are done
113 # either BEFORE of AFTER everything else, depending on "when" entry (default => AFTER)
114
115 # The tabledata hash contains data that should be in the tables.
116 # The uniquefieldrequired hash entry is used to determine which (if any) fields
117 # must not exist in the table for this row to be inserted.  If the
118 # uniquefieldrequired entry is already in the table, the existing data is not
119 # modified, unless the forceupdate hash entry is also set.  Fields in the
120 # anonymous "forceupdate" hash will be forced to be updated to the default
121 # values given in the %tabledata hash.
122
123 my %tabledata = (
124 # tablename => [
125 #       {       uniquefielrequired => 'fieldname', # the primary key in the table
126 #               fieldname => fieldvalue,
127 #               fieldname2 => fieldvalue2,
128 #       },
129 # ],
130     systempreferences => [
131                 {
132             uniquefieldrequired => 'variable',
133             variable            => 'Activate_Log',
134             value               => 'On',
135             forceupdate         => { 'explanation' => 1,
136                                      'type' => 1},
137             explanation         => 'Turn Log Actions on DB On an Off',
138             type                => 'YesNo',
139         },
140         {
141             uniquefieldrequired => 'variable',
142             variable            => 'IndependantBranches',
143             value               => 0,
144             forceupdate         => { 'explanation' => 1,
145                                      'type' => 1},
146             explanation         => 'Turn Branch independancy management On an Off',
147             type                => 'YesNo',
148         },
149                 {
150             uniquefieldrequired => 'variable',
151             variable            => 'ReturnBeforeExpiry',
152             value               => 'Off',
153             forceupdate         => { 'explanation' => 1,
154                                      'type' => 1},
155             explanation         => 'If Yes, Returndate on issuing can\'t be after borrower card expiry',
156             type                => 'YesNo',
157         },
158         {
159             uniquefieldrequired => 'variable',
160             variable            => 'opacstylesheet',
161             value               => '',
162             forceupdate         => { 'explanation' => 1,
163                                      'type' => 1},
164             explanation         => 'Enter a complete URL to use an alternate stylesheet in OPAC',
165             type                => 'free',
166         },
167         {
168             uniquefieldrequired => 'variable',
169             variable            => 'opacsmallimage',
170             value               => '',
171             forceupdate         => { 'explanation' => 1,
172                                      'type' => 1},
173             explanation         => 'Enter a complete URL to an image, will be on top/left instead of the Koha logo',
174             type                => 'free',
175         },
176         {
177             uniquefieldrequired => 'variable',
178             variable            => 'opaclargeimage',
179             value               => '',
180             forceupdate         => { 'explanation' => 1,
181                                      'type' => 1},
182             explanation         => 'Enter a complete URL to an image, will be on the main page, instead of the Koha logo',
183             type                => 'free',
184         },
185         {
186             uniquefieldrequired => 'variable',
187             variable            => 'delimiter',
188             value               => ';',
189             forceupdate         => { 'explanation' => 1,
190                                      'type' => 1},
191             explanation         => 'separator for reports exported to spreadsheet',
192             type                => 'free',
193         },
194         {
195             uniquefieldrequired => 'variable',
196             variable            => 'MIME',
197             value               => 'OPENOFFICE.ORG',
198             forceupdate         => { 'explanation' => 1,
199                                      'type' => 1,
200                                      'options' => 1},
201             explanation         => 'Define the default application for report exportations into files',
202                 type            => 'Choice',
203                 options         => 'EXCEL|OPENOFFICE.ORG'
204         },
205         {
206             uniquefieldrequired => 'variable',
207             variable            => 'Delimiter',
208             value               => ';',
209                 forceupdate             => { 'explanation' => 1,
210                                      'type' => 1,
211                                      'options' => 1},
212             explanation         => 'Define the default separator character for report exportations into files',
213                 type            => 'Choice',
214                 options         => ';|tabulation|,|/|\|#'
215         },
216         {
217             uniquefieldrequired => 'variable',
218             variable            => 'SubscriptionHistory',
219             value               => ';',
220                 forceupdate             => { 'explanation' => 1,
221                                      'type' => 1,
222                                      'options' => 1},
223             explanation         => 'Define the information level for serials history in OPAC',
224                 type            => 'Choice',
225                 options         => 'simplified|full'
226         },
227         {
228             uniquefieldrequired => 'variable',
229             variable            => 'hidelostitems',
230             value               => 'No',
231             forceupdate         => { 'explanation' => 1,
232                                      'type' => 1},
233             explanation         => 'show or hide "lost" items in OPAC.',
234             type                => 'YesNo',
235         },
236                  {
237             uniquefieldrequired => 'variable',
238             variable            => 'IndependantBranches',
239             value               => '0',
240             forceupdate         => { 'explanation' => 1,
241                                      'type' => 1},
242             explanation         => 'Turn Branch independancy management On an Off',
243             type                => 'YesNo',
244         },
245                 {
246             uniquefieldrequired => 'variable',
247             variable            => 'ReturnBeforeExpiry',
248             value               => '0',
249             forceupdate         => { 'explanation' => 1,
250                                      'type' => 1},
251             explanation         => 'If Yes, Returndate on issuing can\'t be after borrower card expiry',
252             type                => 'YesNo',
253         },
254         {
255             uniquefieldrequired => 'variable',
256             variable            => 'Disable_Dictionary',
257             value               => '0',
258             forceupdate         => { 'explanation' => 1,
259                                      'type' => 1},
260             explanation         => 'Disables Dictionary buttons if set to yes',
261             type                => 'YesNo',
262         },
263         {
264             uniquefieldrequired => 'variable',
265             variable            => 'hide_marc',
266             value               => '0',
267             forceupdate         => { 'explanation' => 1,
268                                      'type' => 1},
269             explanation         => 'hide marc specific datas like subfield code & indicators to library',
270             type                => 'YesNo',
271         },
272     ],
273
274 );
275
276 my %fielddefinitions = (
277 # fieldname => [
278 #       {                 field => 'fieldname',
279 #             type    => 'fieldtype',
280 #             null    => '',
281 #             key     => '',
282 #             default => ''
283 #         },
284 #     ],
285         serial => [
286         {
287             field   => 'notes',
288             type    => 'TEXT',
289             null    => 'NULL',
290             key     => '',
291             default => '',
292             extra   => ''
293         },
294     ],
295 );
296
297 #-------------------
298 # Initialize
299
300 # Start checking
301
302 # Get version of MySQL database engine.
303 my $mysqlversion = `mysqld --version`;
304 $mysqlversion =~ /Ver (\S*) /;
305 $mysqlversion = $1;
306 if ( $mysqlversion ge '3.23' ) {
307     print "Could convert to MyISAM database tables...\n" unless $silent;
308 }
309
310 #---------------------------------
311 # Tables
312
313 # Collect all tables into a list
314 $sth = $dbh->prepare("show tables");
315 $sth->execute;
316 while ( my ($table) = $sth->fetchrow ) {
317     $existingtables{$table} = 1;
318 }
319
320
321 # Now add any missing tables
322 foreach $table ( keys %requiretables ) {
323     unless ( $existingtables{$table} ) {
324         print "Adding $table table...\n" unless $silent;
325         my $sth = $dbh->prepare("create table $table $requiretables{$table}");
326         $sth->execute;
327         if ( $sth->err ) {
328             print "Error : $sth->errstr \n";
329             $sth->finish;
330         }    # if error
331     }    # unless exists
332 }    # foreach
333
334 # now drop useless tables
335 foreach $table ( keys %dropable_table ) {
336         if ( $existingtables{$table} ) {
337                 print "Dropping unused table $table\n" if $debug and not $silent;
338                 $dbh->do("drop table $table");
339                 if ( $dbh->err ) {
340                         print "Error : $dbh->errstr \n";
341                 }
342         }
343 }
344
345 #---------------------------------
346 # Columns
347
348 foreach $table ( keys %requirefields ) {
349     print "Check table $table\n" if $debug and not $silent;
350     $sth = $dbh->prepare("show columns from $table");
351     $sth->execute();
352     undef %types;
353     while ( ( $column, $type, $null, $key, $default, $extra ) = $sth->fetchrow )
354     {
355         $types{$column} = $type;
356     }    # while
357     foreach $column ( keys %{ $requirefields{$table} } ) {
358         print "  Check column $column  [$types{$column}]\n" if $debug and not $silent;
359         if ( !$types{$column} ) {
360
361             # column doesn't exist
362             print "Adding $column field to $table table...\n" unless $silent;
363             $query = "alter table $table
364                         add column $column " . $requirefields{$table}->{$column};
365             print "Execute: $query\n" if $debug;
366             my $sti = $dbh->prepare($query);
367             $sti->execute;
368             if ( $sti->err ) {
369                 print "**Error : $sti->errstr \n";
370                 $sti->finish;
371             }    # if error
372         }    # if column
373     }    # foreach column
374 }    # foreach table
375
376 foreach $table ( keys %fielddefinitions ) {
377         print "Check table $table\n" if $debug;
378         $sth = $dbh->prepare("show columns from $table");
379         $sth->execute();
380         my $definitions;
381         while ( ( $column, $type, $null, $key, $default, $extra ) = $sth->fetchrow )
382         {
383                 $definitions->{$column}->{type}    = $type;
384                 $definitions->{$column}->{null}    = $null;
385                 $definitions->{$column}->{null}    = 'NULL' if $null eq 'YES';
386                 $definitions->{$column}->{key}     = $key;
387                 $definitions->{$column}->{default} = $default;
388                 $definitions->{$column}->{extra}   = $extra;
389         }    # while
390         my $fieldrow = $fielddefinitions{$table};
391         foreach my $row (@$fieldrow) {
392                 my $field   = $row->{field};
393                 my $type    = $row->{type};
394                 my $null    = $row->{null};
395 #               $null    = 'YES' if $row->{null} eq 'NULL';
396                 my $key     = $row->{key};
397                 my $default = $row->{default};
398                 my $null    = $row->{null};
399 #               $default="''" unless $default;
400                 my $extra   = $row->{extra};
401                 my $def     = $definitions->{$field};
402
403                 unless ( $type eq $def->{type}
404                         && $null eq $def->{null}
405                         && $key eq $def->{key}
406                         && $extra eq $def->{extra} )
407                 {
408                         if ( $null eq '' ) {
409                                 $null = 'NOT NULL';
410                         }
411                         if ( $key eq 'PRI' ) {
412                                 $key = 'PRIMARY KEY';
413                         }
414                         unless ( $extra eq 'auto_increment' ) {
415                                 $extra = '';
416                         }
417
418                         # if it's a new column use "add", if it's an old one, use "change".
419                         my $action;
420                         if ($definitions->{$field}->{type}) {
421                                 $action="change $field"
422                         } else {
423                                 $action="add";
424                         }
425 # if it's a primary key, drop the previous pk, before altering the table
426                         my $sth;
427                         if ($key ne 'PRIMARY KEY') {
428                                 $sth =$dbh->prepare("alter table $table $action $field $type $null $key $extra default ?");
429                         } else {
430                                 $sth =$dbh->prepare("alter table $table drop primary key, $action $field $type $null $key $extra default ?");
431                         }
432                         $sth->execute($default);
433                         print "  Alter $field in $table\n" unless $silent;
434                 }
435         }
436 }
437
438
439 # Populate tables with required data
440 foreach my $table ( keys %tabledata ) {
441     print "Checking for data required in table $table...\n" unless $silent;
442     my $tablerows = $tabledata{$table};
443     foreach my $row (@$tablerows) {
444         my $uniquefieldrequired = $row->{uniquefieldrequired};
445         my $uniquevalue         = $row->{$uniquefieldrequired};
446         my $forceupdate         = $row->{forceupdate};
447         my $sth                 =
448           $dbh->prepare(
449 "select $uniquefieldrequired from $table where $uniquefieldrequired=?"
450         );
451         $sth->execute($uniquevalue);
452         if ($sth->rows) {
453             foreach my $field (keys %$forceupdate) {
454                 if ($forceupdate->{$field}) {
455                     my $sth=$dbh->prepare("update systempreferences set $field=? where $uniquefieldrequired=?");
456                     $sth->execute($row->{$field}, $uniquevalue);
457                 }
458             }
459         } else {
460             print "Adding row to $table: " unless $silent;
461             my @values;
462             my $fieldlist;
463             my $placeholders;
464             foreach my $field ( keys %$row ) {
465                 next if $field eq 'uniquefieldrequired';
466                 next if $field eq 'forceupdate';
467                 my $value = $row->{$field};
468                 push @values, $value;
469                 print "  $field => $value" unless $silent;
470                 $fieldlist .= "$field,";
471                 $placeholders .= "?,";
472             }
473             print "\n" unless $silent;
474             $fieldlist    =~ s/,$//;
475             $placeholders =~ s/,$//;
476             my $sth =
477               $dbh->prepare(
478                 "insert into $table ($fieldlist) values ($placeholders)");
479             $sth->execute(@values);
480         }
481     }
482 }
483
484 #
485 # SPECIFIC STUFF
486 #
487 #
488 # create frameworkcode row in biblio table & fill it with marc_biblio.frameworkcode.
489 #
490
491 # 1st, get how many biblio we will have to do...
492 $sth = $dbh->prepare('select count(*) from marc_biblio');
493 $sth->execute;
494 my ($totaltodo) = $sth->fetchrow;
495
496 $sth = $dbh->prepare("show columns from biblio");
497 $sth->execute();
498 my $definitions;
499 my $bibliofwexist=0;
500 while ( ( $column, $type, $null, $key, $default, $extra ) = $sth->fetchrow ){
501         $bibliofwexist=1 if $column eq 'frameworkcode';
502 }
503 unless ($bibliofwexist) {
504         print "moving biblioframework to biblio table\n";
505         $dbh->do('ALTER TABLE `biblio` ADD `frameworkcode` VARCHAR( 4 ) NOT NULL AFTER `biblionumber`');
506         $sth = $dbh->prepare('select biblionumber,frameworkcode from marc_biblio');
507         $sth->execute;
508         my $sth_update = $dbh->prepare('update biblio set frameworkcode=? where biblionumber=?');
509         my $totaldone=0;
510         while (my ($biblionumber,$frameworkcode) = $sth->fetchrow) {
511                 $sth_update->execute($frameworkcode,$biblionumber);
512                 $totaldone++;
513                 print "\r$totaldone / $totaltodo" unless ($totaldone % 100);
514         }
515         print "\rdone\n";
516 }
517
518 #
519 # moving MARC data from marc_subfield_table to biblioitems.marc
520 #
521 $sth = $dbh->prepare("show columns from biblioitems");
522 $sth->execute();
523 my $definitions;
524 my $marcdone=0;
525 while ( ( $column, $type, $null, $key, $default, $extra ) = $sth->fetchrow ){
526         $marcdone=1 if ($type eq 'blob' && $column eq 'marc') ;
527 }
528 unless ($marcdone) {
529         print "moving MARC record to biblioitems table\n";
530         # changing marc field type
531         $dbh->do('ALTER TABLE `biblioitems` CHANGE `marc` `marc` BLOB NULL DEFAULT NULL ');
532         # adding marc xml, just for convenience
533         $dbh->do('ALTER TABLE `biblioitems` ADD `marcxml` TEXT NOT NULL');
534         # moving data from marc_subfield_value to biblio
535         $sth = $dbh->prepare('select bibid,biblionumber from marc_biblio');
536         $sth->execute;
537         my $sth_update = $dbh->prepare('update biblioitems set marc=?, marcxml=? where biblionumber=?');
538         my $totaldone=0;
539         while (my ($bibid,$biblionumber) = $sth->fetchrow) {
540                 my $record = MARCgetbiblio($dbh,$bibid);
541                 $sth_update->execute($record->as_usmarc(),$record->as_xml(),$biblionumber);
542                 $totaldone++;
543                 print "\r$totaldone / $totaltodo" unless ($totaldone % 100);
544         }
545         print "\rdone\n";
546 }
547
548 # MOVE all tables TO UTF-8 and innoDB
549 $sth = $dbh->prepare("show table status");
550 $sth->execute;
551 while ( my $table = $sth->fetchrow_hashref ) {
552         if ($table->{Engine} ne 'InnoDB') {
553                 $dbh->do("ALTER TABLE $table->{Name} TYPE = innodb");
554                 print "moving $table->{Name} to InnoDB\n";
555         }
556         unless ($table->{Collation} =~ /^utf8/) {
557                 $dbh->do("ALTER TABLE $table->{Name} DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci");
558                 # FIXME : maybe a ALTER TABLE tbl_name CONVERT TO CHARACTER SET utf8 would be better, def char set seems to work fine. If any problem encountered, let's try with convert !
559                 print "moving $table->{Name} to utf8\n";
560         } else {
561         }
562 }
563
564 # at last, remove useless fields
565 foreach $table ( keys %uselessfields ) {
566         my @fields = split /,/,$uselessfields{$table};
567         my $fields;
568         my $exists;
569         foreach my $fieldtodrop (@fields) {
570                 $fieldtodrop =~ s/\t//g;
571                 $fieldtodrop =~ s/\n//g;
572                 $exists =0;
573                 $sth = $dbh->prepare("show columns from $table");
574                 $sth->execute;
575                 while ( my ( $column, $type, $null, $key, $default, $extra ) = $sth->fetchrow )
576                 {
577                         $exists =1 if ($column eq $fieldtodrop);
578                 }
579                 if ($exists) {
580                         print "deleting $fieldtodrop field in $table...\n" unless $silent;
581                         my $sth = $dbh->prepare("alter table $table drop $fieldtodrop");
582                         $sth->execute;
583                 }
584         }
585 }    # foreach
586
587
588 $sth->finish;
589
590 #
591 # those 2 subs are a copy of Biblio.pm, version 2.2.4
592 # they are useful only once, for moving from 2.2 to 3.0
593 # the MARCgetbiblio & MARCgetitem subs in Biblio.pm
594 # are still here, but uses other tables
595 # (the ones that are filled by updatedatabase !)
596 #
597 sub MARCgetbiblio {
598
599     # Returns MARC::Record of the biblio passed in parameter.
600     my ( $dbh, $bibid ) = @_;
601     my $record = MARC::Record->new();
602 #       warn "". $bidid;
603
604     my $sth =
605       $dbh->prepare(
606 "select bibid,subfieldid,tag,tagorder,tag_indicator,subfieldcode,subfieldorder,subfieldvalue,valuebloblink
607                                  from marc_subfield_table
608                                  where bibid=? order by tag,tagorder,subfieldorder
609                          "
610     );
611     my $sth2 =
612       $dbh->prepare(
613         "select subfieldvalue from marc_blob_subfield where blobidlink=?");
614     $sth->execute($bibid);
615     my $prevtagorder = 1;
616     my $prevtag      = 'XXX';
617     my $previndicator;
618     my $field;        # for >=10 tags
619     my $prevvalue;    # for <10 tags
620     while ( my $row = $sth->fetchrow_hashref ) {
621
622         if ( $row->{'valuebloblink'} ) {    #---- search blob if there is one
623             $sth2->execute( $row->{'valuebloblink'} );
624             my $row2 = $sth2->fetchrow_hashref;
625             $sth2->finish;
626             $row->{'subfieldvalue'} = $row2->{'subfieldvalue'};
627         }
628         if ( $row->{tagorder} ne $prevtagorder || $row->{tag} ne $prevtag ) {
629             $previndicator .= "  ";
630             if ( $prevtag < 10 ) {
631                                 if ($prevtag ne '000') {
632                         $record->add_fields( ( sprintf "%03s", $prevtag ), $prevvalue ) unless $prevtag eq "XXX";    # ignore the 1st loop
633                                 } else {
634                                         $record->leader(sprintf("%24s",$prevvalue));
635                                 }
636             }
637             else {
638                 $record->add_fields($field) unless $prevtag eq "XXX";
639             }
640             undef $field;
641             $prevtagorder  = $row->{tagorder};
642             $prevtag       = $row->{tag};
643             $previndicator = $row->{tag_indicator};
644             if ( $row->{tag} < 10 ) {
645                 $prevvalue = $row->{subfieldvalue};
646             }
647             else {
648                 $field = MARC::Field->new(
649                     ( sprintf "%03s", $prevtag ),
650                     substr( $row->{tag_indicator} . '  ', 0, 1 ),
651                     substr( $row->{tag_indicator} . '  ', 1, 1 ),
652                     $row->{'subfieldcode'},
653                     $row->{'subfieldvalue'}
654                 );
655             }
656         }
657         else {
658             if ( $row->{tag} < 10 ) {
659                 $record->add_fields( ( sprintf "%03s", $row->{tag} ),
660                     $row->{'subfieldvalue'} );
661             }
662             else {
663                 $field->add_subfields( $row->{'subfieldcode'},
664                     $row->{'subfieldvalue'} );
665             }
666             $prevtag       = $row->{tag};
667             $previndicator = $row->{tag_indicator};
668         }
669     }
670
671     # the last has not been included inside the loop... do it now !
672     if ( $prevtag ne "XXX" )
673     { # check that we have found something. Otherwise, prevtag is still XXX and we
674          # must return an empty record, not make MARC::Record fail because we try to
675          # create a record with XXX as field :-(
676         if ( $prevtag < 10 ) {
677             $record->add_fields( $prevtag, $prevvalue );
678         }
679         else {
680
681             #           my $field = MARC::Field->new( $prevtag, "", "", %subfieldlist);
682             $record->add_fields($field);
683         }
684     }
685     return $record;
686 }
687
688 sub MARCgetitem {
689
690     # Returns MARC::Record of the biblio passed in parameter.
691     my ( $dbh, $bibid, $itemnumber ) = @_;
692     my $record = MARC::Record->new();
693
694     # search MARC tagorder
695     my $sth2 =
696       $dbh->prepare(
697 "select tagorder from marc_subfield_table,marc_subfield_structure where marc_subfield_table.tag=marc_subfield_structure.tagfield and marc_subfield_table.subfieldcode=marc_subfield_structure.tagsubfield and bibid=? and kohafield='items.itemnumber' and subfieldvalue=?"
698     );
699     $sth2->execute( $bibid, $itemnumber );
700     my ($tagorder) = $sth2->fetchrow_array();
701
702     #---- TODO : the leader is missing
703     my $sth =
704       $dbh->prepare(
705 "select bibid,subfieldid,tag,tagorder,tag_indicator,subfieldcode,subfieldorder,subfieldvalue,valuebloblink
706                                  from marc_subfield_table
707                                  where bibid=? and tagorder=? order by subfieldcode,subfieldorder
708                          "
709     );
710     $sth2 =
711       $dbh->prepare(
712         "select subfieldvalue from marc_blob_subfield where blobidlink=?");
713     $sth->execute( $bibid, $tagorder );
714     while ( my $row = $sth->fetchrow_hashref ) {
715         if ( $row->{'valuebloblink'} ) {    #---- search blob if there is one
716             $sth2->execute( $row->{'valuebloblink'} );
717             my $row2 = $sth2->fetchrow_hashref;
718             $sth2->finish;
719             $row->{'subfieldvalue'} = $row2->{'subfieldvalue'};
720         }
721         if ( $record->field( $row->{'tag'} ) ) {
722             my $field;
723
724 #--- this test must stay as this, because of strange behaviour of mySQL/Perl DBI with char var containing a number...
725             #--- sometimes, eliminates 0 at beginning, sometimes no ;-\\\
726             if ( length( $row->{'tag'} ) < 3 ) {
727                 $row->{'tag'} = "0" . $row->{'tag'};
728             }
729             $field = $record->field( $row->{'tag'} );
730             if ($field) {
731                 my $x =
732                   $field->add_subfields( $row->{'subfieldcode'},
733                     $row->{'subfieldvalue'} );
734                 $record->delete_field($field);
735                 $record->add_fields($field);
736             }
737         }
738         else {
739             if ( length( $row->{'tag'} ) < 3 ) {
740                 $row->{'tag'} = "0" . $row->{'tag'};
741             }
742             my $temp =
743               MARC::Field->new( $row->{'tag'}, " ", " ",
744                 $row->{'subfieldcode'} => $row->{'subfieldvalue'} );
745             $record->add_fields($temp);
746         }
747
748     }
749     return $record;
750 }
751
752
753 exit;
754
755 # $Log$
756 # Revision 1.125  2006/01/04 15:54:55  tipaul
757 # utf8 is a : go for beta test in HEAD.
758 # some explanations :
759 # - updater/updatedatabase => will transform all tables in innoDB (not related to utf8, just to warn you) AND collate them in utf8 / utf8_general_ci. The SQL command is : ALTER TABLE tablename DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci.
760 # - *-top.inc will show the pages in utf8
761 # - THE HARD THING : for me, mysql-client and mysql-server were set up to communicate in iso8859-1, whatever the mysql collation ! Thus, pages were improperly shown, as datas were transmitted in iso8859-1 format ! After a full day of investigation, someone on usenet pointed "set NAMES 'utf8'" to explain that I wanted utf8. I could put this in my.cnf, but if I do that, ALL databases will "speak" in utf8, that's not what we want. Thus, I added a line in Context.pm : everytime a DB handle is opened, the communication is set to utf8.
762 # - using marcxml field and no more the iso2709 raw marc biblioitems.marc field.
763 #
764 # Revision 1.124  2005/10/27 12:09:05  tipaul
765 # new features for serial module :
766 # - the last 5 issues are now shown, and their status can be changed (but not reverted to "waited", as there can be only one "waited")
767 # - the library can create a "distribution list". this paper contains a list of borrowers (selected from the borrower list, or manually entered), and print it for a given issue. once printed, the sheet can be put on the issue and distributed to every reader on the list (one by one).
768 #
769 # Revision 1.123  2005/10/26 09:13:37  tipaul
770 # big commit, still breaking things...
771 #
772 # * synch with rel_2_2. Probably the last non manual synch, as rel_2_2 should not be modified deeply.
773 # * code cleaning (cleaning warnings from perl -w) continued
774 #
775 # Revision 1.122  2005/09/02 14:18:38  tipaul
776 # new feature : image for itemtypes.
777 #
778 # * run updater/updatedatabase to create imageurl field in itemtypes.
779 # * go to Koha >> parameters >> itemtypes >> modify (or add) an itemtype. You will see around 20 nice images to choose between (thanks to owen). If you prefer your own image, you also can type a complete url (http://www.myserver.lib/path/to/my/image.gif)
780 # * go to OPAC, and search something. In the result list, you now have the picture instead of the text itemtype.
781 #
782 # Revision 1.121  2005/08/24 08:49:03  hdl
783 # Adding a note field in serial table.
784 # This will allow librarian to mention a note on a peculiar waiting serial number.
785 #
786 # Revision 1.120  2005/08/09 14:10:32  tipaul
787 # 1st commit to go to zebra.
788 # don't update your cvs if you want to have a working head...
789 #
790 # this commit contains :
791 # * updater/updatedatabase : get rid with marc_* tables, but DON'T remove them. As a lot of things uses them, it would not be a good idea for instance to drop them. If you really want to play, you can rename them to test head without them but being still able to reintroduce them...
792 # * Biblio.pm : modify MARCgetbiblio to find the raw marc record in biblioitems.marc field, not from marc_subfield_table, modify MARCfindframeworkcode to find frameworkcode in biblio.frameworkcode, modify some other subs to use biblio.biblionumber & get rid of bibid.
793 # * other files : get rid of bibid and use biblionumber instead.
794 #
795 # What is broken :
796 # * does not do anything on zebra yet.
797 # * if you rename marc_subfield_table, you can't search anymore.
798 # * you can view a biblio & bibliodetails, go to MARC editor, but NOT save any modif.
799 # * don't try to add a biblio, it would add data poorly... (don't try to delete either, it may work, but that would be a surprise ;-) )
800 #
801 # IMPORTANT NOTE : you need MARC::XML package (http://search.cpan.org/~esummers/MARC-XML-0.7/lib/MARC/File/XML.pm), that requires a recent version of MARC::Record
802 # Updatedatabase stores the iso2709 data in biblioitems.marc field & an xml version in biblioitems.marcxml Not sure we will keep it when releasing the stable version, but I think it's a good idea to have something readable in sql, at least for development stage.
803 #
804 # Revision 1.119  2005/08/04 16:07:58  tipaul
805 # Synch really broke this script...
806 #
807 # Revision 1.118  2005/08/04 16:02:55  tipaul
808 # oops... error in synch between 2.2 and head
809 #
810 # Revision 1.117  2005/08/04 14:24:39  tipaul
811 # synch'ing 2.2 and head
812 #
813 # Revision 1.116  2005/08/04 08:55:54  tipaul
814 # Letters / alert system, continuing...
815 #
816 # * adding a package Letters.pm, that manages Letters & alerts.
817 # * adding feature : it's now possible to define a "letter" for any subscription created. If a letter is defined, users in OPAC can put an alert on the subscription. When an issue is marked "arrived", all users in the alert will recieve a mail (as defined in the "letter"). This last part (= send the mail) is not yet developped. (Should be done this week)
818 # * adding feature : it's now possible to "put to an alert" in OPAC, for any serial subscription. The alert is stored in a new table, called alert. An alert can be put only if the librarian has activated them in subscription (and they activate it just by choosing a "letter" to sent to borrowers on new issues)
819 # * adding feature : librarian can see in borrower detail which alerts they have put, and a user can see in opac-detail which alert they have put too.
820 #
821 # Note that the system should be generic enough to manage any type of alert.
822 # I plan to extend it soon to virtual shelves : a borrower will be able to put an alert on a virtual shelf, to be warned when something is changed in the virtual shelf (mail being sent once a day by cron, or manually by the shelf owner. Anyway, a mail won't be sent on every change, users would be spammed by Koha ;-) )
823 #
824 # Revision 1.115  2005/08/02 16:15:34  tipaul
825 # adding 2 fields to letter system :
826 # * module (acquisition, catalogue...) : it will be usefull to show the librarian only letters he may be interested by.
827 # * title, that will be used as mail subject.
828 #
829 # Revision 1.114  2005/07/28 15:10:13  tipaul
830 # Introducing new "Letters" system : Letters will be used everytime you want to sent something to someone (through mail or paper). For example, sending a mail for overdues use letter that you can put as parameters. Sending a mail to a borrower when a suggestion is validated uses a letter too.
831 # the letter table contains 3 fields :
832 # * code => the code of the letter
833 # * name => the complete name of the letter
834 # * content => the complete text. It's a TEXT field type, so has no limits.
835 #
836 # My next goal now is to work on point 2-I "serial issue alert"
837 # With this feature, in serials, a user can subscribe the "issue alert". For every issue arrived/missing, a mail is sent to all subscribers of this list. The mail warns the user that the issue is arrive or missing. Will be in head.
838 # (see mail on koha-devel, 2005/04/07)
839 #
840 # The "serial issue alert" will be the 1st to use this letter system that probably needs some tweaking ;-)
841 #
842 # Once it will be stabilised default letters (in any languages) could be added during installer to help the library begin with this new feature.
843 #
844 # Revision 1.113  2005/07/28 08:38:41  tipaul
845 # For instance, the return date does not rely on the borrower expiration date. A systempref will be added in Koha, to modify return date calculation schema :
846 # * ReturnBeforeExpiry = yes => return date can't be after expiry date
847 # * ReturnBeforeExpiry = no  => return date can be after expiry date
848 #
849 # Revision 1.112  2005/07/26 08:19:47  hdl
850 # Adding IndependantBranches System preference variable in order to manage Branch independancy.
851 #
852 # Revision 1.111  2005/07/25 15:35:38  tipaul
853 # we have decided that moving to Koha 3.0 requires being already in Koha 2.2.x
854 # So, the updatedatabase script can highly be cleaned (90% removed).
855 # Let's play with the new Koha DB structure now ;-)
856 #