Line 0
Link Here
|
|
|
1 |
#!/usr/bin/perl |
2 |
|
3 |
# Copyright Koha Development Team |
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 Modern::Perl; |
21 |
use CGI qw ( -utf8 ); |
22 |
use C4::Auth; |
23 |
use C4::Context; |
24 |
use C4::Output; |
25 |
|
26 |
use Koha::Libraries; |
27 |
use Koha::Library::OverDriveInfos; |
28 |
|
29 |
my $input = CGI->new; |
30 |
my @branchcodes = $input->multi_param('branchcode'); |
31 |
my @authnames = $input->multi_param('authname'); |
32 |
my $op = $input->param('op'); |
33 |
my @messages; |
34 |
|
35 |
our ( $template, $loggedinuser, $cookie ) = get_template_and_user( |
36 |
{ template_name => 'admin/overdrive.tt', |
37 |
query => $input, |
38 |
type => 'intranet', |
39 |
authnotrequired => 0, |
40 |
flagsrequired => { parameters => 'parameters_remaining_permissions' }, |
41 |
} |
42 |
); |
43 |
|
44 |
if ( $op && $op eq 'update' ) { |
45 |
my %od_info; |
46 |
@od_info{ @branchcodes } = @authnames; |
47 |
while( my($branchcode,$authname) = each %od_info){ |
48 |
my $cur_info = Koha::Library::OverDriveInfos->find($branchcode); |
49 |
if( $cur_info ) { |
50 |
$cur_info->authname($authname)->store; |
51 |
} else { |
52 |
Koha::Library::OverDriveInfo->new({ |
53 |
branchcode => $branchcode, |
54 |
authname => $authname, |
55 |
})->store; |
56 |
} |
57 |
} |
58 |
} |
59 |
|
60 |
my @branches = Koha::Libraries->search(); |
61 |
my @branch_od_info; |
62 |
foreach my $branch ( @branches ){ |
63 |
my $od_info = Koha::Library::OverDriveInfos->find($branch->branchcode); |
64 |
if( $od_info ){ |
65 |
push @branch_od_info, { branchcode => $od_info->branchcode, authname => $od_info->authname }; |
66 |
} else { |
67 |
push @branch_od_info, { branchcode => $branch->branchcode, authname => "" }; |
68 |
} |
69 |
} |
70 |
|
71 |
$template->param( |
72 |
branches => \@branch_od_info, |
73 |
); |
74 |
|
75 |
output_html_with_http_headers $input, $cookie, $template->output; |