Bug 13199: Add missing notices for several installations
[koha.git] / plugins / plugins-upload.pl
blob34805e86838299b978e20feed94120788efec72b
1 #!/usr/bin/perl
4 # This file is part of Koha.
6 # Koha is free software; you can redistribute it and/or modify it under the
7 # terms of the GNU General Public License as published by the Free Software
8 # Foundation; either version 2 of the License, or (at your option) any later
9 # version.
11 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
12 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
13 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License along
16 # with Koha; if not, write to the Free Software Foundation, Inc.,
17 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 use strict;
20 use warnings;
22 use Archive::Extract;
23 use File::Temp;
24 use File::Copy;
25 use CGI;
27 use C4::Context;
28 use C4::Auth;
29 use C4::Output;
30 use C4::Members;
31 use C4::Debug;
32 use Koha::Plugins;
34 my $plugins_enabled = C4::Context->preference('UseKohaPlugins') && C4::Context->config("enable_plugins");
36 my $input = new CGI;
38 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
39 { template_name => ($plugins_enabled) ? "plugins/plugins-upload.tt" : "plugins/plugins-disabled.tt",
40 query => $input,
41 type => "intranet",
42 authnotrequired => 0,
43 flagsrequired => { plugins => 'manage' },
44 debug => 1,
48 my $uploadfilename = $input->param('uploadfile');
49 my $uploadfile = $input->upload('uploadfile');
50 my $op = $input->param('op');
52 my ( $total, $handled, @counts, $tempfile, $tfh );
54 my %errors;
56 if ($plugins_enabled) {
57 if ( ( $op eq 'Upload' ) && $uploadfile ) {
58 my $plugins_dir = C4::Context->config("pluginsdir");
60 my $dirname = File::Temp::tempdir( CLEANUP => 1 );
61 $debug and warn "dirname = $dirname";
63 my $filesuffix;
64 $filesuffix = $1 if $uploadfilename =~ m/(\..+)$/i;
65 ( $tfh, $tempfile ) = File::Temp::tempfile( SUFFIX => $filesuffix, UNLINK => 1 );
67 $debug and warn "tempfile = $tempfile";
69 $errors{'NOTKPZ'} = 1 if ( $uploadfilename !~ /\.kpz$/i );
70 $errors{'NOWRITETEMP'} = 1 unless ( -w $dirname );
71 $errors{'NOWRITEPLUGINS'} = 1 unless ( -w $plugins_dir );
72 $errors{'EMPTYUPLOAD'} = 1 unless ( length($uploadfile) > 0 );
74 if (%errors) {
75 $template->param( ERRORS => [ \%errors ] );
76 } else {
77 while (<$uploadfile>) {
78 print $tfh $_;
80 close $tfh;
82 my $ae = Archive::Extract->new( archive => $tempfile, type => 'zip' );
83 unless ( $ae->extract( to => $plugins_dir ) ) {
84 warn "ERROR: " . $ae->error;
85 $errors{'UZIPFAIL'} = $uploadfilename;
86 $template->param( ERRORS => [ \%errors ] );
87 output_html_with_http_headers $input, $cookie, $template->output;
88 exit;
91 } elsif ( ( $op eq 'Upload' ) && !$uploadfile ) {
92 warn "Problem uploading file or no file uploaded.";
95 if ( $uploadfile && !%errors && !$template->param('ERRORS') ) {
96 print $input->redirect("/cgi-bin/koha/plugins/plugins-home.pl");
97 } else {
98 output_html_with_http_headers $input, $cookie, $template->output;
101 } else {
102 output_html_with_http_headers $input, $cookie, $template->output;