Tripletail::Filter::Binary - Tripletail::Filter::Binary documentation


Tripletail documentation Contained in the Tripletail distribution.

Index


Code Index:

NAME

Top

Tripletail::Filter::Binary - 内容に変更を加えない出力フィルタ

SYNOPSIS

Top

  $TL->setContentFilter('Tripletail::Filter::Binary', contenttype => 'image/png');
  $TL->print($TL->readFile('foo.png'));

  $TL->setContentFilter(
      'Tripletail::Filter::Binary',
      contenttype => 'application/vnd.ms-excel',
      filename => 'abc.xls',
  );
  $TL->print($TL->readFile('abc.xls'));

DESCRIPTION

Top

バイナリ等、受け取った内容をそのまま出力する。

フィルタパラメータ

contenttype

Content-Type を指定する。省略可能。

filename

ヘッダで出力するファイル名を指定する。省略可能。 指定した場合、次のようなヘッダが出力される。

  Content-Disposition: attachment; filename="foo.csv"

METHODS

setHeader
  $filter->setHeader($key => $value)

他の出力の前に実行する必要がある.同じヘッダを既に出力しようとしていれば, そのヘッダの代わりに指定したヘッダを出力する.

addHeader
  $filter->addHeader($key => $value)

他の出力の前に実行する必要がある.同じヘッダを既に出力しようとしている場合, そのヘッダに加えて指定したヘッダを出力する.

reset

Tripletail::Filter参照

SEE ALSO

Top

Tripletail
Tripletail::Filter

AUTHOR INFORMATION

Top

Copyright 2006-2010 YMIRLINK Inc.

This framework is free software; you can redistribute it and/or modify it under the same terms as Perl itself

このフレームワークはフリーソフトウェアです。あなたは Perl と同じライセンスの 元で再配布及び変更を行うことが出来ます。

Address bug reports and comments to: tl@tripletail.jp

HP : http://tripletail.jp/


Tripletail documentation Contained in the Tripletail distribution.

# -----------------------------------------------------------------------------
# Tripletail::Filter::Binary - 内容に変更を加えない出力フィルタ
# -----------------------------------------------------------------------------
package Tripletail::Filter::Binary;
use strict;
use warnings;
use Tripletail;
require Tripletail::Filter;
our @ISA = qw(Tripletail::Filter);

# オプション一覧:
# * contenttype => デフォルト: application/octet-stream
# * filename    => 指定されると、そのファイル名で Content-Disposition を出力する。

1;

sub _new {
	my $pkg = shift;
	my $this = $pkg->SUPER::_new(@_);

	# デフォルト値を埋める
	my $defaults = [
		[contenttype => 'application/octet-stream'],
	];
	$this->_fill_option_defaults($defaults);

	# オプションのチェック
	my $check = {
		contenttype => [qw(defined no_empty scalar)],
		filename    => [qw(no_empty scalar)],
	};
	$this->_check_options($check);

	$this->setHeader('Content-Type' => $this->{option}{contenttype});
	
	if(defined($this->{option}{filename})) {
		my $filename = $this->{option}{filename};
		$filename = $TL->charconv($filename, 'UTF-8' => 'Shift_JIS');
		$this->setHeader('Content-Disposition' => qq{attachment; filename="$filename"});
	}
	
	$this;
}

sub reset {
	my $this = shift;
	$this->SUPER::reset;

	$this->setHeader('Content-Type' => $this->{option}{contenttype});
	
	if(defined($this->{option}{filename})) {
		my $filename = $this->{option}{filename};
		$filename = $TL->charconv($filename, 'UTF-8' => 'Shift_JIS');
		$this->setHeader('Content-Disposition' => qq{attachment; filename="$filename"});
	}
	
	$this;
}


__END__