--- COBISS.pm 2009/06/19 21:51:28 2 +++ COBISS.pm 2010/10/22 21:31:08 14 @@ -5,6 +5,7 @@ use WWW::Mechanize; use MARC::Record; +use Data::Dump qw/dump/; binmode STDOUT, ':utf8'; @@ -16,7 +17,7 @@ }, 205 => { a => [ 250 , 'a' ] }, 210 => { - a => [ 250 , 'a' ], + a => [ 260 , 'a' ], c => [ 260 , 'b' ], d => [ 260 , 'c' ], }, @@ -30,77 +31,170 @@ }, }; +our $mech = WWW::Mechanize->new(); +our $hits; + +sub diag { + print "# ", @_, $/; +} + +# Koha Z39.50 query: +# +# Bib-1 @and @and @and @and @and @and @and @or +# @attr 1=8 isbn-issn +# @attr 1=7 isbn-issn +# @attr 1=4 title +# @attr 1=1003 author +# @attr 1=16 dewey +# @attr 1=21 subject-holding +# @attr 1=12 control-no +# @attr 1=1007 standard-id +# @attr 1=1016 any + +our $usemap = { + 8 => 'BN', # FIXME check + 7 => 'SN', # FIXME check + 4 => 'TI', + 1003 => 'TI', + 16 => 'CU', + 21 => 'SU', +# 12 => '', +# 1007 => '', +# 1016 => '', + +}; + sub search { + my ( $self, $query ) = @_; + + die "need query" unless defined $query; my $url = 'http://cobiss.izum.si/scripts/cobiss?ukaz=GETID&lani=en'; -warn "# get $url\n"; +diag "get $url"; - my $mech = WWW::Mechanize->new(); $mech->get( $url ); -warn "# got session\n"; +diag "got session"; $mech->follow_link( text_regex => qr/union/ ); -warn "# submit search\n"; +diag "switch to advanced form (select)"; + + $mech->follow_link( url_regex => qr/mode=3/ ); + +diag "submit search $query"; $mech->submit_form( fields => { - 'SS1' => 'Krleza', + 'SS1' => $query, }, ); - my $hits = 1; + $hits = 0; if ( $mech->content =~ m{hits:\s*\s*(\d+)\s*}s ) { $hits = $1; } else { - warn "get't find results in ", $mech->content; + diag "get't find results in ", $mech->content; + return; } -warn "# got $hits results, get first one\n"; +diag "got $hits results, get first one"; $mech->follow_link( url_regex => qr/ukaz=DISP/ ); -warn "# in COMARC format\n"; +diag "in COMARC format"; $mech->follow_link( url_regex => qr/fmt=13/ ); +} + + +sub fetch_rec { + my ($self,$format) = @_; + + $format ||= 'unimarc'; + + die "unknown format: $format" unless $format =~ m{(uni|us)marc}; my $comarc; - if ( $mech->content =~ m{
\s*(.+1\..+?)\s*
}s ) { + if ( $mech->content =~ m{
\s*(.+?(\d+)\.\s+ID=(\d+).+?)\s*
}s ) { + my $comarc = $1; + my $nr = $2; + my $id = $3; + +diag "fetch_marc $nr [$id] $format"; + $comarc =~ s{}{}gs; $comarc =~ s{]*>}{}gs; $comarc =~ s{}{}gs; + open(my $out, '>:utf8', "comarc/$id"); + print $out $comarc; + close($out); + print $comarc; my $marc = MARC::Record->new; foreach my $line ( split(/[\r\n]+/, $comarc) ) { - our @f; - if ( $line !~ s{(\d\d\d)([01 ])([01 ])}{} ) { - warn "SKIP: $line\n"; + if ( $line !~ s{^(\d\d\d)([01 ])([01 ])}{} ) { + diag "SKIP: $line"; } else { + our @f = ( $1, $2, $3 ); $line .= ""; - @f = ( $1, $2, $3 ); - sub sf { warn "sf",@_,"|",@f; push @f, @_; } - $line =~ s{(\w)([^<]+)\s*}{sf($1, $2)}ges; - warn "# f:", join(' ', @f), " left:|$line|\n"; - $marc->add_fields( @f ); + if ( $format eq 'unimarc' ) { + + diag dump(@f), "line: $line"; + sub sf_uni { + warn "sf ",dump(@_); + push @f, @_; + } + $line =~ s{(\w)([^<]+)\s*}{sf_uni($1, $2)}ges; + diag "f:", dump(@f), " left: |$line|"; + $marc->add_fields( @f ); + + } elsif ( $format eq 'usmarc' ) { + + my ( $f, $i1, $i2 ) = @f; + + our $out = {}; + + sub sf_us { + my ($f,$sf,$v) = @_; + if ( my $m = $cobiss_marc21->{$f}->{$sf} ) { + push @{ $out->{ $m->[0] } }, ( $m->[1], $v ); + } + return; + } + $line =~ s{(\w)([^<]+)\s*}{sf_us($f,$1, $2)}ges; + + diag "converted marc21 ",dump( $out ); + + foreach my $f ( keys %$out ) { + $marc->add_fields( $f, $i1, $i2, @{ $out->{$f} } ); + } + } } } - open(my $out, '>:utf8', 'out.marc'); + my $path = "marc/$id.$format"; + + open($out, '>:utf8', $path); print $out $marc->as_usmarc; close($out); - warn $marc->as_formatted; + diag "created $path ", -s $path, " bytes"; + + diag $marc->as_formatted; + + $nr++; + $mech->follow_link( url_regex => qr/rec=$nr/ ); - return $comarc; + return $marc->as_usmarc; } else { die "can't fetch COMARC format from ", $mech->content; }