Nomenclature cleanup for subscription adding page
[koha.git] / members / member-picupload.pl
1 #!/usr/bin/perl
2
3
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
8
9
10 # Copyright 2000-2002 Katipo Communications
11 #
12 # This file is part of Koha.
13 #
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.
18 #
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.
22 #
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
26
27 use strict;
28 use C4::Auth;
29 use C4::Context;
30 use C4::Output;
31 use CGI;
32
33
34 my $input = new CGI;
35 my $name = $input->param('name');
36 my $borrowernumber = $input->param('borrowernumber');
37 my $photo = $input->param('photo');
38
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";
46 }
47
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){
57
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> )
63         {
64                 print UPLOADFILE;
65         }
66         close UPLOADFILE;
67 }
68 else {
69         $template->param(
70                  borrowernumber => $borrowernumber,
71                  name => $name
72                  );
73         output_html_with_http_headers $input, $cookie, $template->output;
74 }
75 print $input->redirect("http://intranet/cgi-bin/koha/members/moremember.pl?borrowernumber=$borrowernumber");