summaryrefslogtreecommitdiff
path: root/httemplate/search/elements/search-csv.html
blob: 9eb1b66d1ad7e48be5ffae52a4065c743d3d7747 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
% $csv->combine(@$header); #or die $csv->status;
%    
<% $opt{no_csv_header} ? '' : $csv->string %>\
%
% foreach my $row ( @$rows ) {
%
%   if ( $opt{'fields'} ) {
%
%     my @line = ();
%
%     foreach my $field ( @{$opt{'fields'}} ) {
%       if ( ref($field) eq 'CODE' ) {
%         push @line, map {
%                           ref($_) eq 'ARRAY'
%                             ? '(N/A)' #unimplemented
%                             : $_;
%                         }
%                         &{$field}($row);
%       } else {
%         push @line, $row->$field();
%       }
%     }
%
%     $csv->combine(@line); #or die $csv->status;
%
%   } else {
%     $csv->combine(@$row); #or die $csv->status;
%   }
%
%      
<% $csv->string %>\
%
% }
<%init>

my %args = @_;
my $header = $args{'header'};
my $rows   = $args{'rows'};
my %opt    = %{ $args{'opt'} };

#http_header('Content-Type' => 'text/comma-separated-values' ); #IE chokes
#http_header('Content-Type' => 'text/plain' );
http_header('Content-Type' => 'text/csv' ); # So saith RFC 4180
http_header('Content-Disposition' => 
  'attachment;filename="'.($opt{'name'} || PL($opt{'name_singular'}) ).'.csv"');

my $quote_char = '"';
$quote_char = $opt{csv_quote} if exists($opt{csv_quote});

my $csv = new Text::CSV_XS { 'always_quote' => $opt{avoid_quote} ? 0 : 1,
                             'eol'          => "\n", #"\015\012", #"\012"
                           };

</%init>