9 use autouse
'Data::Dumper' => qw(Dumper);
20 my ($template, $loggedinuser, $cookie) = get_template_and_user
({
21 template_name
=> "patroncards/image-manage.tt",
25 flagsrequired
=> {tools
=> 'batch_upload_patron_images'}, # FIXME: establish flag for patron card creator
29 my $image_name = $cgi->param('image_name') || '';
30 my $file_name = $cgi->param('uploadfile') || '';
31 my $upload_file = $cgi->upload('uploadfile') || '';
32 my $op = $cgi->param('op') || 'none';
33 my @image_ids = $cgi->param('image_id') if $cgi->param('image_id');
35 my $source_file = "$file_name"; # otherwise we end up with what amounts to a pointer to a filehandle rather than a user-friendly filename
37 my $display_columns = { image
=> [ #{db column => {label => 'col label', is link? }},
38 {image_id
=> {label
=> 'ID', link_field
=> 0}},
39 {image_name
=> {label
=> 'Name', link_field
=> 0}},
40 {select => {label
=> 'Select', value
=> 'image_id'}},
43 my $table = html_table
($display_columns->{'image'}, get_image
(undef, "image_id, image_name"));
45 my $image_limit = C4
::Context
->preference('ImageLimit') || '';
46 my $errstr = ''; # NOTE: For error codes see error-messages.inc
48 if ($op eq 'upload') {
50 warn sprintf('An error occurred while attempting to upload file %s.', $source_file);
53 IMPORT_SUCCESSFUL
=> 0,
54 SOURCE_FILE
=> $source_file,
55 IMAGE_NAME
=> $image_name,
61 my $image = Graphics
::Magick
->new;
62 eval{$image->Read($cgi->tmpFileName($file_name));};
64 warn sprintf('An error occurred while creating the image object: %s',$@
);
67 IMPORT_SUCCESSFUL
=> 0,
68 SOURCE_FILE
=> $source_file,
69 IMAGE_NAME
=> $image_name,
76 my $size = $image->Get('filesize');
77 $errstr = 302 if $size > 500000;
78 $image->Set(magick
=> 'png'); # convert all images to png as this is a lossless format which is important for resizing operations later on
79 my $err = put_image
($image_name, $image->ImageToBlob()) || '0';
80 $errstr = 101 if $err == 1;
81 $errstr = 303 if $err == 202;
84 IMPORT_SUCCESSFUL
=> 0,
85 SOURCE_FILE
=> $source_file,
86 IMAGE_NAME
=> $image_name,
89 image_limit
=> $image_limit,
93 $table = html_table
($display_columns->{'image'}, get_image
(undef, "image_id, image_name")); # refresh table data after successfully performing save operation
95 IMPORT_SUCCESSFUL
=> 1,
96 SOURCE_FILE
=> $source_file,
97 IMAGE_NAME
=> $image_name,
104 elsif ($op eq 'delete') {
108 $err = rm_image
(\
@image_ids);
109 $errstr = 102 if $err;
112 warn sprintf('No image ids passed in to delete.');
117 DELETE_SUCCESSFULL
=> 0,
118 IMAGE_IDS
=> join(', ', @image_ids),
121 image_ids
=> join(',',@image_ids),
125 $table = html_table
($display_columns->{'image'}, get_image
(undef, "image_id, image_name")); # refresh table data after successfully performing delete operation
127 DELETE_SUCCESSFULL
=> 1,
132 elsif ($op eq 'none') {
134 IMPORT_SUCCESSFUL
=> 0,
135 SOURCE_FILE
=> $source_file,
136 IMAGE_NAME
=> $image_name,
140 else { # to trap unsupported operations
141 warn sprintf('Image upload interface called an unsupported operation: %s',$op);
144 IMPORT_SUCCESSFUL
=> 0,
145 SOURCE_FILE
=> $source_file,
146 IMAGE_NAME
=> $image_name,
152 output_html_with_http_headers
$cgi, $cookie, $template->output;
158 image-upload.pl - Script for handling uploading of single images and importing them into the database.
166 This script is called and presents the user with an interface allowing him/her to upload a single image file. Files greater than 500K will be refused.
170 Chris Nighswonger <cnighswonger AT foundations DOT edu>
174 Copyright 2009 Foundations Bible College.
178 This file is part of Koha.
180 Koha is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software
181 Foundation; either version 2 of the License, or (at your option) any later version.
183 You should have received a copy of the GNU General Public License along with Koha; if not, write to the Free Software Foundation, Inc., 51 Franklin Street,
184 Fifth Floor, Boston, MA 02110-1301 USA.
186 =head1 DISCLAIMER OF WARRANTY
188 Koha is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
189 A PARTICULAR PURPOSE. See the GNU General Public License for more details.