1 package Koha
::Patron
::Files
;
3 # Copyright 2012 Kyle M Hall
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>.
30 Koha::Patron::Files - Module for managing patron files
39 my ( $class, %args ) = @_;
40 my $self = bless( {}, $class );
42 $self->{'borrowernumber'} = $args{'borrowernumber'};
49 my $bf = Koha::Patron::Files->new( borrowernumber => $borrowernumber );
50 my $files_hashref = $bf->GetFilesInfo
57 my $dbh = C4
::Context
->dbh;
66 WHERE borrowernumber = ?
67 ORDER BY file_name, date_uploaded
69 my $sth = $dbh->prepare($query);
70 $sth->execute( $self->{'borrowernumber'} );
71 return $sth->fetchall_arrayref( {} );
76 my $bf = Koha::Patron::Files->new( borrowernumber => $borrowernumber );
77 $bh->AddFile( name => $filename, type => $mimetype,
78 description => $description, content => $content );
83 my ( $self, %args ) = @_;
85 my $name = $args{'name'};
86 my $type = $args{'type'};
87 my $description = $args{'description'};
88 my $content = $args{'content'};
90 return unless ( $name && $content );
92 my $dbh = C4
::Context
->dbh;
94 INSERT INTO borrower_files ( borrowernumber, file_name, file_type, file_description, file_content )
97 my $sth = $dbh->prepare($query);
98 $sth->execute( $self->{'borrowernumber'},
99 $name, $type, $description, $content );
104 my $bf = Koha::Patron::Files->new( borrowernumber => $borrowernumber );
105 my $file = $bh->GetFile( file_id => $file_id );
110 my ( $self, %args ) = @_;
112 my $file_id = $args{'id'};
114 my $dbh = C4
::Context
->dbh;
116 SELECT * FROM borrower_files WHERE file_id = ? AND borrowernumber = ?
118 my $sth = $dbh->prepare($query);
119 $sth->execute( $file_id, $self->{'borrowernumber'} );
120 return $sth->fetchrow_hashref();
125 my $bf = Koha::Patron::Files->new( borrowernumber => $borrowernumber );
126 $bh->DelFile( file_id => $file_id );
131 my ( $self, %args ) = @_;
133 my $file_id = $args{'id'};
135 my $dbh = C4
::Context
->dbh;
137 DELETE FROM borrower_files WHERE file_id = ? AND borrowernumber = ?
139 my $sth = $dbh->prepare($query);
140 $sth->execute( $file_id, $self->{'borrowernumber'} );
150 Kyle M Hall <kyle.m.hall@gmail.com>