X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=ferlib2koha.pl;h=f95f52fc60f6a7d875d624db38aa4ba9050afb00;hb=b41b2ce39d87d31118b2e33bd841ae7d00771289;hp=fd942985adabb26bfdf9b5a2252538a212fc3444;hpb=72dea0e737d368cd5faee75647f07fdfcc7dbb60;p=ferlib2koha.git diff --git a/ferlib2koha.pl b/ferlib2koha.pl index fd94298..f95f52f 100755 --- a/ferlib2koha.pl +++ b/ferlib2koha.pl @@ -3,23 +3,29 @@ use strict; use DBI; use Data::Dump qw/dump/; +use Algorithm::CheckDigits; $|++; +my $import = { + borrowers => 0, + issues => 0, +}; + 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; 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}; @@ -30,18 +36,86 @@ sub lookup { 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->{'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->{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 +132,117 @@ 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}); + 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 +}; + +if ( $import->{issues} ) { - warn dump $row; +$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 == ''}; - # 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(qq{ +update items +join issues on items.itemnumber=issues.itemnumber +set onloan = date_due, datelastborrowed = issuedate +}); - $row->{'B_country'} = lookup('drzava', 'ozn_drzava', 'naz_drzava', $row->{'B_country'} ); - $row->{'B_city'} = lookup('mjesto', 'post_ozn', 'naz_mjesto', $row->{'B_city'} ); - foreach my $c ( grep { /date/ } keys %$row ) { - $row->{$c} =~ s/(\d\d)\.(\d\d)\.(\d\d\d\d)/$3-$2-$1/; - } +}; # import->{issues} - $row->{sex} =~ s/Ž/F/; +my $sth = $k->prepare(qq{ select itemnumber,barcode from items }); +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} ); } $k->commit;