/usr/share/perl5/Email/Abstract.pm is in libemail-abstract-perl 3.008-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | use 5.006;
use warnings;
use strict;
package Email::Abstract;
# ABSTRACT: unified interface to mail representations
$Email::Abstract::VERSION = '3.008';
use Carp;
use Email::Simple;
use MRO::Compat;
use Module::Pluggable 1.5
search_path => [__PACKAGE__],
except => 'Email::Abstract::Plugin',
require => 1;
use Scalar::Util ();
my @plugins = __PACKAGE__->plugins(); # Requires them.
my %adapter_for =
map { $_->target => $_ }
grep {
my $avail = eval { $_->is_available };
$@ ? ($@ =~ /Can't locate object method "is_available"/) : $avail;
}
@plugins;
sub object {
my ($self) = @_;
return unless ref $self;
return $self->[0];
}
sub new {
my ($class, $foreign) = @_;
return $foreign if eval { $foreign->isa($class) };
$foreign = Email::Simple->new($foreign)
unless Scalar::Util::blessed($foreign);
my $adapter = $class->__class_for($foreign); # dies if none available
return bless [ $foreign, $adapter ] => $class;
}
sub __class_for {
my ($self, $foreign, $method, $skip_super) = @_;
$method ||= 'handle';
my $f_class = ref $foreign;
$f_class = $foreign unless $f_class;
return $f_class if ref $foreign and $f_class->isa($self);
return $adapter_for{$f_class} if $adapter_for{$f_class};
if (not $skip_super) {
my @bases = @{ mro::get_linear_isa($f_class) };
shift @bases;
for my $base (@bases) {
return $adapter_for{$base} if $adapter_for{$base};
}
}
Carp::croak "Don't know how to $method $f_class";
}
sub _adapter_obj_and_args {
my $self = shift;
if (my $thing = $self->object) {
return ($self->[1], $thing, @_);
} else {
my $thing = shift;
my $adapter = $self->__class_for(
Scalar::Util::blessed($thing) ? $thing : 'Email::Simple'
);
return ($adapter, $thing, @_);
}
}
for my $func (qw(get_header get_body set_header set_body as_string)) {
no strict 'refs';
*$func = sub {
my $self = shift;
my ($adapter, $thing, @args) = $self->_adapter_obj_and_args(@_);
# In the event of Email::Abstract->get_body($email_abstract), convert
# it into an object method call.
$thing = $thing->object if eval { $thing->isa($self) };
# I suppose we could work around this by leaving @_ intact and assigning to
# it. That seems ... not good. -- rjbs, 2007-07-18
unless (Scalar::Util::blessed($thing)) {
Carp::croak "can't alter string in place" if substr($func, 0, 3) eq 'set';
$thing = Email::Simple->new(
ref $thing ? \do{my$str=$$thing} : $thing
);
}
return $adapter->$func($thing, @args);
};
}
sub cast {
my $self = shift;
my ($from_adapter, $from, $to) = $self->_adapter_obj_and_args(@_);
my $adapter = $self->__class_for($to, 'construct', 1);
my $from_string = ref($from) ? $from_adapter->as_string($from) : $from;
return $adapter->construct($from_string);
}
1;
=pod
=encoding UTF-8
=head1 NAME
Email::Abstract - unified interface to mail representations
=head1 VERSION
version 3.008
=head1 SYNOPSIS
my $message = Mail::Message->read($rfc822)
|| Email::Simple->new($rfc822)
|| Mail::Internet->new([split /\n/, $rfc822])
|| ...
|| $rfc822;
my $email = Email::Abstract->new($message);
my $subject = $email->get_header("Subject");
$email->set_header(Subject => "My new subject");
my $body = $email->get_body;
$rfc822 = $email->as_string;
my $mail_message = $email->cast("Mail::Message");
=head1 DESCRIPTION
C<Email::Abstract> provides module writers with the ability to write
simple, representation-independent mail handling code. For instance, in the
cases of C<Mail::Thread> or C<Mail::ListDetector>, a key part of the code
involves reading the headers from a mail object. Where previously one would
either have to specify the mail class required, or to build a new object from
scratch, C<Email::Abstract> can be used to perform certain simple operations on
an object regardless of its underlying representation.
C<Email::Abstract> currently supports C<Mail::Internet>, C<MIME::Entity>,
C<Mail::Message>, C<Email::Simple>, C<Email::MIME>, and C<Courriel>. Other
representations are encouraged to create their own C<Email::Abstract::*> class
by copying C<Email::Abstract::EmailSimple>. All modules installed under the
C<Email::Abstract> hierarchy will be automatically picked up and used.
=head1 METHODS
All of these methods may be called either as object methods or as class
methods. When called as class methods, the email object (of any class
supported by Email::Abstract) must be prepended to the list of arguments, like
so:
my $return = Email::Abstract->method($message, @args);
This is provided primarily for backwards compatibility.
=head2 new
my $email = Email::Abstract->new($message);
Given a message, either as a string or as an object for which an adapter is
installed, this method will return a Email::Abstract object wrapping the
message.
If the message is given as a string, it will be used to construct an object,
which will then be wrapped.
=head2 get_header
my $header = $email->get_header($header_name);
my @headers = $email->get_header($header_name);
This returns the values for the given header. In scalar context, it returns
the first value.
=head2 set_header
$email->set_header($header => @values);
This sets the C<$header> header to the given one or more values.
=head2 get_body
my $body = $email->get_body;
This returns the body as a string.
=head2 set_body
$email->set_body($string);
This changes the body of the email to the given string.
B<WARNING!> You probably don't want to call this method, despite what you may
think. Email message bodies are complicated, and rely on things like content
type, encoding, and various MIME requirements. If you call C<set_body> on a
message more complicated than a single-part seven-bit plain-text message, you
are likely to break something. If you need to do this sort of thing, you
should probably use a specific message class from end to end.
This method is left in place for backwards compatibility.
=head2 as_string
my $string = $email->as_string;
This returns the whole email as a decoded string.
=head2 cast
my $mime_entity = $email->cast('MIME::Entity');
This method will convert a message from one message class to another. It will
throw an exception if no adapter for the target class is known, or if the
adapter does not provide a C<construct> method.
=head2 object
my $message = $email->object;
This method returns the message object wrapped by Email::Abstract. If called
as a class method, it returns false.
Note that, because strings are converted to message objects before wrapping,
this method will return an object when the Email::Abstract was constructed from
a string.
=head1 AUTHORS
=over 4
=item *
Ricardo SIGNES <rjbs@cpan.org>
=item *
Simon Cozens <simon@cpan.org>
=item *
Casey West <casey@geeknest.com>
=back
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2004 by Simon Cozens.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
__END__
#pod =head1 SYNOPSIS
#pod
#pod my $message = Mail::Message->read($rfc822)
#pod || Email::Simple->new($rfc822)
#pod || Mail::Internet->new([split /\n/, $rfc822])
#pod || ...
#pod || $rfc822;
#pod
#pod my $email = Email::Abstract->new($message);
#pod
#pod my $subject = $email->get_header("Subject");
#pod $email->set_header(Subject => "My new subject");
#pod
#pod my $body = $email->get_body;
#pod
#pod $rfc822 = $email->as_string;
#pod
#pod my $mail_message = $email->cast("Mail::Message");
#pod
#pod =head1 DESCRIPTION
#pod
#pod C<Email::Abstract> provides module writers with the ability to write
#pod simple, representation-independent mail handling code. For instance, in the
#pod cases of C<Mail::Thread> or C<Mail::ListDetector>, a key part of the code
#pod involves reading the headers from a mail object. Where previously one would
#pod either have to specify the mail class required, or to build a new object from
#pod scratch, C<Email::Abstract> can be used to perform certain simple operations on
#pod an object regardless of its underlying representation.
#pod
#pod C<Email::Abstract> currently supports C<Mail::Internet>, C<MIME::Entity>,
#pod C<Mail::Message>, C<Email::Simple>, C<Email::MIME>, and C<Courriel>. Other
#pod representations are encouraged to create their own C<Email::Abstract::*> class
#pod by copying C<Email::Abstract::EmailSimple>. All modules installed under the
#pod C<Email::Abstract> hierarchy will be automatically picked up and used.
#pod
#pod =head1 METHODS
#pod
#pod All of these methods may be called either as object methods or as class
#pod methods. When called as class methods, the email object (of any class
#pod supported by Email::Abstract) must be prepended to the list of arguments, like
#pod so:
#pod
#pod my $return = Email::Abstract->method($message, @args);
#pod
#pod This is provided primarily for backwards compatibility.
#pod
#pod =head2 new
#pod
#pod my $email = Email::Abstract->new($message);
#pod
#pod Given a message, either as a string or as an object for which an adapter is
#pod installed, this method will return a Email::Abstract object wrapping the
#pod message.
#pod
#pod If the message is given as a string, it will be used to construct an object,
#pod which will then be wrapped.
#pod
#pod =head2 get_header
#pod
#pod my $header = $email->get_header($header_name);
#pod
#pod my @headers = $email->get_header($header_name);
#pod
#pod This returns the values for the given header. In scalar context, it returns
#pod the first value.
#pod
#pod =head2 set_header
#pod
#pod $email->set_header($header => @values);
#pod
#pod This sets the C<$header> header to the given one or more values.
#pod
#pod =head2 get_body
#pod
#pod my $body = $email->get_body;
#pod
#pod This returns the body as a string.
#pod
#pod =head2 set_body
#pod
#pod $email->set_body($string);
#pod
#pod This changes the body of the email to the given string.
#pod
#pod B<WARNING!> You probably don't want to call this method, despite what you may
#pod think. Email message bodies are complicated, and rely on things like content
#pod type, encoding, and various MIME requirements. If you call C<set_body> on a
#pod message more complicated than a single-part seven-bit plain-text message, you
#pod are likely to break something. If you need to do this sort of thing, you
#pod should probably use a specific message class from end to end.
#pod
#pod This method is left in place for backwards compatibility.
#pod
#pod =head2 as_string
#pod
#pod my $string = $email->as_string;
#pod
#pod This returns the whole email as a decoded string.
#pod
#pod =head2 cast
#pod
#pod my $mime_entity = $email->cast('MIME::Entity');
#pod
#pod This method will convert a message from one message class to another. It will
#pod throw an exception if no adapter for the target class is known, or if the
#pod adapter does not provide a C<construct> method.
#pod
#pod =head2 object
#pod
#pod my $message = $email->object;
#pod
#pod This method returns the message object wrapped by Email::Abstract. If called
#pod as a class method, it returns false.
#pod
#pod Note that, because strings are converted to message objects before wrapping,
#pod this method will return an object when the Email::Abstract was constructed from
#pod a string.
#pod
#pod =cut
|