Improvements to handling language subtags
[koha.git] / C4 / Koha.pm
index d6dddbe..6c6b6e0 100644 (file)
@@ -17,7 +17,6 @@ package C4::Koha;
 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
 # Suite 330, Boston, MA  02111-1307 USA
 
-# $Id$
 
 use strict;
 require Exporter;
@@ -25,7 +24,7 @@ use C4::Context;
 use C4::Output;
 our ($VERSION,@ISA,@EXPORT);
 
-$VERSION = do { my @v = '$Revision$' =~ /\d+/g; shift(@v) . "." . join( "_", map { sprintf "%03d", $_ } @v ); };
+$VERSION = 3.00;
 
 =head1 NAME
 
@@ -54,17 +53,11 @@ $VERSION = do { my @v = '$Revision$' =~ /\d+/g; shift(@v) . "." . join( "_", map
   &GetPrinters &GetPrinter
   &GetItemTypes &getitemtypeinfo
   &GetCcodes
-  &GetAuthItemlost
-  &GetAuthItembinding
   &get_itemtypeinfos_of
   &getframeworks &getframeworkinfo
   &getauthtypes &getauthtype
   &getallthemes
   &getFacets
-  &displaySortby
-  &displayIndexes
-  &displaySubtypesLimit
-  &displayLimitTypes
   &displayServers
   &getnbpages
   &getitemtypeimagesrcfromurl
@@ -75,6 +68,7 @@ $VERSION = do { my @v = '$Revision$' =~ /\d+/g; shift(@v) . "." . join( "_", map
   &GetAuthorisedValues
   &FixEncoding
   &GetKohaAuthorisedValues
+  &GetAuthValCode
   &GetManagedTagSubfields
 
   $DEBUG
@@ -108,6 +102,7 @@ sub slashifyDate {
 
 sub DisplayISBN {
     my ($isbn) = @_;
+    if (length ($isbn)<13){
     my $seg1;
     if ( substr( $isbn, 0, 1 ) <= 7 ) {
         $seg1 = substr( $isbn, 0, 1 );
@@ -150,6 +145,52 @@ sub DisplayISBN {
     $seg3 = substr( $seg3, 0, length($seg3) - 1 );
     my $seg4 = substr( $x, -1, 1 );
     return "$seg1-$seg2-$seg3-$seg4";
+    } else {
+      my $seg1;
+      $seg1 = substr( $isbn, 0, 3 );
+      my $seg2;
+      if ( substr( $isbn, 3, 1 ) <= 7 ) {
+          $seg2 = substr( $isbn, 3, 1 );
+      }
+      elsif ( substr( $isbn, 3, 2 ) <= 94 ) {
+          $seg2 = substr( $isbn, 3, 2 );
+      }
+      elsif ( substr( $isbn, 3, 3 ) <= 995 ) {
+          $seg2 = substr( $isbn, 3, 3 );
+      }
+      elsif ( substr( $isbn, 3, 4 ) <= 9989 ) {
+          $seg2 = substr( $isbn, 3, 4 );
+      }
+      else {
+          $seg2 = substr( $isbn, 3, 5 );
+      }
+      my $x = substr( $isbn, length($seg2) +3);
+      my $seg3;
+      if ( substr( $x, 0, 2 ) <= 19 ) {
+  
+          # if(sTmp2 < 10) sTmp2 = "0" sTmp2;
+          $seg3 = substr( $x, 0, 2 );
+      }
+      elsif ( substr( $x, 0, 3 ) <= 699 ) {
+          $seg3 = substr( $x, 0, 3 );
+      }
+      elsif ( substr( $x, 0, 4 ) <= 8399 ) {
+          $seg3 = substr( $x, 0, 4 );
+      }
+      elsif ( substr( $x, 0, 5 ) <= 89999 ) {
+          $seg3 = substr( $x, 0, 5 );
+      }
+      elsif ( substr( $x, 0, 6 ) <= 9499999 ) {
+          $seg3 = substr( $x, 0, 6 );
+      }
+      else {
+          $seg3 = substr( $x, 0, 7 );
+      }
+      my $seg4 = substr( $x, length($seg3) );
+      $seg4 = substr( $seg4, 0, length($seg4) - 1 );
+      my $seg5 = substr( $x, -1, 1 );
+      return "$seg1-$seg2-$seg3-$seg4-$seg5";       
+    }    
 }
 
 # FIXME.. this should be moved to a MARC-specific module
@@ -223,6 +264,7 @@ sub get_itemtypeinfos_of {
     my $query = '
 SELECT itemtype,
        description,
+       imageurl,
        notforloan
   FROM itemtypes
   WHERE itemtype IN (' . join( ',', map( { "'" . $_ . "'" } @itemtypes ) ) . ')
@@ -252,66 +294,6 @@ sub GetCcodes {
     return ( $count, @results );
 }
 
-=head2
-
-grab itemlost authorized values
-
-=cut
-
-sub GetAuthItemlost {
-    my $itemlost = shift;
-    my $count    = 0;
-    my @results;
-    my $dbh = C4::Context->dbh;
-    my $sth =
-      $dbh->prepare(
-        "SELECT * FROM authorised_values ORDER BY authorised_value");
-    $sth->execute;
-    while ( my $data = $sth->fetchrow_hashref ) {
-        if ( $data->{category} eq "ITEMLOST" ) {
-            $count++;
-            if ( $itemlost eq $data->{'authorised_value'} ) {
-                $data->{'selected'} = 1;
-            }
-            $results[$count] = $data;
-
-            #warn "data: $data";
-        }
-    }
-    $sth->finish;
-    return ( $count, @results );
-}
-
-=head2 GetAuthItembinding
-
-grab itemlost authorized values
-
-=cut
-
-sub GetAuthItembinding {
-    my $itembinding = shift;
-    my $count       = 0;
-    my @results;
-    my $dbh = C4::Context->dbh;
-    my $sth =
-      $dbh->prepare(
-        "SELECT * FROM authorised_values ORDER BY authorised_value");
-    $sth->execute;
-    while ( my $data = $sth->fetchrow_hashref ) {
-        if ( $data->{category} eq "BINDING" ) {
-            $count++;
-            if ( $itembinding eq $data->{'authorised_value'} ) {
-                $data->{'selected'} = 1;
-            }
-            $results[$count] = $data;
-
-            #warn "data: $data";
-        }
-    }
-    $sth->finish;
-    return ( $count, @results );
-}
-
 =head2 getauthtypes
 
   $authtypes = &getauthtypes();
@@ -601,7 +583,7 @@ sub getFacets {
             },
             {
                 link_value  => 'branch',
-                label_value => 'Branches',
+                label_value => 'Libraries',
                 tags        => [ '995', ],
                 subfield    => 'b',
                 expanded    => '1',
@@ -649,7 +631,7 @@ sub getFacets {
             },
             {
                 link_value  => 'branch',
-                label_value => 'Branches',
+                label_value => 'Libraries',
                 tags        => [ '952', ],
                 subfield    => 'b',
                 expanded    => '1',
@@ -724,6 +706,8 @@ labels.
 
 =cut
 
+# FIXME - why not use GetAuthorisedValues ??
+#
 sub get_notforloan_label_of {
     my $dbh = C4::Context->dbh;
 
@@ -754,287 +738,6 @@ SELECT lib,
     return \%notforloan_label_of;
 }
 
-sub displaySortby {
-    my ($sort_by) = @_;
-    $sort_by =~ s/</\&lt;/;
-    $sort_by =~ s/>/\&gt;/;
-    my $sort_by_loop = [
-        { value => "1=9523 &gt;i", label => "Popularity (Most to Least)" },
-        { value => "1=9523 &lt;i", label => "Popularity (Least to Most)" },
-        { value => "1=1003 &lt;i", label => "Author (A-Z)" },
-        { value => "1=1003 &gt;i", label => "Author (Z-A)" },
-        {
-            value => "1=20 &lt;i",
-            label => "Call Number (Non-fiction 0-9 to Fiction A-Z)"
-        },
-        {
-            value => "1=20 &gt;i",
-            label => "Call Number (Fiction Z-A to Non-fiction 9-0)"
-        },
-        { value => "1=31 &gt;i", label => "Dates" },
-        {
-            value => "1=31 &gt;i",
-            label =>
-              "&nbsp;&nbsp;&nbsp;Publication/Copyright Date: Newest to Oldest"
-        },
-        {
-            value => "1=31 &lt;i",
-            label =>
-              "&nbsp;&nbsp;&nbsp;Publication/Copyright Date: Oldest to Newest"
-        },
-        {
-            value => "1=32 &gt;i",
-            label => "&nbsp;&nbsp;&nbsp;Acquisition Date: Newest to Oldest"
-        },
-        {
-            value => "1=32 &lt;i",
-            label => "&nbsp;&nbsp;&nbsp;Acquisition Date: Oldest to Newest"
-        },
-        { value => "1=4 &lt;i", label => "Title (A-Z)" },
-        { value => "1=4 &gt;i", label => "Title (Z-A)" },
-    ];
-    for my $hash (@$sort_by_loop) {
-
-        #warn "sort by: $sort_by ... hash:".$hash->{value};
-        if ($sort_by && $hash->{value} eq $sort_by ) {
-            $hash->{selected} = "selected";
-        }
-    }
-    return $sort_by_loop;
-
-}
-
-sub displayIndexes {
-    my $indexes = [
-        { value => '',   label => 'Keyword' },
-        { value => 'au', label => 'Author' },
-        {
-            value => 'au,phr',
-            label => '&nbsp;&nbsp;&nbsp;&nbsp; Author Phrase'
-        },
-        { value => 'cpn', label => '&nbsp;&nbsp;&nbsp;&nbsp; Corporate Name' },
-        { value => 'cfn', label => '&nbsp;&nbsp;&nbsp;&nbsp; Conference Name' },
-        {
-            value => 'cpn,phr',
-            label => '&nbsp;&nbsp;&nbsp;&nbsp; Corporate Name Phrase'
-        },
-        {
-            value => 'cfn,phr',
-            label => '&nbsp;&nbsp;&nbsp;&nbsp; Conference Name Phrase'
-        },
-        { value => 'pn', label => '&nbsp;&nbsp;&nbsp;&nbsp; Personal Name' },
-        {
-            value => 'pn,phr',
-            label => '&nbsp;&nbsp;&nbsp;&nbsp; Personal Name Phrase'
-        },
-        { value => 'ln', label => 'Language' },
-
-        #    { value => 'mt', label => 'Material Type' },
-        #    { value => 'mt,phr', label => 'Material Type Phrase' },
-        #    { value => 'mc', label => 'Musical Composition' },
-        #    { value => 'mc,phr', label => 'Musical Composition Phrase' },
-
-        { value => 'nt',  label => 'Notes/Comments' },
-        { value => 'pb',  label => 'Publisher' },
-        { value => 'pl',  label => 'Publisher Location' },
-        { value => 'sn',  label => 'Standard Number' },
-        { value => 'nb',  label => '&nbsp;&nbsp;&nbsp;&nbsp; ISBN' },
-        { value => 'ns',  label => '&nbsp;&nbsp;&nbsp;&nbsp; ISSN' },
-        { value => 'lcn', label => '&nbsp;&nbsp;&nbsp;&nbsp; Call Number' },
-        { value => 'su',  label => 'Subject' },
-        {
-            value => 'su,phr',
-            label => '&nbsp;&nbsp;&nbsp;&nbsp; Subject Phrase'
-        },
-
-#    { value => 'de', label => '&nbsp;&nbsp;&nbsp;&nbsp; Descriptor' },
-#    { value => 'ge', label => '&nbsp;&nbsp;&nbsp;&nbsp; Genre/Form' },
-#    { value => 'gc', label => '&nbsp;&nbsp;&nbsp;&nbsp; Geographic Coverage' },
-
-#     { value => 'nc', label => '&nbsp;&nbsp;&nbsp;&nbsp; Named Corporation and Conference' },
-#     { value => 'na', label => '&nbsp;&nbsp;&nbsp;&nbsp; Named Person' },
-
-        { value => 'ti',     label => 'Title' },
-        { value => 'ti,phr', label => '&nbsp;&nbsp;&nbsp;&nbsp; Title Phrase' },
-        { value => 'se',     label => '&nbsp;&nbsp;&nbsp;&nbsp; Series Title' },
-    ];
-    return $indexes;
-}
-
-sub displaySubtypesLimit {
-    my $outer_subtype_limits_loop = [
-
-        {    # in MARC21, aud codes are stored in 008/22 (Target audience)
-            name                      => "limit",
-            inner_subtype_limits_loop => [
-                {
-                    value    => '',
-                    label    => 'Any Audience',
-                    selected => "selected"
-                },
-                { value => 'aud:a', label => 'Easy', },
-                { value => 'aud:c', label => 'Juvenile', },
-                { value => 'aud:d', label => 'Young Adult', },
-                { value => 'aud:e', label => 'Adult', },
-
-            ],
-        },
-        {    # in MARC21, fic is in 008/33, bio in 008/34, mus in LDR/06
-            name                      => "limit",
-            inner_subtype_limits_loop => [
-                { value => '', label => 'Any Content', selected => "selected" },
-                { value => 'fic:1', label => 'Fiction', },
-                { value => 'fic:0', label => 'Non Fiction', },
-                { value => 'bio:b', label => 'Biography', },
-                { value => 'mus:j', label => 'Musical recording', },
-                { value => 'mus:i', label => 'Non-musical recording', },
-
-            ],
-        },
-        {    # MARC21, these are codes stored in 007/00-01
-            name                      => "limit",
-            inner_subtype_limits_loop => [
-                { value => '', label => 'Any Format', selected => "selected" },
-                { value => 'l-format:ta', label => 'Regular print', },
-                { value => 'l-format:tb', label => 'Large print', },
-                { value => 'l-format:fk', label => 'Braille', },
-                { value => '',            label => '-----------', },
-                { value => 'l-format:sd', label => 'CD audio', },
-                { value => 'l-format:ss', label => 'Cassette recording', },
-                {
-                    value => 'l-format:vf',
-                    label => 'VHS tape / Videocassette',
-                },
-                { value => 'l-format:vd', label => 'DVD video / Videodisc', },
-                { value => 'l-format:co', label => 'CD Software', },
-                { value => 'l-format:cr', label => 'Website', },
-
-            ],
-        },
-        {    # in MARC21, these are codes in 008/24-28
-            name                      => "limit",
-            inner_subtype_limits_loop => [
-                { value => '',        label => 'Additional Content Types', },
-                { value => 'ctype:a', label => 'Abstracts/summaries', },
-                { value => 'ctype:b', label => 'Bibliographies', },
-                { value => 'ctype:c', label => 'Catalogs', },
-                { value => 'ctype:d', label => 'Dictionaries', },
-                { value => 'ctype:e', label => 'Encyclopedias ', },
-                { value => 'ctype:f', label => 'Handbooks', },
-                { value => 'ctype:g', label => 'Legal articles', },
-                { value => 'ctype:i', label => 'Indexes', },
-                { value => 'ctype:j', label => 'Patent document', },
-                { value => 'ctype:k', label => 'Discographies', },
-                { value => 'ctype:l', label => 'Legislation', },
-                { value => 'ctype:m', label => 'Theses', },
-                { value => 'ctype:n', label => 'Surveys', },
-                { value => 'ctype:o', label => 'Reviews', },
-                { value => 'ctype:p', label => 'Programmed texts', },
-                { value => 'ctype:q', label => 'Filmographies', },
-                { value => 'ctype:r', label => 'Directories', },
-                { value => 'ctype:s', label => 'Statistics', },
-                { value => 'ctype:t', label => 'Technical reports', },
-                { value => 'ctype:v', label => 'Legal cases and case notes', },
-                { value => 'ctype:w', label => 'Law reports and digests', },
-                { value => 'ctype:z', label => 'Treaties ', },
-            ],
-        },
-    ];
-    return $outer_subtype_limits_loop;
-}
-
-sub displayLimitTypes {
-    my $outer_limit_types_loop = [
-
-        {
-            inner_limit_types_loop => [
-                {
-                    label => "Books",
-                    id    => "mc-books",
-                    name  => "limit",
-                    value => "(mc-collection:AF or mc-collection:MYS or mc-collection:SCI or mc-collection:NF or mc-collection:YA or mc-collection:BIO or mc-collection:LP or mc-collection:LPNF)",
-                    icon  => "search-books.gif",
-                    title =>
-"Books, Pamphlets, Technical reports, Manuscripts, Legal papers, Theses and dissertations",
-                },
-
-                {
-                    label => "Movies",
-                    id    => "mc-movies",
-                    name  => "limit",
-                    value => "(mc-collection:DVD or mc-collection:AV or mc-collection:AVJ or mc-collection:AVJN or mc-collection:AVJNF or mc-collection:AVNF)",
-                    icon  => "search-movies.gif",
-                    title =>
-"Motion pictures, Videorecordings, Filmstrips, Slides, Transparencies, Photos, Cards, Charts, Drawings",
-                },
-
-                {
-                                       label => "Music",
-                               id => "mc-music",
-                    name  => "limit",
-                    value => "(mc-collection:CDM)",
-                    icon  => "search-music.gif",
-                    title => "Spoken, Books on CD and Cassette",
-                },
-            ],
-        },
-        {
-            inner_limit_types_loop => [
-                {
-                    label => "Audio Books",
-                                       id => "mc-audio-books",
-                    name  => "limit",
-                    value => "(mc-collection:AB or mc-collection:AC or mc-collection:JAC or mc-collection:YAC)",
-                    icon  => "search-audio-books.gif",
-                    title => "Spoken, Books on CD and Cassette",
-                },
-
-                {
-                    label => "Local History Materials",
-                               id => "mc-local-history",
-                    name  => "limit",
-                    value => "mc-collection:LH",
-                    icon  => "Local history.gif",
-                    title => "Local History Materials",
-                },
-
-    {label => "Large Print",
-    id => "mc-large-print",
-                    name  => "limit",
-    value => "(mc-collection:LP or mc-collection:LPNF)",
-    icon => "search-large-print.gif ",
-    title => "Large Print",},
-            ],
-        },
-{ inner_limit_types_loop => [
-    {label => "Kids",
-    id => "mc-kids",
-                    name  => "limit",
-    value => "(mc-collection:EASY or mc-collection:JNF or mc-collection:JF or mc-collection:JREF or mc-collection:JB)",
-    icon => "search-kids.gif",
-    title => "Music",},
-
-    {label => "Software/Internet",
-    id => "mc-sofware-web",
-                    name  => "limit",
-    value => "(mc-collection:CDR)",
-    icon => "search-software-web.gif",
-    title => "Kits",},
-
-    {label => "Reference",
-    id => "mc-reference",
-                    name  => "limit",
-                    value => "mc-collection:REF",
-    icon => "search-reference.gif",
-    title => "Reference",},
-
-            ],
-        },
-
-    ];
-    return $outer_limit_types_loop;
-}
-
 sub displayServers {
     my ( $position, $type ) = @_;
     my $dbh    = C4::Context->dbh;
@@ -1086,6 +789,22 @@ sub displaySecondaryServers {
     return;    #$secondary_servers_loop;
 }
 
+=head2 GetAuthValCode
+
+$authvalcode = GetAuthValCode($kohafield,$frameworkcode);
+
+=cut
+
+sub GetAuthValCode {
+       my ($kohafield,$fwcode) = @_;
+       my $dbh = C4::Context->dbh;
+       $fwcode='' unless $fwcode;
+       my $sth = $dbh->prepare('select authorised_value from marc_subfield_structure where kohafield=? and frameworkcode=?');
+       $sth->execute($kohafield,$fwcode);
+       my ($authvalcode) = $sth->fetchrow_array;
+       return $authvalcode;
+}
+
 =head2 GetAuthorisedValues
 
 $authvalues = GetAuthorisedValues($category);
@@ -1098,15 +817,24 @@ Set C<$category> on input args if you want to limits your query to this one. Thi
 =cut
 
 sub GetAuthorisedValues {
-    my $category = shift;
+    my ($category,$selected) = @_;
+       my $count = 0;
+       my @results;
     my $dbh      = C4::Context->dbh;
     my $query    = "SELECT * FROM authorised_values";
     $query .= " WHERE category = '" . $category . "'" if $category;
 
     my $sth = $dbh->prepare($query);
     $sth->execute;
-    my $data = $sth->fetchall_arrayref({});
-    return $data;
+       while (my $data=$sth->fetchrow_hashref) {
+               if ($selected eq $data->{'authorised_value'} ) {
+                       $data->{'selected'} = 1;
+               }
+               $results[$count] = $data;
+               $count++;
+       }
+    #my $data = $sth->fetchall_arrayref({});
+    return \@results; #$data;
 }
 
 =item fixEncoding
@@ -1169,18 +897,17 @@ sub FixEncoding {
 =cut
 
 sub GetKohaAuthorisedValues {
-  my ($kohafield) = @_;
+  my ($kohafield,$fwcode) = @_;
+  $fwcode='' unless $fwcode;
   my %values;
   my $dbh = C4::Context->dbh;
-  my $sthnflstatus = $dbh->prepare('select authorised_value from marc_subfield_structure where kohafield=?');
-  $sthnflstatus->execute($kohafield);
-  my $authorised_valuecode = $sthnflstatus->fetchrow;
-  if ($authorised_valuecode) {  
-    $sthnflstatus = $dbh->prepare("select authorised_value, lib from authorised_values where category=? ");
-    $sthnflstatus->execute($authorised_valuecode);
-    while ( my ($val, $lib) = $sthnflstatus->fetchrow_array ) { 
-      $values{$val}= $lib;
-    }
+  my $avcode = GetAuthValCode($kohafield,$fwcode);
+  if ($avcode) {  
+    my $sth = $dbh->prepare("select authorised_value, lib from authorised_values where category=? ");
+    $sth->execute($avcode);
+       while ( my ($val, $lib) = $sth->fetchrow_array ) { 
+               $values{$val}= $lib;
+       }
   }
   return \%values;
 }
@@ -1191,13 +918,18 @@ sub GetKohaAuthorisedValues {
 
 $res = GetManagedTagSubfields();
 
+=back
+
 Returns a reference to a big hash of hash, with the Marc structure fro the given frameworkcode
-$forlibrarian  :if set to 1, the MARC descriptions are the librarians ones, otherwise it's the public (OPAC) ones
-$frameworkcode : the framework code to read
 
-=back
+NOTE: This function is used only by the (incomplete) bulk editing feature.  Since
+that feature currently does not deal with items and biblioitems changes 
+correctly, those tags are specifically excluded from the list prepared
+by this function.
 
-=back
+For future reference, if a bulk item editing feature is implemented at some point, it
+needs some design thought -- for example, circulation status fields should not 
+be changed willy-nilly.
 
 =cut
 
@@ -1213,7 +945,11 @@ FROM marc_subfield_structure
     ON marc_tag_structure.tagfield = marc_subfield_structure.tagfield
     AND marc_tag_structure.frameworkcode = marc_subfield_structure.frameworkcode
 WHERE marc_subfield_structure.tab>=0
-ORDER BY tagsubfield|);
+AND marc_tag_structure.tagfield NOT IN (SELECT tagfield FROM marc_subfield_structure WHERE kohafield like 'items.%')
+AND marc_tag_structure.tagfield NOT IN (SELECT tagfield FROM marc_subfield_structure WHERE kohafield = 'biblioitems.itemtype')
+AND marc_subfield_structure.kohafield <> 'biblio.biblionumber'
+AND marc_subfield_structure.kohafield <>  'biblioitems.biblioitemnumber'
+ORDER BY marc_subfield_structure.tagfield, tagsubfield|);
   $rq->execute;
   my $data=$rq->fetchall_arrayref({});
   return $data;