X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=html.pl;h=0c55a7a89403736dfb6607c094443de3a153f0d9;hb=9e52f8eb286e7e85d39c1d26117a2b9dda2fbf1d;hp=dd395acf3595fb43f4b80874701bbeb807994e4d;hpb=45af0260bcfe70f46a8ab02594aa7637f41309ae;p=koha-bibliografija diff --git a/html.pl b/html.pl index dd395ac..0c55a7a 100755 --- a/html.pl +++ b/html.pl @@ -10,6 +10,7 @@ use Data::Dump qw(dump); use autodie; use locale; use Text::Unaccent; +use Carp qw(confess); use lib '/srv/koha_ffzg'; use C4::Context; @@ -41,11 +42,15 @@ from auth_header $sth_auth->execute(); while( my $row = $sth_auth->fetchrow_hashref ) { + if ( $row->{department} !~ m/Filozofski fakultet u Zagrebu/ ) { + push @{ $skip->{nije_ffzg} }, $row; + next; + } $auth_header->{ $row->{authid} } = $row->{full_name}; - $row->{department} =~ s/, Filozofski fakultet u Zagrebu\s*// || next; + $row->{department} =~ s/, Filozofski fakultet u Zagrebu.*$//; $row->{department} =~ s/^.+\.\s*//; - push @{ $auth_department->{ $row->{department} } }, $row->{authid}; # warn dump( $row ); + push @{ $auth_department->{ $row->{department} } }, $row->{authid}; push @authors, $row; } @@ -54,7 +59,6 @@ debug 'auth_department' => $auth_department; my $authors; -my $author_count; my $marcxml; my $sth_select_authors = $dbh->prepare(q{ @@ -77,6 +81,7 @@ where =cut my $biblio_year; +my $type_stats; my $parser = XML::LibXML->new(); $parser->recover_silently(0); # don't die when you find &, >, etc @@ -93,13 +98,13 @@ sub biblioitem_html { return $biblio_html->{$biblionumber} if exists $biblio_html->{$biblionumber}; - my $xmlrecord = $marcxml->{$biblionumber} || die "missing $biblionumber marcxml"; + my $xmlrecord = $marcxml->{$biblionumber} || confess "missing $biblionumber marcxml"; print $xml_fh $xmlrecord if $ENV{XML}; my $source = eval { $parser->parse_string($xmlrecord) }; if ( $@ ) { - warn "SKIP $biblionumber corrupt XML"; +# warn "SKIP $biblionumber corrupt XML"; push @{ $skip->{XML_corrupt} }, $biblionumber; return; } @@ -172,33 +177,49 @@ while( my $row = $sth_select_authors->fetchrow_hashref ) { my $category = $data->{942}->[0]->{'t'}; if ( ! $category ) { - warn "# SKIP ", $row->{biblionumber}, " no category in ", dump($data); +# warn "# SKIP ", $row->{biblionumber}, " no category in ", dump($data); push @{ $skip->{no_category} }, $row->{biblionumber}; next; } + my $have_100 = 1; + if ( exists $data->{100} ) { my @first_author = map { $_->{'9'} } @{ $data->{100} }; foreach my $authid ( @first_author ) { - push @{ $authors->{$authid}->{ $category } }, $row->{biblionumber}; - $author_count->{aut}->{$authid}++; + push @{ $authors->{$authid}->{aut}->{ $category } }, $row->{biblionumber}; } + } else { + $have_100 = 0; } + my $have_edt; + if ( exists $data->{700} ) { foreach my $auth ( @{ $data->{700} } ) { my $authid = $auth->{9} || next; my $type = $auth->{4} || next; #die "no 4 in ",dump($data); - - push @{ $authors->{$authid}->{ $category } }, $row->{biblionumber}; - if ( $type =~ m/aut/ ) { - $author_count->{aut}->{ $authid }++; - } elsif ( $type =~ m/(edt|tr)/ ) { - $author_count->{$1}->{ $authid }++; + + $type_stats->{$type}++; + + if ( $type =~ m/(edt|trl|com|ctb)/ ) { + push @{ $authors->{$authid}->{sec}->{ $category } }, $row->{biblionumber}; + push @{ $authors->{$authid}->{$1}->{ $category } }, $row->{biblionumber}; + } elsif ( $type =~ m/aut/ ) { + if ( ! $have_100 ) { + $have_edt = grep { exists $_->{4} && $_->{4} =~ m/edt/ } @{ $data->{700} } if ! defined $have_edt; + if ( $have_edt ) { + $skip->{ have_700_edt }->{ $row->{biblionumber} }++; + } else { + push @{ $authors->{$authid}->{aut}->{ $category } }, $row->{biblionumber}; + } + } else { + push @{ $authors->{$authid}->{aut}->{ $category } }, $row->{biblionumber}; + } } else { - warn "# SKIP ", $row->{biblionumber}, ' no 700$4 in ', dump($data); - push @{ $skip->{ 'no_700$4' } }, $row->{biblionumber}; +# warn "# SKIP ", $row->{biblionumber}, ' no 700$4 in ', dump($data); + $skip->{ 'no_700$4' }->{ $row->{biblionumber} }++; } } } @@ -206,7 +227,8 @@ while( my $row = $sth_select_authors->fetchrow_hashref ) { } debug 'authors' => $authors; -debug 'author_count' => $author_count; +debug 'type_stats' => $type_stats; +debug 'skip' => $skip; my $category_label; my $sth_categories = $dbh->prepare(q{ @@ -243,6 +265,32 @@ my $first_letter = ''; debug 'authors' => \@authors; +sub li_biblio { + my ($biblionumber) = @_; + return qq|
  • |, + qq|$biblionumber|, + biblioitem_html($biblionumber), + qq|edit|, + qq|
  • \n|; +} + +sub author_html { + my ( $fh, $authid, $type, $label ) = @_; + + return unless exists $authors->{$authid}->{$type}; + + print $fh qq|

    $label

    \n|; + + foreach my $category ( sort keys %{ $authors->{$authid}->{$type} } ) { + my $label = $category_label->{$category} || 'Bez kategorije'; + print $fh qq|

    $label

    \n\n|; + } +} + foreach my $row ( sort { $a->{full_name} cmp $b->{full_name} } @authors ) { my $first = substr( $row->{full_name}, 0, 1 ); @@ -257,18 +305,10 @@ foreach my $row ( sort { $a->{full_name} cmp $b->{full_name} } @authors ) { open(my $fh, '>:encoding(utf-8)', "$path.new"); print $fh html_title($row->{full_name}, "bibliografija"); print $fh qq|

    $row->{full_name} - bibliografija za razdoblje 2008-2013

    |; - foreach my $category ( sort keys %{ $authors->{ $row->{authid} } } ) { - my $label = $category_label->{$category} || 'Bez kategorije'; - print $fh qq|

    $label

    \n\n|; - } + + author_html( $fh, $row->{authid}, 'aut' => 'Primarno autorstvo' ); + author_html( $fh, $row->{authid}, 'sec' => 'Sekundarno autorstvo' ); + print $fh html_end; close($fh); rename "$path.new", "$path.html"; @@ -285,7 +325,9 @@ debug 'auth_header' => $auth_header; my $department_category_author; foreach my $department ( sort keys %$auth_department ) { foreach my $authid ( sort @{ $auth_department->{$department} } ) { - foreach my $category ( sort keys %{ $authors->{$authid} } ) { + my @categories = keys %{ $authors->{$authid}->{aut} }; + push @categories, keys %{ $authors->{$authid}->{sec} }; + foreach my $category ( sort @categories ) { push @{ $department_category_author->{$department}->{$category} }, $authid; } } @@ -302,23 +344,50 @@ foreach my $department ( sort keys %$department_category_author ) { my $dep_file = unac_string('utf-8',$dep); print $dep_fh qq|
  • $dep
  • \n|; open(my $fh, '>:encoding(utf-8)', "html/departments/$dep_file.new"); + print $fh html_title($department . ' bibliografija'); + print $fh qq|

    $department bibliografija

    \n|; + + print $fh qq|

    Primarno autorstvo

    \n|; + foreach my $category ( sort keys %{ $department_category_author->{$department} } ) { + + my @authids = @{ $department_category_author->{$department}->{$category} }; + next unless @authids; + + my @biblionumber = map { @{ $authors->{$_}->{aut}->{$category} } } grep { exists $authors->{$_}->{aut}->{$category} } @authids; + + next unless @biblionumber; + my $label = $category_label->{$category} || 'Bez kategorije'; - print $fh qq|

    $label

    \n\n|, html_end; close($dep_fh); rename 'html/departments/index.new', 'html/departments/index.html'; -debug 'skip' => $skip; +my $azvo_stat; + +foreach my $department ( sort keys %$department_category_author ) { + foreach my $category ( sort keys %{ $department_category_author->{$department} } ) { + foreach my $authid ( @{ $department_category_author->{$department}->{$category} } ) { + foreach my $type ( keys %{ $authors->{$authid} } ) { + next unless exists $authors->{$authid}->{$type}->{$category}; + $azvo_stat->{ $department }->{ $category }->{ $type } += $#{ $authors->{$authid}->{$type}->{$category} } + 1; + } + } + } +} + +debug 'azvo_stat' => $azvo_stat; + +=for later +open(my $fh, '>', 'html/azvo.new'); + + + +close($fh); +rename 'html/azvo.new', 'html/azvo.html'; +=cut