=head1 NAME Message::Body::TextPlain --- Perl Module for Internet Media Type "text/plain" =cut package Message::Body::TextPlain; use strict; use vars qw(%DEFAULT @ISA $VERSION); $VERSION=do{my @r=(q$Revision: 1.8 $=~/\d+/g);sprintf "%d."."%02d" x $#r,@r}; require Message::Body::Text; push @ISA, qw(Message::Body::Text); %DEFAULT = ( -_METHODS => [qw|value|], -_MEMBERS => [qw|_charset|], -body_default_charset => 'us-ascii', -body_default_charset_input => 'iso-2022-int-1', #encoding_after_encode #encoding_before_decode #fill_ct => 0, #hook_encode_string #hook_decode_string -media_type => 'text', -media_subtype => 'plain', -use_normalization => 1, -use_param_charset => 1, ); =head1 CONSTRUCTORS The following methods construct new C objects: =over 4 =cut ## Initialize of this class -- called by constructors sub _init ($;%) { my $self = shift; my $DEFAULT = Message::Util::make_clone (\%DEFAULT); my %option = @_; $self->SUPER::_init (%$DEFAULT, %option); unless (defined $self->{option}->{fill_ct}) { $self->{option}->{fill_ct} = $self->{option}->{format} =~ /http|mime/; } if ($self->{option}->{format} =~ /http/) { $self->{option}->{use_normalization} = 0; } else { $self->{option}->{use_normalization} = 1; } } =item $body = Message::Body::TextPlain->new ([%options]) Constructs a new object. You might pass some options as parameters to the constructor. =cut ## Inherited =item $body = Message::Body::TextPlain->parse ($body, [%options]) Constructs a new object with given field body. You might pass some options as parameters to the constructor. =cut sub parse ($$;%) { my $class = shift; my $self = bless {}, $class; my $body = shift; $self->_init (@_); my $charset; my $ct; $ct = $self->{header}->field ('content-type', -new_item_unless_exist => 0) if ref $self->{header}; $charset = $ct->parameter ('charset') if ref $ct; $charset ||= $self->{option}->{encoding_before_decode}; my %s = &{$self->{option}->{hook_decode_string}} ($self, $body, type => 'body', charset => $charset); $self->{value} = $s{value}; $self->{_charset} = $s{charset}; ## When convertion failed $self; } =back =cut =item $body->header ([$new_header]) =cut ## Inherited =item $body->value ([$new_body]) Returns C as string unless $new_body. Set $new_body instead of current C. =cut ## Inherited =head2 $self->stringify ([%option]) Returns the C as a string. =cut sub stringify ($;%) { my $self = shift; my %o = @_; my %option = %{$self->{option}}; for (grep {/^-/} keys %o) {$option{substr ($_, 1)} = $o{$_}} my $ct = $self->{header}->field ('content-type', -new_item_unless_exist => 0) if ref $self->{header}; my %e; unless ($self->{_charset}) { my $charset; $charset = $ct->parameter ('charset') if ref $ct; $charset ||= $self->{option}->{encoding_after_encode}; (%e) = &{$self->{option}->{hook_encode_string}} ($self, $self->{value}, type => 'body', charset => $charset); #$e{charset} ||= $self->{option}->{body_default_charset} # if $self->{option}->{body_default_charset_input} # ne $self->{option}->{body_default_charset}; ## Normalize if ($option{use_normalization}) { if ($Message::MIME::Charset::CHARSET{$charset || '*default'}->{mime_text}) { $e{value} =~ s/\x0D(?!\x0A)/\x0D\x0A/gs; $e{value} =~ s/(? $self->{value}, charset => $self->{_charset}); } if (ref $self->{header}) { if ($e{charset}) { unless (ref $ct) { $ct = $self->{header}->field ('content-type'); $ct->value ($option{media_type}.'/'.$option{media_subtype}); } $ct->replace (charset => $e{charset}); } elsif (ref $ct) { $ct->replace (Message::MIME::Charset::name_minimumize ($option{body_default_charset}, $e{value})); } elsif ($option{fill_ct}) { $ct = $self->{header}->field ('content-type'); $ct->value ($option{media_type}.'/'.$option{media_subtype}); $ct->replace (Message::MIME::Charset::name_minimumize ($option{body_default_charset}, $e{value})); } } $e{value}; } *as_string = \&stringify; ## Inherited: option, clone =head1 SEE ALSO RFC 822 , RFC 2046 , RFC 2646 . =head1 LICENSE Copyright 2002 wakaba Ew@suika.fam.cxE. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. =head1 CHANGE See F. $Date: 2002/06/23 12:04:49 $ =cut 1;