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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398
|
# Copyrights 2001-2025 by [Mark Overmeer <markov@cpan.org>].
# For other contributors see ChangeLog.
# See the manual pages for details on the licensing terms.
# Pod stripped from pm file by OODoc 2.03.
# This code is part of distribution Mail-Message. Meta-POD processed with
# OODoc into POD and HTML manual-pages. See README.md
# Copyright Mark Overmeer. Licensed under the same terms as Perl itself.
package Mail::Message::Body;{
our $VERSION = '3.017';
}
use base 'Mail::Reporter';
use strict;
use warnings;
use utf8;
use Carp;
use MIME::Types ();
use File::Basename 'basename';
use Encode qw/find_encoding from_to encode_utf8/;
use Mail::Message::Field ();
use Mail::Message::Field::Full ();
# http://www.iana.org/assignments/character-sets
use Encode::Alias;
define_alias(qr/^unicode-?1-?1-?utf-?([78])$/i => '"UTF-$1"'); # rfc1642
my $mime_types;
sub _char_enc($)
{ my ($self, $charset) = @_;
return undef if !$charset || $charset eq 'PERL';
my $enc = find_encoding $charset
or $self->log(WARNING => "Charset `$charset' is not known.");
$enc;
}
sub encode(@)
{ my ($self, %args) = @_;
my $bodytype = $args{result_type} || ref $self;
### The content type
my $type_from = $self->type;
my $type_to = $args{mime_type} || $type_from->clone->study;
$type_to = Mail::Message::Field::Full->new('Content-Type' => $type_to)
unless ref $type_to;
### Detect specified transfer-encodings
my $transfer = $args{transfer_encoding} || $self->transferEncoding->clone;
$transfer = Mail::Message::Field->new('Content-Transfer-Encoding' => $transfer)
unless ref $transfer;
my $trans_was = lc $self->transferEncoding;
my $trans_to = lc $transfer;
### Detect specified charsets
my $is_text = $type_from =~ m!^text/!i;
my ($char_was, $char_to, $from, $to);
if($is_text)
{ $char_was = $type_from->attribute('charset'); # sometimes missing
$char_to = $type_to->attribute('charset'); # usually missing
if(my $charset = delete $args{charset})
{ # Explicitly stated output charset
if(!$char_to || $char_to ne $charset)
{ $char_to = $charset;
$type_to->attribute(charset => $char_to);
}
}
elsif(!$char_to && $char_was)
{ # By default, do not change charset
$char_to = $char_was;
$type_to->attribute(charset => $char_to);
}
if($char_to && $trans_to ne 'none' && $char_to eq 'PERL')
{ # We cannot leave the body into the 'PERL' charset when transfer-
# encoding is applied.
$self->log(WARNING => "Transfer-Encoding `$trans_to' requires "
. "explicit charset, defaulted to utf-8");
$char_to = 'utf-8';
}
$from = $self->_char_enc($char_was);
$to = $self->_char_enc($char_to);
if($from && $to)
{ if($char_was ne $char_to && $from->name eq $to->name)
{ # modify source charset into a different alias
$type_from->attribute(charset => $char_to);
$char_was = $char_to;
$from = $to;
}
return $self
if $trans_was eq $trans_to && $char_was eq $char_to;
}
}
elsif($trans_was eq $trans_to)
{ # No changes needed;
return $self;
}
### Apply transfer-decoding
my $decoded;
if($trans_was eq 'none')
{ $decoded = $self }
elsif(my $decoder = $self->getTransferEncHandler($trans_was))
{ $decoded = $decoder->decode($self, result_type => $bodytype) }
else
{ $self->log(WARNING =>
"No decoder defined for transfer encoding $trans_was.");
return $self;
}
### Apply character-set recoding
my $recoded;
if($is_text)
{ unless($char_was)
{ # When we do not know the character-sets, try to auto-detect
my $auto = $args{charset_detect} || $self->charsetDetectAlgorithm;
$char_was = $decoded->$auto;
$from = $self->_char_enc($char_was);
$decoded->type->attribute(charset => $char_was);
unless($char_to)
{ $char_to = $char_was;
$type_to->attribute(charset => $char_to);
$to = $from;
}
}
my $new_data
= $to && $char_was eq 'PERL' ? $to->encode($decoded->string)
: $from && $char_to eq 'PERL' ? $from->decode($decoded->string)
: $to && $from && $char_was ne $char_to ? $to->encode($from->decode($decoded->string))
: undef;
$recoded
= $new_data
? $bodytype->new(based_on => $decoded, data => $new_data,
mime_type => $type_to, checked => 1)
: $decoded;
}
else
{ $recoded = $decoded;
}
### Apply transfer-encoding
my $trans;
if($trans_to ne 'none')
{ $trans = $self->getTransferEncHandler($trans_to)
or $self->log(WARNING =>
"No encoder defined for transfer encoding `$trans_to'.");
}
my $encoded = defined $trans
? $trans->encode($recoded, result_type => $bodytype)
: $recoded;
$encoded;
}
sub charsetDetectAlgorithm(;$)
{ my $self = shift;
$self->{MMBE_det} = shift if @_;
$self->{MMBE_det} || 'charsetDetect';
}
sub charsetDetect(%)
{ my ($self, %args) = @_;
my $text = $self->string;
# Flagged as UTF8, so certainly created by the Perl program itself:
# the content is not octets.
if(utf8::is_utf8($text))
{ $args{external} or return 'PERL';
$text = encode_utf8 $text;
}
# Only look for normal characters, first 1920 unicode characters
# When there is any octet in 'utf-encoding'-space, but not an
# legal utf8, than it's not utf8.
#XXX Use the fact that cp1252 does not define (0x81, 0x8d, 0x8f, 0x90, 0x9d) ?
return 'utf-8'
if $text =~ m/[\0xC0-\xDF][\x80-\xBF]/ # 110xxxxx, 10xxxxxx
&& $text !~ m/[\0xC0-\xFF]([^\0x80-\xBF]|$)/;
# Produce 'us-ascii' when it suffices: it is the RFC compliant
# default charset.
$text =~ m/[\x80-\xFF]/ ? 'cp1252' : 'us-ascii';
}
sub check()
{ my $self = shift;
return $self if $self->checked;
my $eol = $self->eol;
my $encoding = $self->transferEncoding->body;
return $self->eol($eol)
if $encoding eq 'none';
my $encoder = $self->getTransferEncHandler($encoding);
my $checked
= $encoder
? $encoder->check($self)->eol($eol)
: $self->eol($eol);
$checked->checked(1);
$checked;
}
#------------------------------------------
sub encoded(%)
{ my ($self, %args) = @_;
$mime_types ||= MIME::Types->new;
my $mime = $mime_types->type($self->type->body);
my $charset = my $old_charset = $self->charset || '';
if(!$charset || $charset eq 'PERL')
{ my $auto = $args{charset_detect} || $self->charsetDetectAlgorithm;
$charset = $self->$auto(external => 1);
}
my $enc_was = $self->transferEncoding;
my $enc = $enc_was;
$enc = defined $mime ? $mime->encoding : 'base64'
if $enc eq 'none';
# we could (expensively) try to autodetect character-set used,
# but everything is a subset of utf-8.
my $new_charset = (!$mime || $mime !~ m!^text/!i) ? '' : $charset;
($enc_was ne 'none' && $old_charset eq $new_charset)
? $self->check
: $self->encode(transfer_encoding => $enc, charset => $new_charset);
}
#------------------------------------------
sub unify($)
{ my ($self, $body) = @_;
return $self if $self==$body;
my $mime = $self->type;
my $transfer = $self->transferEncoding;
my $encoded = $body->encode
( mime_type => $mime
, transfer_encoding => $transfer
);
# Encode makes the best of it, but is it good enough?
my $newmime = $encoded->type;
return unless $newmime eq $mime;
return unless $transfer eq $encoded->transferEncoding;
$encoded;
}
#------------------------------------------
sub isBinary()
{ my $self = shift;
$mime_types ||= MIME::Types->new(only_complete => 1);
my $type = $self->type or return 1;
my $mime = $mime_types->type($type->body) or return 1;
$mime->isBinary;
}
sub isText() { not shift->isBinary }
sub dispositionFilename(;$)
{ my $self = shift;
my $raw;
my $field;
if($field = $self->disposition)
{ $field = $field->study if $field->can('study');
$raw = $field->attribute('filename')
|| $field->attribute('file')
|| $field->attribute('name');
}
if(!defined $raw && ($field = $self->type))
{ $field = $field->study if $field->can('study');
$raw = $field->attribute('filename')
|| $field->attribute('file')
|| $field->attribute('name');
}
my $base;
if(!defined $raw || !length $raw) {}
elsif(index($raw, '?') >= 0)
{ eval 'require Mail::Message::Field::Full';
$base = Mail::Message::Field::Full->decode($raw);
}
else
{ $base = $raw;
}
return $base
unless @_;
my $dir = shift;
my $filename = '';
if(defined $base) # RFC6266 section 4.3, very safe
{ $filename = basename $base;
for($filename)
{ s/\s+/ /g; s/ $//; s/^ //;
s/[^\w .-]//g;
}
}
my ($filebase, $ext) = length $filename && $filename =~ m/(.*)\.([^.]+)/
? ($1, $2) : (part => ($self->mimeType->extensions)[0] || 'raw');
my $fn = File::Spec->catfile($dir, "$filebase.$ext");
for(my $unique = 1; -e $fn; $unique++)
{ $fn = File::Spec->catfile($dir, "$filebase-$unique.$ext");
}
$fn;
}
#------------------------------------------
my %transfer_encoder_classes =
( base64 => 'Mail::Message::TransferEnc::Base64'
, binary => 'Mail::Message::TransferEnc::Binary'
, '8bit' => 'Mail::Message::TransferEnc::EightBit'
, 'quoted-printable' => 'Mail::Message::TransferEnc::QuotedPrint'
, '7bit' => 'Mail::Message::TransferEnc::SevenBit'
);
my %transfer_encoders; # they are reused.
sub getTransferEncHandler($)
{ my ($self, $type) = @_;
return $transfer_encoders{$type}
if exists $transfer_encoders{$type}; # they are reused.
my $class = $transfer_encoder_classes{$type};
return unless $class;
eval "require $class";
confess "Cannot load $class: $@\n" if $@;
$transfer_encoders{$type} = $class->new;
}
sub addTransferEncHandler($$)
{ my ($this, $name, $what) = @_;
my $class;
if(ref $what)
{ $transfer_encoders{$name} = $what;
$class = ref $what;
}
else
{ delete $transfer_encoders{$name};
$class = $what;
}
$transfer_encoder_classes{$name} = $class;
$this;
}
1;
|