Lines 26-32
use Koha::AuthorisedValue;
Link Here
|
26 |
use Koha::MarcSubfieldStructures; |
26 |
use Koha::MarcSubfieldStructures; |
27 |
use Koha::Cache::Memory::Lite; |
27 |
use Koha::Cache::Memory::Lite; |
28 |
|
28 |
|
29 |
use base qw(Koha::Objects Koha::Objects::Limit::Library); |
29 |
use base qw(Koha::Objects::Cached Koha::Objects::Limit::Library); |
30 |
|
30 |
|
31 |
=head1 NAME |
31 |
=head1 NAME |
32 |
|
32 |
|
Lines 104-119
sub get_description_by_koha_field {
Link Here
|
104 |
|
104 |
|
105 |
return {} unless defined $authorised_value; |
105 |
return {} unless defined $authorised_value; |
106 |
|
106 |
|
107 |
my $memory_cache = Koha::Cache::Memory::Lite->get_instance; |
107 |
my $av = $self->find_by_koha_field($params); |
108 |
my $cache_key = "AV_descriptions:$frameworkcode:$kohafield:$authorised_value"; |
108 |
return defined $av ? { lib => $av->lib, opac_description => $av->opac_description } : {}; |
109 |
my $description = $memory_cache->get_from_cache($cache_key); |
|
|
110 |
|
111 |
unless (defined $description) { |
112 |
my $av = $self->find_by_koha_field($params); |
113 |
$description = defined $av ? { lib => $av->lib, opac_description => $av->opac_description } : {}; |
114 |
$memory_cache->set_in_cache( $cache_key, $description ); |
115 |
} |
116 |
return $description; |
117 |
} |
109 |
} |
118 |
|
110 |
|
119 |
sub get_descriptions_by_koha_field { |
111 |
sub get_descriptions_by_koha_field { |
Lines 121-143
sub get_descriptions_by_koha_field {
Link Here
|
121 |
my $frameworkcode = $params->{frameworkcode} || ''; |
113 |
my $frameworkcode = $params->{frameworkcode} || ''; |
122 |
my $kohafield = $params->{kohafield}; |
114 |
my $kohafield = $params->{kohafield}; |
123 |
|
115 |
|
124 |
my $memory_cache = Koha::Cache::Memory::Lite->get_instance; |
116 |
my @avs = $self->search_by_koha_field($params)->as_list; |
125 |
my $cache_key = "AV_descriptions:$frameworkcode:$kohafield"; |
117 |
my $descriptions = [ |
126 |
my $descriptions = $memory_cache->get_from_cache($cache_key); |
118 |
map { |
127 |
|
119 |
{ |
128 |
unless (defined $descriptions) { |
120 |
authorised_value => $_->authorised_value, |
129 |
my @avs = $self->search_by_koha_field($params)->as_list; |
121 |
lib => $_->lib, |
130 |
$descriptions = [ |
122 |
opac_description => $_->opac_description |
131 |
map { |
123 |
} |
132 |
{ |
124 |
} @avs |
133 |
authorised_value => $_->authorised_value, |
125 |
]; |
134 |
lib => $_->lib, |
|
|
135 |
opac_description => $_->opac_description |
136 |
} |
137 |
} @avs |
138 |
]; |
139 |
$memory_cache->set_in_cache( $cache_key, $descriptions ); |
140 |
} |
141 |
return @{$descriptions}; |
126 |
return @{$descriptions}; |
142 |
} |
127 |
} |
143 |
|
128 |
|
Lines 184-204
sub get_descriptions_by_marc_field {
Link Here
|
184 |
|
169 |
|
185 |
return {} unless defined $params->{tagfield}; |
170 |
return {} unless defined $params->{tagfield}; |
186 |
|
171 |
|
187 |
my $memory_cache = Koha::Cache::Memory::Lite->get_instance; |
|
|
188 |
my $cache_key = "AV_descriptions_by_MARC:$frameworkcode:$tagfield"; |
189 |
if ($tagsubfield) { |
190 |
$cache_key .= ":$tagsubfield"; |
191 |
} |
192 |
|
193 |
my $cached = $memory_cache->get_from_cache($cache_key); |
194 |
return $cached if $cached; |
195 |
|
196 |
my $descriptions = {}; |
172 |
my $descriptions = {}; |
197 |
my @avs = $self->search_by_marc_field($params)->as_list; |
173 |
my @avs = $self->search_by_marc_field($params)->as_list; |
198 |
foreach my $av (@avs) { |
174 |
foreach my $av (@avs) { |
199 |
$descriptions->{ $av->authorised_value } = $av->lib; |
175 |
$descriptions->{ $av->authorised_value } = $av->lib; |
200 |
} |
176 |
} |
201 |
$memory_cache->set_in_cache( $cache_key, $descriptions ); |
|
|
202 |
return $descriptions; |
177 |
return $descriptions; |
203 |
} |
178 |
} |
204 |
|
179 |
|
205 |
- |
|
|