userid, returndate
[ferlib2koha.git] / ferlib2koha.pl
index fd94298..8588ee3 100755 (executable)
 use strict;
 use DBI;
 use Data::Dump qw/dump/;
+use Algorithm::CheckDigits;
 
 $|++;
 
+my $import = {
+       borrowers => 1,
+       issues => 1,
+       barcode => 1,
+};
+
 my $f = DBI->connect("dbi:SQLite:dbname=knjiznica.sqlite","","", { RaiseError => 1, AutoCommit => 0 }) || die $DBI::errstr;
 $f->{sqlite_unicode} = 1;
 my $k = DBI->connect("dbi:mysql:database=koha_fer","","", { RaiseError => 1, AutoCommit => 0, mysql_enable_utf8 => 1 }) || die $DBI::errstr;
+my $u = DBI->connect("dbi:CSV:","","", { RaiseError => 1, f_ext => '.csv', csv_sep_char => '|' }) || die $DBI::errstr;
 
 our $lookup;
 sub lookup {
-       my ($t, $k, $v, $s ) = @_;
+       my ( $dbh, $t, $k, $v, $s, $default ) = @_;
        my $hash;
        my $key = "$t $k $v";
        if ( exists $lookup->{$key} ) {
                $hash = $lookup->{$key};
        } else {
                warn "# select $k,$v from $t";
-               my $sth = $f->prepare( "select $k,$v from $t" );
+               my $sth = $dbh->prepare( "select $k,$v from $t" );
                $sth->execute;
                while (my $row = $sth->fetchrow_hashref() ) {
                        $hash->{ $row->{$k} } = $row->{$v};
                }
                $lookup->{$key} = $hash;
-               warn dump($lookup);
+               warn "# lookup $key = ",dump($hash);
        }
        return unless length $s > 1;
        if ( ! exists $lookup->{$key}->{$s} ) {
                warn "ERROR: no $s in $key\n";
-               return $s;
+               return $default;
        } else {
                $lookup->{$key}->{$s};
        }
 }
 
