Bug 19661: (follow-up) Use Basic auth in tests
[koha.git] / misc / migration_tools / create_analytical_rel.pl
1 #!/usr/bin/perl
2
3 use strict;
4 #use warnings; FIXME - Bug 2505
5 BEGIN {
6     # find Koha's Perl modules
7     # test carefully before changing this
8     use FindBin;
9     eval { require "$FindBin::Bin/../kohalib.pl" };
10 }
11
12 use C4::Context;
13 use C4::Biblio;
14 use C4::Items;
15 use Koha::Items;
16 use Getopt::Long;
17
18 $| = 1;
19
20 # command-line parameters
21 my $want_help = 0;
22 my $do_update = 0;
23 my $wherestrings;
24
25 my $result = GetOptions(
26     'run-update'    => \$do_update,
27     'where=s@'         => \$wherestrings,
28     'h|help'        => \$want_help,
29 );
30
31 if (not $result or $want_help or not $do_update) {
32     print_usage();
33     exit 0;
34 }
35
36 my $num_bibs_processed     = 0;
37 my $num_bibs_modified      = 0;
38 my $num_noitem_forbarcode = 0;
39 my $num_nobarcode_inhostfield =0;
40 my $num_hostfields_unabletomodify =0;
41 my $num_bad_bibs           = 0;
42 my $dbh = C4::Context->dbh;
43 $dbh->{AutoCommit} = 0;
44
45 process_bibs();
46 $dbh->commit();
47
48 exit 0;
49
50 sub process_bibs {
51     my $sql = "SELECT biblionumber FROM biblio JOIN biblioitems USING (biblionumber)";
52     $sql.="WHERE ". join(" AND ",@$wherestrings) if ($wherestrings);
53     $sql.="ORDER BY biblionumber ASC";
54     my $sth = $dbh->prepare($sql);
55     eval{$sth->execute();};
56     if ($@){ die "error $@";};
57     while (my ($biblionumber) = $sth->fetchrow_array()) {
58         $num_bibs_processed++;
59         process_bib($biblionumber);
60
61         if (($num_bibs_processed % 100) == 0) {
62             print_progress_and_commit($num_bibs_processed);
63         }
64     }
65
66     $dbh->commit;
67
68     print <<_SUMMARY_;
69
70 Create Analytical records relationships report
71 -----------------------------------------------
72 Number of bibs checked:                   $num_bibs_processed
73 Number of bibs modified:                  $num_bibs_modified
74 Number of hostfields with no barcodes:          $num_nobarcode_inhostfield
75 Number of barcodes not found:                   $num_noitem_forbarcode
76 Number of hostfields unable to modify:          $num_hostfields_unabletomodify
77 Number of bibs with errors:               $num_bad_bibs
78 _SUMMARY_
79 }
80
81 sub process_bib {
82     my $biblionumber = shift;
83
84     my $bib = GetMarcBiblio({ biblionumber => $biblionumber });
85     unless (defined $bib) {
86         print "\nCould not retrieve bib $biblionumber from the database - record is corrupt.\n";
87         $num_bad_bibs++;
88         return;
89     }
90         #loop through each host field and populate subfield 0 and 9
91     my $analyticfield = '773';
92         foreach my $hostfield ( $bib->field($analyticfield) ) {
93                 if(my $barcode = $hostfield->subfield('o')){
94             my $item = Koha::Items->find({ barcode => $barcode });
95             if ($item) {
96                 my $modif;
97                 if ( $hostfield->subfield('0') ne $biblionumber ) {
98                     $hostfield->update( '0', $biblionumber );
99                     $modif = 1;
100                 }
101                 if ( $hostfield->subfield('9') ne $item->itemnumber ) {
102                     $hostfield->update( '9', $item->itemnumber );
103                     $modif = 1;
104                 }
105                 if ($modif) {
106                     $num_bibs_modified++;
107                     my $modresult = ModBiblio( $bib, $biblionumber, '' );
108                     warn "Modifying biblio $biblionumber";
109                     if ( !$modresult ) {
110                         warn "Unable to modify biblio $biblionumber with update host field";
111                         $num_hostfields_unabletomodify++;
112                     }
113                 }
114             }
115             else {
116                 warn "No item record found for barcode $barcode";
117                 $num_noitem_forbarcode++;
118             }
119                 } else{
120                         warn "No barcode in host field for biblionumber $biblionumber";
121                         $num_nobarcode_inhostfield++;
122                 }
123         }
124 }
125
126 sub print_progress_and_commit {
127     my $recs = shift;
128     $dbh->commit();
129     print "... processed $recs records\n";
130 }
131
132 sub print_usage {
133     print <<_USAGE_;
134 $0: establish relationship to host items
135
136 Based on barcode in host field populates subfield 0 with host biblionumber and subfield 9 with host itemnumber.
137
138 Subfield 0 and 9 are used in Koha screns to display relationships between analytical records and host bibs and items.
139
140 NOT usable with UNIMARC data. You can use it only if you have tag 461 with also an items id (like barcode or item numbers). In UNIMARC this situation is very rare. If you have data coded in this way, send a mail to koha-dev mailing list and ask for the feature.
141
142 Parameters:
143     --run-update            run the synchronization
144     --where condition       selects the biblios on a criterium (Repeatable)
145     --help or -h            show this message.
146 _USAGE_
147 }