X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FController%2FBase.pm;h=d50d519b71733c31c2c10d5759b1d52ed953b673;hb=06132987e7468eca8ca7dc6dbb55982ee5c14785;hp=fff11ca3a99b494a516f1c2ad35ce1091dae64e2;hpb=89c9ff022d3f13e27ba6bda085df15707fcfb0eb;p=kivitendo-erp.git diff --git a/SL/Controller/Base.pm b/SL/Controller/Base.pm index fff11ca3a..d50d519b7 100644 --- a/SL/Controller/Base.pm +++ b/SL/Controller/Base.pm @@ -5,6 +5,7 @@ use strict; use parent qw(Rose::Object); use Carp; +use IO::File; use List::Util qw(first); # @@ -65,6 +66,7 @@ sub render { my %params = ( %locals, AUTH => $::auth, + FLASH => $::form->{FLASH}, FORM => $::form, LOCALE => $::locale, LXCONFIG => \%::lx_office_conf, @@ -82,6 +84,22 @@ sub render { return $output; } +sub send_file { + my ($self, $file_name, %params) = @_; + + my $file = IO::File->new($file_name, 'r') || croak("Cannot open file '${file_name}'"); + my $content_type = $params{type} || 'application/octet_stream'; + my $attachment_name = $params{name} || $file_name; + $attachment_name =~ s:.*//::g; + + print $::form->create_http_response(content_type => $content_type, + content_disposition => 'attachment; filename="' . $attachment_name . '"', + content_length => -s $file); + + $::locale->with_raw_io(\*STDOUT, sub { print while <$file> }); + $file->close; +} + # # Before/after run hooks # @@ -367,6 +385,21 @@ browser. Typical use for actions called via AJAX: $self->render('todo/single_item', { type => 'js' }, item => $employee->most_important_todo_item); +=item C + +Sends the file C<$file_name> to the browser including appropriate HTTP +headers for a download. C<%params> can include the following: + +=over 2 + +=item * C -- the file's content type; defaults to +'application/octet_stream' + +=item * C -- the name presented to the browser; defaults to +C<$file_name> + +=back + =item C =item C