Bug 17268: Set boolean for shared column in schema
[koha.git] / Koha / Patron / Attributes.pm
blob8acef02fac3a6e4d90cab2deaa75223c92dd71ad
1 package Koha::Patron::Attributes;
3 # This file is part of Koha.
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
18 use Modern::Perl;
20 use Koha::Patron::Attribute;
21 use Koha::Patron::Attribute::Types;
23 use base qw(Koha::Objects);
25 =head1 NAME
27 Koha::Patron::Attributes - Koha Patron Attributes Object set class
29 =head1 API
31 =head2 Class Methods
33 =cut
35 =head3 search
37 my $attributes = Koha::Patron::Attributes->search( $params );
39 =cut
41 sub search {
42 my ( $self, $params, $attributes ) = @_;
44 unless ( exists $attributes->{order_by} ) { $attributes->{order_by} = ['me.code', 'attribute'] }
46 return $self->SUPER::search( $params, $attributes );
49 =head3 filter_by_branch_limitations
51 my $attributes = Koha::Patron::Attributes->filter_by_branch_limitations([$branchcode]);
53 Search patron attributes filtered by a library
55 If $branchcode exists it will be used to filter the result set.
57 Otherwise it will be the library of the logged in user.
59 =cut
61 sub filter_by_branch_limitations {
62 my ( $self, $branchcode ) = @_;
64 # Maybe we should not limit if logged in user is superlibrarian?
65 my $branch_limit =
66 $branchcode ? $branchcode
67 # Do we raise an exception if no userenv defined?
68 : C4::Context->userenv ? C4::Context->userenv->{"branch"}
69 : undef;
71 my $or = $branch_limit
72 ? {
73 '-or' => [
74 'borrower_attribute_types_branches.b_branchcode' => undef,
75 'borrower_attribute_types_branches.b_branchcode' => $branch_limit,
78 : {};
80 my $join = $branch_limit
81 ? {
82 join => {
83 code => 'borrower_attribute_types_branches'
86 : {};
87 return $self->search( $or, $join );
90 =head3 merge_with
92 $new_attributes is an arrayref of hashrefs
94 =cut
96 sub merge_with {
97 my ( $self, $new_attributes ) = @_;
99 my @merged = @{$self->unblessed};
100 my $attribute_types = { map { $_->code => $_->unblessed } Koha::Patron::Attribute::Types->search };
101 for my $attr ( @$new_attributes ) {
102 unless ( $attr->{code} ) {
103 warn "Cannot merge element: no 'code' defined";
104 next;
107 my $attribute_type = $attribute_types->{$attr->{code}};
108 # FIXME Do we need that here or let ->store do the job?
109 unless ( $attribute_type ) {
110 warn "Cannot merge element: unrecognized code = '$attr->{code}'";
111 next;
113 unless ( $attribute_type->{repeatable} ) {
114 # filter out any existing attributes of the same code
115 @merged = grep {$attr->{code} ne $_->{code}} @merged;
118 push @merged, $attr;
121 # WARNING - we would like to return a set, but $new_attributes is not in storage yet
122 # Maybe there is something obvious I (JD) am missing
123 return [ sort { $a->{code} cmp $b->{code} || $a->{attribute} cmp $b->{attribute} } @merged ];
126 =head3 _type
128 =cut
130 sub _type {
131 return 'BorrowerAttribute';
134 sub object_class {
135 return 'Koha::Patron::Attribute';