Bug 18639: (follow-up) Populate replacement price from list price during ordering
[koha.git] / Koha / Patron / Files.pm
blob299666e5866f0bee0a18f26039a09cf2c37ba4b3
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>.
20 use Modern::Perl;
23 use C4::Context;
24 use C4::Output;
25 use C4::Debug;
28 =head1 NAME
30 Koha::Patron::Files - Module for managing patron files
32 =head1 METHODS
34 =over
36 =cut
38 sub new {
39 my ( $class, %args ) = @_;
40 my $self = bless( {}, $class );
42 $self->{'borrowernumber'} = $args{'borrowernumber'};
44 return $self;
47 =item GetFilesInfo()
49 my $bf = Koha::Patron::Files->new( borrowernumber => $borrowernumber );
50 my $files_hashref = $bf->GetFilesInfo
52 =cut
54 sub GetFilesInfo {
55 my $self = shift;
57 my $dbh = C4::Context->dbh;
58 my $query = "
59 SELECT
60 file_id,
61 file_name,
62 file_type,
63 file_description,
64 date_uploaded
65 FROM borrower_files
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( {} );
74 =item AddFile()
76 my $bf = Koha::Patron::Files->new( borrowernumber => $borrowernumber );
77 $bh->AddFile( name => $filename, type => $mimetype,
78 description => $description, content => $content );
80 =cut
82 sub AddFile {
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;
93 my $query = "
94 INSERT INTO borrower_files ( borrowernumber, file_name, file_type, file_description, file_content )
95 VALUES ( ?,?,?,?,? )
97 my $sth = $dbh->prepare($query);
98 $sth->execute( $self->{'borrowernumber'},
99 $name, $type, $description, $content );
102 =item GetFile()
104 my $bf = Koha::Patron::Files->new( borrowernumber => $borrowernumber );
105 my $file = $bh->GetFile( file_id => $file_id );
107 =cut
109 sub GetFile {
110 my ( $self, %args ) = @_;
112 my $file_id = $args{'id'};
114 my $dbh = C4::Context->dbh;
115 my $query = "
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();
123 =item DelFile()
125 my $bf = Koha::Patron::Files->new( borrowernumber => $borrowernumber );
126 $bh->DelFile( file_id => $file_id );
128 =cut
130 sub DelFile {
131 my ( $self, %args ) = @_;
133 my $file_id = $args{'id'};
135 my $dbh = C4::Context->dbh;
136 my $query = "
137 DELETE FROM borrower_files WHERE file_id = ? AND borrowernumber = ?
139 my $sth = $dbh->prepare($query);
140 $sth->execute( $file_id, $self->{'borrowernumber'} );
144 __END__
146 =back
148 =head1 AUTHOR
150 Kyle M Hall <kyle.m.hall@gmail.com>
152 =cut