3 # Copyright 2000-2002 Katipo Communications
4 # Copyright 2015 Koha Development Team
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
35 use Koha
::SMTP
::Servers
;
38 my $branchcode = $input->param('branchcode');
39 my $categorycode = $input->param('categorycode');
40 my $op = $input->param('op') || 'list';
43 my ( $template, $borrowernumber, $cookie ) = get_template_and_user
(
44 { template_name
=> "admin/branches.tt",
47 flagsrequired
=> { parameters
=> 'manage_libraries' },
52 if ( $op eq 'add_form' ) {
55 $library = Koha
::Libraries
->find($branchcode);
56 $template->param( selected_smtp_server
=> $library->smtp_server );
59 my @smtp_servers = Koha
::SMTP
::Servers
->search;
63 smtp_servers
=> \
@smtp_servers
65 } elsif ( $op eq 'add_validate' ) {
88 my $is_a_modif = $input->param('is_a_modif');
91 my $library = Koha
::Libraries
->find($branchcode);
92 for my $field (@fields) {
93 $library->$field( scalar $input->param($field) );
97 Koha
::Database
->new->schema->txn_do(
99 $library->store->discard_changes;
100 # Deal with SMTP server
101 my $smtp_server_id = $input->param('smtp_server');
103 if ( $smtp_server_id ) {
104 if ( $smtp_server_id eq '*' ) {
105 $library->smtp_server({ smtp_server
=> undef });
108 my $smtp_server = Koha
::SMTP
::Servers
->find( $smtp_server_id );
109 Koha
::Exceptions
::BadParameter
->throw( parameter
=> 'smtp_server' )
111 $library->smtp_server({ smtp_server
=> $smtp_server });
115 push @messages, { type
=> 'message', code
=> 'success_on_update' };
120 push @messages, { type
=> 'alert', code
=> 'error_on_update' };
123 $branchcode =~ s
|\s
||g
;
124 my $library = Koha
::Library
->new(
125 { branchcode
=> $branchcode,
126 ( map { $_ => scalar $input->param($_) || undef } @fields )
131 Koha
::Database
->new->schema->txn_do(
133 $library->store->discard_changes;
135 my $smtp_server_id = $input->param('smtp_server');
137 if ( $smtp_server_id ) {
138 if ( $smtp_server_id ne '*' ) {
139 my $smtp_server = Koha
::SMTP
::Servers
->find( $smtp_server_id );
140 Koha
::Exceptions
::BadParameter
->throw( parameter
=> 'smtp_server' )
142 $library->smtp_server({ smtp_server
=> $smtp_server });
146 push @messages, { type
=> 'message', code
=> 'success_on_insert' };
151 push @messages, { type
=> 'alert', code
=> 'error_on_insert' };
155 } elsif ( $op eq 'delete_confirm' ) {
156 my $library = Koha
::Libraries
->find($branchcode);
157 my $items_count = Koha
::Items
->search(
159 holdingbranch
=> $branchcode,
160 homebranch
=> $branchcode
164 my $patrons_count = Koha
::Patrons
->search( { branchcode
=> $branchcode, } )->count;
166 if ( $items_count or $patrons_count ) {
169 code
=> 'cannot_delete_library',
171 items_count
=> $items_count,
172 patrons_count
=> $patrons_count,
179 items_count
=> $items_count,
180 patrons_count
=> $patrons_count,
183 } elsif ( $op eq 'delete_confirmed' ) {
184 my $library = Koha
::Libraries
->find($branchcode);
186 my $deleted = eval { $library->delete; };
188 if ( $@
or not $deleted ) {
189 push @messages, { type
=> 'alert', code
=> 'error_on_delete' };
191 push @messages, { type
=> 'message', code
=> 'success_on_delete' };
198 $template->param( libraries_count
=> Koha
::Libraries
->search->count )
202 messages
=> \
@messages,
206 output_html_with_http_headers
$input, $cookie, $template->output;