fix for bug 1771: Template errors with remote itemtype image
[koha.git] / members / member-picupload.pl
blobc6f6afc7a84ba09191db7b1d13ccaa684deb4f22
1 #!/usr/bin/perl
4 # script to upload a picture to a borrowerimages directory.
5 # checks to see if its either displaying the upload form
6 # or doing the actual upload.
7 # written by Waylon Robertson (genjimoto@sourceforge) 2005/08/22
10 # Copyright 2000-2002 Katipo Communications
12 # This file is part of Koha.
14 # Koha is free software; you can redistribute it and/or modify it under the
15 # terms of the GNU General Public License as published by the Free Software
16 # Foundation; either version 2 of the License, or (at your option) any later
17 # version.
19 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
20 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
21 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
23 # You should have received a copy of the GNU General Public License along with
24 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
25 # Suite 330, Boston, MA 02111-1307 USA
27 use strict;
28 use C4::Auth;
29 use C4::Context;
30 use C4::Output;
31 use CGI;
34 my $input = new CGI;
35 my $name = $input->param('name');
36 my $borrowernumber = $input->param('borrowernumber');
37 my $photo = $input->param('photo');
39 my $template_name;
40 my $htdocs = C4::Context->config('intrahtdocs');
41 my $upload_dir = $htdocs."/borrowerimages";
42 if($photo eq ""){
43 $template_name = "members/member-picupload.tmpl";
44 } else {
45 $template_name = "members/moremember.tmpl";
48 my ($template, $loggedinuser, $cookie)
49 = get_template_and_user({template_name => $template_name,
50 query => $input,
51 type => "intranet",
52 authnotrequired => 0,
53 flagsrequired => {borrowers => 1},
54 debug => 1,
55 });
56 if ($photo){
58 my $filename=$borrowernumber.'.jpg';
59 my $upload_filehandle = $input->upload("photo");
60 open UPLOADFILE, ">$upload_dir/$filename";
61 binmode UPLOADFILE;
62 while ( <$upload_filehandle> )
64 print UPLOADFILE;
66 close UPLOADFILE;
68 else {
69 $template->param(
70 borrowernumber => $borrowernumber,
71 name => $name
73 output_html_with_http_headers $input, $cookie, $template->output;
75 print $input->redirect("http://intranet/cgi-bin/koha/members/moremember.pl?borrowernumber=$borrowernumber");