Bug 22533: Fix manual invoices from patron accounting
[koha.git] / members / files.pl
1 #!/usr/bin/perl
2
3 # Copyright 2012 ByWater Solutions
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19
20 use Modern::Perl;
21
22 use CGI qw ( -utf8 );
23
24 use C4::Auth;
25 use C4::Output;
26 use C4::Members;
27 use C4::Members::Attributes qw(GetBorrowerAttributes);
28 use C4::Debug;
29
30 use Koha::DateUtils;
31 use Koha::Patrons;
32 use Koha::Patron::Files;
33 use Koha::Patron::Categories;
34
35 my $cgi = CGI->new;
36
37 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
38     {
39         template_name   => "members/files.tt",
40         query           => $cgi,
41         type            => "intranet",
42         authnotrequired => 0,
43         flagsrequired   => { borrowers => 'edit_borrowers' },
44         debug           => 1,
45     }
46 );
47 $template->param( 'borrower_files' => 1 );
48
49 my $borrowernumber = $cgi->param('borrowernumber');
50
51 my $logged_in_user = Koha::Patrons->find( $loggedinuser ) or die "Not logged in";
52 my $patron         = Koha::Patrons->find($borrowernumber);
53 output_and_exit_if_error( $cgi, $cookie, $template, { module => 'members', logged_in_user => $logged_in_user, current_patron => $patron } );
54
55 my $bf = Koha::Patron::Files->new( borrowernumber => $borrowernumber ); # FIXME Should be $patron->get_files. Koha::Patron::Files needs to be Koha::Objects based first
56
57 my $op = $cgi->param('op') || '';
58
59 if ( $op eq 'download' ) {
60     my $file_id = $cgi->param('file_id');
61     my $file = $bf->GetFile( id => $file_id );
62
63     print $cgi->header(
64         -type       => $file->{'file_type'},
65         -charset    => 'utf-8',
66         -attachment => $file->{'file_name'}
67     );
68     print $file->{'file_content'};
69 }
70 else {
71
72     my $patron_category = $patron->category;
73     $template->param( patron => $patron );
74
75     my %errors;
76
77     if ( $op eq 'upload' ) {
78         my $uploaded_file = $cgi->upload('uploadfile');
79
80         if ($uploaded_file) {
81             my $filename = $cgi->param('uploadfile');
82             my $mimetype = $cgi->uploadInfo($filename)->{'Content-Type'};
83
84             $errors{'empty_upload'} = 1 if ( -z $uploaded_file );
85
86             if (%errors) {
87                 $template->param( errors => %errors );
88             }
89             else {
90                 my $file_content;
91                 while (<$uploaded_file>) {
92                     $file_content .= $_;
93                 }
94
95                 $bf->AddFile(
96                     name    => $filename,
97                     type    => $mimetype,
98                     content => $file_content,
99                     description => scalar $cgi->param('description'),
100                 );
101             }
102         }
103         else {
104             $errors{'no_file'} = 1;
105         }
106     } elsif ( $op eq 'delete' ) {
107         $bf->DelFile( id => scalar $cgi->param('file_id') );
108     }
109
110     if (C4::Context->preference('ExtendedPatronAttributes')) {
111         my $attributes = GetBorrowerAttributes($borrowernumber);
112         $template->param(
113             ExtendedPatronAttributes => 1,
114             extendedattributes => $attributes
115         );
116     }
117
118     $template->param(
119         files => Koha::Patron::Files->new( borrowernumber => $borrowernumber )
120           ->GetFilesInfo(),
121
122         errors => \%errors,
123     );
124     output_html_with_http_headers $cgi, $cookie, $template->output;
125 }
126
127 =head1 AUTHOR
128
129 Kyle M Hall <kyle@bywatersolutions.com>
130
131 =cut