3 # Copyright 2011 C & P Bibliography Services
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 upload-cover-image.pl - Script for handling uploading of both single and bulk coverimages and importing them into the database.
33 This script is called and presents the user with an interface allowing him/her to upload a single cover image or bulk cover images via a zip file.
34 Images will be resized into thumbnails of 140x200 pixels and larger images of
35 800x600 pixels. If the images that are uploaded are larger, they will be
36 resized, maintaining aspect ratio.
56 my $fileID = $input->param('uploadedfileid');
57 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
59 template_name
=> "tools/upload-images.tmpl",
63 flagsrequired
=> { tools
=> 'upload_cover_images' },
68 my $filetype = $input->param('filetype');
69 my $biblionumber = $input->param('biblionumber');
70 my $uploadfilename = $input->param('uploadfile');
71 my $replace = !C4
::Context
->preference("AllowMultipleCovers")
72 || $input->param('replace');
73 my $op = $input->param('op');
74 my %cookies = parse CGI
::Cookie
($cookie);
75 my $sessionID = $cookies{'CGISESSID'}->value;
79 $template->{VARS
}->{'filetype'} = $filetype;
80 $template->{VARS
}->{'biblionumber'} = $biblionumber;
85 my $uploaded_file = C4
::UploadedFile
->fetch( $sessionID, $fileID );
86 if ( $filetype eq 'image' ) {
87 my $fh = $uploaded_file->fh();
88 my $srcimage = GD
::Image
->new($fh);
89 if ( defined $srcimage ) {
90 my $dberror = PutImage
( $biblionumber, $srcimage, $replace );
104 my $filename = $uploaded_file->filename();
105 my $dirname = File
::Temp
::tempdir
( CLEANUP
=> 1 );
106 unless ( system( "unzip", $filename, '-d', $dirname ) == 0 ) {
111 push @directories, "$dirname";
112 foreach my $recursive_dir (@directories) {
114 opendir $dir, $recursive_dir;
115 while ( my $entry = readdir $dir ) {
116 push @directories, "$recursive_dir/$entry"
117 if ( -d
"$recursive_dir/$entry" and $entry !~ /^[._
]/ );
121 foreach my $dir (@directories) {
123 if ( -e
"$dir/idlink.txt" ) {
124 $file = "$dir/idlink.txt";
126 elsif ( -e
"$dir/datalink.txt" ) {
127 $file = "$dir/datalink.txt";
132 if ( open( FILE
, $file ) ) {
133 while ( my $line = <FILE
> ) {
135 ( $line =~ /\t/ ) ?
"\t"
136 : ( $line =~ /,/ ) ?
","
139 #$debug and warn "Delimeter is \'$delim\'";
140 unless ( $delim eq "," || $delim eq "\t" ) {
142 "Unrecognized or missing field delimeter. Please verify that you are using either a ',' or a 'tab'";
146 ( $biblionumber, $filename ) = split $delim, $line;
148 s/[\"\r\n]//g; # remove offensive characters
149 $filename =~ s/[\"\r\n\s]//g;
150 my $srcimage = GD
::Image
->new("$dir/$filename");
151 if ( defined $srcimage ) {
154 PutImage
( $biblionumber, $srcimage,
174 $template->{VARS
}->{'total'} = $total;
175 $template->{VARS
}->{'uploadimage'} = 1;
176 $template->{VARS
}->{'error'} = $error;
177 $template->{VARS
}->{'biblionumber'} = $biblionumber;
180 output_html_with_http_headers
$input, $cookie, $template->output;
186 Written by Jared Camins-Esakov of C & P Bibliography Services, in part based on
187 code by Koustubha Kale of Anant Corporation and Chris Nighswonger of Foundation