Bug 29957: Adjust push @$cookie statements in Auth
[koha.git] / C4 / Linker / Default.pm
1 package C4::Linker::Default;
2
3 # Copyright 2011 C & P Bibliography Services
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19
20 use strict;
21 use warnings;
22 use MARC::Field;
23 use C4::Heading;
24
25 use base qw(C4::Linker);
26
27 sub get_link {
28     my $self        = shift;
29     my $heading     = shift;
30     my $behavior    = shift || 'default';
31     my $search_form = $heading->search_form();
32     my $auth_type = $heading->auth_type();
33     my $authid;
34     my $fuzzy = 0;
35     my $match_count;
36
37     if ( $self->{'cache'}->{$search_form.$auth_type}->{'cached'} ) {
38         $authid = $self->{'cache'}->{$search_form.$auth_type}->{'authid'};
39         $fuzzy  = $self->{'cache'}->{$search_form.$auth_type}->{'fuzzy'};
40         $match_count = $self->{'cache'}->{$search_form.$auth_type}->{'match_count'};
41     }
42     else {
43
44         # look for matching authorities
45         my $authorities = $heading->authorities(1);    # $skipmetadata = true
46         $match_count = scalar @$authorities;
47
48         if ( $behavior eq 'default' && $#{$authorities} == 0 ) {
49             $authid = $authorities->[0]->{'authid'};
50         }
51         elsif ( $behavior eq 'first' && $#{$authorities} >= 0 ) {
52             $authid = $authorities->[0]->{'authid'};
53             $fuzzy  = $#{$authorities} > 0;
54         }
55         elsif ( $behavior eq 'last' && $#{$authorities} >= 0 ) {
56             $authid = $authorities->[ $#{$authorities} ]->{'authid'};
57             $fuzzy  = $#{$authorities} > 0;
58         }
59
60         if ( !defined $authid && $self->{'broader_headings'} ) {
61             my $field     = $heading->field();
62             my @subfields = grep { $_->[0] ne '9' } $field->subfields();
63             if ( scalar @subfields > 1 ) {
64                 pop @subfields;
65                 $field =
66                     MARC::Field->new(
67                         $field->tag,
68                         $field->indicator(1),
69                         $field->indicator(2),
70                         map { $_->[0] => $_->[1] } @subfields
71                     );
72                 ( $authid, $fuzzy ) =
73                   $self->get_link( C4::Heading->new_from_field($field),
74                     $behavior );
75             }
76         }
77
78         $self->{'cache'}->{$search_form.$auth_type}->{'cached'} = 1;
79         $self->{'cache'}->{$search_form.$auth_type}->{'authid'} = $authid;
80         $self->{'cache'}->{$search_form.$auth_type}->{'fuzzy'}  = $fuzzy;
81         $self->{'cache'}->{$search_form.$auth_type}->{'match_count'} = $match_count;
82     }
83     return $self->SUPER::_handle_auth_limit($authid), $fuzzy, $match_count;
84 }
85
86 sub update_cache {
87     my $self        = shift;
88     my $heading     = shift;
89     my $authid      = shift;
90     my $search_form = $heading->search_form();
91     my $auth_type = $heading->auth_type();
92     my $fuzzy = 0;
93
94     $self->{'cache'}->{$search_form.$auth_type}->{'cached'} = 1;
95     $self->{'cache'}->{$search_form.$auth_type}->{'authid'} = $authid;
96     $self->{'cache'}->{$search_form.$auth_type}->{'fuzzy'}  = $fuzzy;
97 }
98
99 sub flip_heading {
100     my $self    = shift;
101     my $heading = shift;
102
103     # TODO: implement
104 }
105
106 1;
107 __END__
108
109 =head1 NAME
110
111 C4::Linker::Default - match only if there is a single matching auth
112
113 =cut