3 # Frédérick Capovilla, 2011 - Libéo
5 # Show a list of all the files in the directory specified by the option
6 # "access_dir" in koha-conf.xml so they can be downloaded by users with the
7 # "access_files" permission.
9 # This file is part of Koha.
11 # Koha is free software; you can redistribute it and/or modify it
12 # under the terms of the GNU General Public License as published by
13 # the Free Software Foundation; either version 3 of the License, or
14 # (at your option) any later version.
16 # Koha is distributed in the hope that it will be useful, but
17 # WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 # GNU General Public License for more details.
21 # You should have received a copy of the GNU General Public License
22 # along with Koha; if not, see <http://www.gnu.org/licenses>.
31 use File
::stat qw(stat);
32 use Digest
::MD5
qw(md5_hex);
36 my $file_id = $input->param("id");
37 my $access_dirs = C4
::Context
->config('access_dirs');
42 if (ref $access_dirs->{access_dir
} ){
43 @directories = @
{$access_dirs->{access_dir
}};
45 @directories =($access_dirs->{access_dir
});
51 my ($template, $borrowernumber, $cookie)
52 = get_template_and_user
({template_name
=> "tools/access_files.tt",
55 flagsrequired
=> { tools
=> 'access_files' },
58 unless(@directories) {
59 $template->param(error_no_dir
=> 1);
64 foreach my $dir(@directories){
66 foreach my $filename (readdir(DIR
)) {
67 my $full_path = "$dir/$filename";
68 my $id = md5_hex
($full_path);
69 next if ($filename =~ /^\./ or -d
$full_path);
71 # Make sure the filename is unicode-friendly
72 my $decoded_filename = decode
('utf8', $filename);
73 my $st = stat("$dir/$decoded_filename");
75 my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) =localtime($st->mtime);
76 my $dt=DateTime
->new(year
=> $year + 1900,
82 push(@files_list, {name
=> $decoded_filename,
91 my %files_hash = map { $_->{id
} => $_ } @files_list;
92 # If we received a file_id and it is valid, send the file to the browser
93 if(defined $file_id and exists $files_hash{$file_id} ){
94 my $filename = $files_hash{$file_id}->{name
};
95 my $dir = $files_hash{$file_id}->{access_dir
};
97 # Open the selected file and send it to the browser
98 print $input->header(-type
=> 'application/x-download',
100 -Content_length
=> -s
"$dir/$filename",
101 -attachment
=> "$filename");
104 open $fh, "<:encoding(UTF-8)", "$dir/$filename";
108 while(read($fh, $buf, 65536)) {
116 # Send the file list to the template
117 $template->param(files_loop
=> \
@files_list);
121 output_html_with_http_headers
$input, $cookie, $template->output;