Bug 6874: Add unit tests for C4::UploadedFiles
[koha.git] / cataloguing / value_builder / upload.pl
blob7eb15e5eae3a3c5bbb0e2ec468dfd0be031d0fc7
1 #!/usr/bin/perl
3 # Copyright 2011-2012 BibLibre
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 use Modern::Perl;
21 use CGI qw/-utf8/;
22 use File::Basename;
24 use C4::Auth;
25 use C4::Context;
26 use C4::Output;
27 use C4::UploadedFiles;
29 sub plugin_parameters {
30 my ( $dbh, $record, $tagslib, $i, $tabloop ) = @_;
31 return "";
34 sub plugin_javascript {
35 my ( $dbh, $record, $tagslib, $field_number, $tabloop ) = @_;
36 my $function_name = $field_number;
37 my $res = "
38 <script type=\"text/javascript\">
39 function Focus$function_name(subfield_managed) {
40 return 1;
43 function Blur$function_name(subfield_managed) {
44 return 1;
47 function Clic$function_name(index) {
48 var id = document.getElementById(index).value;
49 if(id.match(/id=([0-9a-f]+)/)){
50 id = RegExp.\$1;
52 window.open(\"../cataloguing/plugin_launcher.pl?plugin_name=upload.pl&index=\"+index+\"&id=\"+id, 'upload', 'width=600,height=400,toolbar=false,scrollbars=no');
55 </script>
58 return ( $function_name, $res );
61 sub plugin {
62 my ($input) = @_;
63 my $index = $input->param('index');
64 my $id = $input->param('id');
65 my $delete = $input->param('delete');
66 my $uploaded_file = $input->param('uploaded_file');
68 my $template_name = ($id || $delete)
69 ? "upload_delete_file.tt"
70 : "upload.tt";
72 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
73 { template_name => "cataloguing/value_builder/$template_name",
74 query => $input,
75 type => "intranet",
76 authnotrequired => 0,
77 flagsrequired => { editcatalogue => '*' },
78 debug => 1,
82 # Dealing with the uploaded file
83 if ($uploaded_file) {
84 my $fh = $input->upload('uploaded_file');
85 my $dir = $input->param('dir');
87 $id = C4::UploadedFiles::UploadFile($uploaded_file, $dir, $fh->handle);
88 if($id) {
89 my $OPACBaseURL = C4::Context->preference('OPACBaseURL');
90 $OPACBaseURL =~ s#/$##;
91 my $return = "$OPACBaseURL/cgi-bin/koha/opac-retrieve-file.pl?id=$id";
92 $template->param(
93 success => 1,
94 return => $return,
95 uploaded_file => $uploaded_file,
97 } else {
98 $template->param(error => 1);
100 } elsif ($delete || $id) {
101 # If there's already a file uploaded for this field,
102 # We handle its deletion
103 if ($delete) {
104 if(C4::UploadedFiles::DelUploadedFile($id)) {;
105 $template->param(success => 1);
106 } else {
107 $template->param(error => 1);
110 } else {
111 my $filefield = CGI::filefield(
112 -name => 'uploaded_file',
113 -size => 50,
116 my $upload_path = C4::Context->preference('uploadPath');
117 my $dirs_tree = [ {
118 name => '/',
119 value => '/',
120 dirs => finddirs($upload_path)
121 } ];
123 $template->param(
124 dirs_tree => $dirs_tree,
125 filefield => $filefield
129 $template->param(
130 index => $index,
131 id => $id
134 output_html_with_http_headers $input, $cookie, $template->output;
137 # Build a hierarchy of directories
138 sub finddirs {
139 my $base = shift;
140 my $upload_path = C4::Context->preference('uploadPath');
141 my $found = 0;
142 my @dirs;
143 my @files = glob("$base/*");
144 foreach (@files) {
145 if (-d $_ and -w $_) {
146 my $lastdirname = basename($_);
147 my $dirname = $_;
148 $dirname =~ s/^$upload_path//g;
149 push @dirs, {
150 value => $dirname,
151 name => $lastdirname,
152 dirs => finddirs($_)
154 $found = 1;
157 return \@dirs;
163 __END__
165 =head1 upload.pl
167 This plugin allow to upload files on the server and reference it in a marc
168 field.
170 Two system preference are used:
172 =over 4
174 =item * uploadPath: the real absolute path where files will be stored
176 =item * OPACBaseURL: for building URLs to be stored in MARC
178 =back