-# select all posts which have been read or unread
-my $sql = qq{
+our $insert;
+sub insert {
+       my ( $table, $row ) = @_;
+       $insert->{$table} ||= $k->prepare(
+                       "insert into $table ("
+                       . join(',', keys %$row)
+                       . ") values ("
+                       . join(',', map { '?' } keys %$row )
+                       . ")"
+       );
+
+       foreach my $c ( grep { /(date|timestamp)/ } keys %$row ) {
+               $row->{$c} =~ s/^(\d\d)\.(\d\d)\.(\d\d\d\d)/$3-$2-$1/;
+       }
+
+       $insert->{$table}->execute( values %$row );
+       warn "# inserted ", dump $row;
+
+}
+
+sub borrowers {
+       my $sql = shift;
+       my $sth = $f->prepare($sql);
+       $sth->execute;
+
+       $insert = undef;
+
+       while (my $row = $sth->fetchrow_hashref ) {
+
+               warn dump $row;
+
+               # poor man's (sqlite) outer join
+               $row->{'country'} = lookup($f, 'drzava', 'ozn_drzava', 'naz_drzava', $row->{'country'}, $row->{contry} );
+               $row->{'city'}    = lookup($f, 'mjesto', 'post_ozn', 'naz_mjesto', $row->{'city'}, $row->{city} );
+
+               $row->{'B_country'} = lookup($f, 'drzava', 'ozn_drzava', 'naz_drzava', $row->{'B_country'}, $row->{B_country} );
+               $row->{'B_city'}    = lookup($f, 'mjesto', 'post_ozn', 'naz_mjesto', $row->{'B_city'}, $row->{B_city} );
+
+               $row->{'B_email'}  = lookup($f, 'clanost', 'ozn_vrclan||ozn_clan', 'email', $row->{'cardnumber'}, undef);
+               $row->{'emailpro'} = lookup($f, 'clanost', 'ozn_vrclan||ozn_clan', 'email_k', $row->{'cardnumber'}, undef);
+
+               $row->{'email'}    = lookup($u, 'users', 'jmbag', 'email', substr($row->{cardnumber},1), undef); # $row->{B_email} || $row->{emailpro} )
+
+               $row->{'userid'}    = lookup($u, 'users', 'jmbag', 'nick', substr($row->{cardnumber},1), $row->{cardnumber});
+
+               $row->{sex} =~ s/\x{17D}/F/;
+
+               $row->{city} ||= '?'; # not null
+
+               $row->{borrowernotes} = lookup($f, 'clanorg', 'ozn_vrclan||ozn_clan', 'napom_clan', $row->{'cardnumber'}, undef);
+
+               $row->{title} = lookup($f, 'titula', 'ozn_titula', 'opis_titula', $row->{title}, $row->{title});
+
+               $row->{dateexpiry} ||= '01.01.2020'; # next revision
+
+               my $jmbg = delete $row->{jmbg};
+
+               insert 'borrowers' => $row;
+
+               insert 'borrower_attributes' => {
+                       borrowernumber => $k->{mysql_insertid},
+                       code => 'JMBG',
+                       attribute => $jmbg,
+               } if $jmbg;
+
+       }
+}
+
+if ( $import->{borrowers} ) {
+
+$k->do(qq{ delete from borrowers where borrowernumber > 57 });
+$k->do(qq{ delete from borrower_attributes where borrowernumber > 57 });
+
+borrowers qq{
 select
   'S' as categorycode,
   'SRE' as branchcode,
-  mbr_stud as cardnumber,
+  'S' || mbr_stud as cardnumber,
   prez_stud as surname,
   ime_stud as firstname,
   djevprezime as othernames,
@@ -58,51 +138,121 @@ select
   post_ozn_stan as B_city,
   adr_stan as B_address,
   tel_stud as phone,
-  dat_prava_do as dateexpiry
+  dat_prava_do as dateexpiry,
 --  aktivan as ??,
+  jmbg_stud as jmbg
 from studk
 };
 
-my $sth = $f->prepare($sql);
-$sth->execute;
+borrowers qq{
+select
+  'D' as categorycode,
+  'SRE' as branchcode,
+  'D' || sif_djel as cardnumber,
+  ime_djel as firstname,
+  prez_djel as surname,
+  ozn_titula as title,
+--  sif_orgjed (REF orgjed) as B_address,
+--  sif_strsp_djel as ??,
+  tel_djel as phonepro,
+  dat_prekid_ro as dateexpiry,
+--  tel_poduz as ??,
+  fax_poduz as fax,
+  ozn_drzava as country,
+  post_ozn as zipcode,
+  post_ozn as city,
+  adr_stan as address,
+  tel_stan as phone,
+  jmbg_djel as jmbg
+from djelat
+};
 
-our $insert;
-sub insert {
-       my ( $table, $row ) = @_;
-       $insert->{$table} ||= $k->prepare(
-                       "insert into $table ("
-                       . join(',', keys %$row)
-                       . ") values ("
-                       . join(',', map { '?' } keys %$row )
-                       . ")"
-       );
-       $insert->{$table}->execute( values %$row );
-       warn "# inserted ", dump $row;
+borrowers qq{
+select
+  'O' as categorycode,
+  'SRE' as branchcode,
+  'O' || mbr_clan as cardnumber,
+  ime_clan as firstname,
+  prez_clan as surname,
+  ozn_titula as title,
+  zvanje_clan as ethnicity, -- XXX we are not allowerd by low to collect ethnicity
+--  krat_poduz (REF poduz) as B_address,
+  tel_poduz as B_phone,
+--  fax_poduz as ??,
+  ozn_drzava as country,
+  post_ozn as zipcode,
+  post_ozn as city,
+  adr_stan as address,
+  tel_stan as phone,
+--  aktivan as ??,
+  jmbg_clan as jmbg
+from clost
+};
+
+my $sth_syspref = $k->prepare(qq{ update systempreferences set value=? where variable=? });
+my $BorrowersTitles = join('|', @{ $k->selectcol_arrayref(qq{ select distinct title from borrowers where title != '' }) });
+$sth_syspref->execute( $BorrowersTitles => 'BorrowersTitles' );
+warn "# BorrowersTitles [$BorrowersTitles]";
+
+} # import->{borrowers}
 
+sub issues {
+       my ($table,$sql) = @_;
+       my $sth = $f->prepare($sql);
+       $sth->execute;
+
+       $insert = undef;
+
+       while (my $row = $sth->fetchrow_hashref ) {
+               $row->{borrowernumber} = lookup($k, 'borrowers', 'cardnumber' => 'borrowernumber', $row->{borrowernumber});
+               $row->{itemnumber}     = lookup($k, 'items', 'barcode' => 'itemnumber', $row->{itemnumber});
+               $row->{returndate} = '31.12.2011';
+               insert $table => $row;
+       }
 }
 
-while (my $row = $sth->fetchrow_hashref ) {
+my $posud_sql = qq{
+select
+       ozn_vrclan||ozn_clan as borrowernumber,
+       sif_primj as itemnumber,
+       datum_do as date_due,
+       'SRE' as branchcode, -- FIXME
+       datum_vra as returndate,
+       datum_pos as issuedate,
+       datum_pos||' '||vrijeme_pos as timestamp
+from posud
+};
 
-       warn dump $row;
+if ( $import->{issues} ) {
 
-       # poor man's (sqlite) outer join
-       $row->{'country'} = lookup('drzava', 'ozn_drzava', 'naz_drzava', $row->{'country'} );
-       $row->{'city'} = lookup('mjesto', 'post_ozn', 'naz_mjesto', $row->{'city'} );
+$k->do('delete from old_issues');
+$k->do('delete from issues');
+issues 'old_issues' => qq{$posud_sql where datum_vra != ''};
+issues 'issues'     => qq{$posud_sql where datum_vra == ''};
 
-       $row->{'B_country'} = lookup('drzava', 'ozn_drzava', 'naz_drzava', $row->{'B_country'} );
-       $row->{'B_city'} = lookup('mjesto', 'post_ozn', 'naz_mjesto', $row->{'B_city'} );
+$k->do(qq{
+update items
+join issues on items.itemnumber=issues.itemnumber
+set onloan = date_due, datelastborrowed = issuedate
+});
 
-       foreach my $c ( grep { /date/ } keys %$row ) {
-               $row->{$c} =~ s/(\d\d)\.(\d\d)\.(\d\d\d\d)/$3-$2-$1/;
-       }
 
-       $row->{sex} =~ s/Ž/F/;
+}; # import->{issues}
+
+if ( $import->{barcode} ) {
 
+my $sth        = $k->prepare(qq{ select itemnumber,barcode from items where length(barcode) < 13 });
+my $sth_update = $k->prepare(qq{ update items set barcode=? where itemnumber=? });
 
-       $row->{city} ||= '?'; # not null
+$sth->execute;
+warn "update ", $sth->rows, " barcodes";
 
-       insert 'borrowers' => $row;
+my $ean = CheckDigits('ean');
 
+while( my $row = $sth->fetchrow_hashref ) {
+       $sth_update->execute( $ean->complete( sprintf('%012d', $row->{barcode}) ), $row->{itemnumber} );
 }
 
+} # import->{barcode}
+
 $k->commit;