3 # Copyright 2012 ByWater Solutions
5 # This file is part of Koha.
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.
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.
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>.
28 use C4
::Members
::Attributes
qw(GetBorrowerAttributes);
33 use Koha
::Patron
::Files
;
37 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
39 template_name
=> "members/files.tt",
43 flagsrequired
=> { borrowers
=> 1 },
47 $template->param( 'borrower_files' => 1 );
49 my $borrowernumber = $cgi->param('borrowernumber');
50 my $bf = Koha
::Patron
::Files
->new( borrowernumber
=> $borrowernumber );
52 my $op = $cgi->param('op') || '';
54 if ( $op eq 'download' ) {
55 my $file_id = $cgi->param('file_id');
56 my $file = $bf->GetFile( id
=> $file_id );
59 -type
=> $file->{'file_type'},
61 -attachment
=> $file->{'file_name'}
63 print $file->{'file_content'};
66 my $patron = Koha
::Patrons
->find( $borrowernumber );
67 my $patron_category = $patron->category;
68 $template->param(%{ $patron->unblessed});
72 if ( $op eq 'upload' ) {
73 my $uploaded_file = $cgi->upload('uploadfile');
76 my $filename = $cgi->param('uploadfile');
77 my $mimetype = $cgi->uploadInfo($filename)->{'Content-Type'};
79 $errors{'empty_upload'} = 1 if ( -z
$uploaded_file );
82 $template->param( errors
=> %errors );
86 while (<$uploaded_file>) {
93 content
=> $file_content,
94 description
=> scalar $cgi->param('description'),
99 $errors{'no_file'} = 1;
101 } elsif ( $op eq 'delete' ) {
102 $bf->DelFile( id
=> scalar $cgi->param('file_id') );
106 categoryname
=> $patron_category->description,
107 RoutingSerials
=> C4
::Context
->preference('RoutingSerials'),
110 if (C4
::Context
->preference('ExtendedPatronAttributes')) {
111 my $attributes = GetBorrowerAttributes
($borrowernumber);
113 ExtendedPatronAttributes
=> 1,
114 extendedattributes
=> $attributes
118 $template->param( picture
=> 1 ) if $patron->image;
120 $template->param( adultborrower
=> 1 )
121 if ( $patron_category->category_type eq 'A' || $patron_category->category_type eq 'I' );
124 files
=> Koha
::Patron
::Files
->new( borrowernumber
=> $borrowernumber )
129 output_html_with_http_headers
$cgi, $cookie, $template->output;
134 Kyle M Hall <kyle@bywatersolutions.com>