9 use autouse
'Data::Dumper' => qw(Dumper);
15 use C4
::Creators
::Lib
1.000000 qw(html_table);
16 use C4
::Patroncards
::Lib
1.000000 qw(put_image get_image rm_image);
20 my ($template, $loggedinuser, $cookie) = get_template_and_user
({
21 template_name
=> "patroncards/image-manage.tmpl",
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,
62 my $image = Graphics
::Magick
->new;
63 eval{$image->Read($cgi->tmpFileName($file_name));};
65 warn sprintf('An error occurred while creating the image object: %s',$@
);
68 IMPORT_SUCCESSFUL
=> 0,
69 SOURCE_FILE
=> $source_file,
70 IMAGE_NAME
=> $image_name,
78 my $size = $image->Get('filesize');
79 $errstr = 302 if $size > 500000;
80 $image->Set(magick
=> 'png'); # convert all images to png as this is a lossless format which is important for resizing operations later on
81 my $err = put_image
($image_name, $image->ImageToBlob()) || '0';
82 $errstr = 101 if $err == 1;
83 $errstr = 303 if $err == 202;
86 IMPORT_SUCCESSFUL
=> 0,
87 SOURCE_FILE
=> $source_file,
88 IMAGE_NAME
=> $image_name,
92 image_limit
=> $image_limit,
96 $table = html_table
($display_columns->{'image'}, get_image
(undef, "image_id, image_name")); # refresh table data after successfully performing save operation
98 IMPORT_SUCCESSFUL
=> 1,
99 SOURCE_FILE
=> $source_file,
100 IMAGE_NAME
=> $image_name,
107 elsif ($op eq 'delete') {
111 $err = rm_image
(\
@image_ids);
112 $errstr = 102 if $err;
115 warn sprintf('No image ids passed in to delete.');
120 DELETE_SUCCESSFULL
=> 0,
121 IMAGE_IDS
=> join(', ', @image_ids),
125 image_ids
=> join(',',@image_ids),
129 $table = html_table
($display_columns->{'image'}, get_image
(undef, "image_id, image_name")); # refresh table data after successfully performing delete operation
131 DELETE_SUCCESSFULL
=> 1,
136 elsif ($op eq 'none') {
138 IMPORT_SUCCESSFUL
=> 0,
139 SOURCE_FILE
=> $source_file,
140 IMAGE_NAME
=> $image_name,
144 else { # to trap unsupported operations
145 warn sprintf('Image upload interface called an unsupported operation: %s',$op);
148 IMPORT_SUCCESSFUL
=> 0,
149 SOURCE_FILE
=> $source_file,
150 IMAGE_NAME
=> $image_name,
157 output_html_with_http_headers
$cgi, $cookie, $template->output;
163 image-upload.pl - Script for handling uploading of single images and importing them into the database.
171 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.
175 Chris Nighswonger <cnighswonger AT foundations DOT edu>
179 Copyright 2009 Foundations Bible College.
183 This file is part of Koha.
185 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
186 Foundation; either version 2 of the License, or (at your option) any later version.
188 You should have received a copy of the GNU General Public License along with Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
189 Suite 330, Boston, MA 02111-1307 USA
191 =head1 DISCLAIMER OF WARRANTY
193 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
194 A PARTICULAR PURPOSE. See the GNU General Public License for more details.