/usr/share/perl5/Courriel/Header.pm is in libcourriel-perl 0.31-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 | package Courriel::Header;
{
$Courriel::Header::VERSION = '0.31';
}
use strict;
use warnings;
use namespace::autoclean;
use Courriel::Helpers qw( fold_header );
use Courriel::Types qw( NonEmptyStr Str Streamable );
use Encode qw( encode find_encoding );
use MIME::Base64 qw( encode_base64 );
use MooseX::Params::Validate qw( validated_list );
use Moose;
use MooseX::StrictConstructor;
with 'Courriel::Role::Streams' => { -exclude => ['stream_to'] };
has name => (
is => 'ro',
isa => NonEmptyStr,
required => 1,
);
has value => (
is => 'ro',
isa => Str,
required => 1,
);
{
my @spec = (
charset => { isa => NonEmptyStr, default => 'utf8' },
output => { isa => Streamable, coerce => 1 },
);
sub stream_to {
my $self = shift;
my ( $charset, $output ) = validated_list(
\@_,
@spec
);
my $string = $self->name();
$string .= ': ';
$string .= $self->_maybe_encoded_value($charset);
$output->( fold_header($string) );
return;
}
}
sub as_string {
my $self = shift;
my $string = q{};
$self->stream_to( output => $self->_string_output( \$string ), @_ );
return $string;
}
{
my $header_chunk = qr/
(?:
(?<ascii>[\x21-\x7e]+) # printable ASCII (excluding space, \x20)
|
(?<non_ascii>\S+) # anything that's not space
)
(?:
(?<ws>\s+)
|
$
)
/x;
# XXX - this really isn't very correct. Only certain types of values (per RFC
# 2047) can be encoded, not just any random text. I'm not sure how best to
# handle this. If we parsed an email that encoded stuff that shouldn't be
# encoded, what should we do? At the very least, we should add some checks to
# Courriel::Builder to ensure that people don't try to create an email with
# non-ASCII in certain parts of fields (like in email addresses).
sub _maybe_encoded_value {
my $self = shift;
my $charset = shift;
my $value = $self->value();
my @chunks;
while ( $value =~ /\G$header_chunk/g ) {
push @chunks, {%+};
}
my @values;
for my $i ( 0 .. $#chunks ) {
if ( defined $chunks[$i]->{non_ascii} ) {
my $to_encode
= $chunks[ $i + 1 ]
&& defined $chunks[ $i + 1 ]{non_ascii}
? $chunks[$i]{non_ascii} . ( $chunks[$i]{ws} // q{} )
: $chunks[$i]{non_ascii};
push @values, $self->_mime_encode( $to_encode, $charset );
push @values, q{ } if $chunks[ $i + 1 ];
}
else {
push @values, $chunks[$i]{ascii} . ( $chunks[$i]{ws} // q{} );
}
}
return join q{}, @values;
}
}
sub _mime_encode {
my $self = shift;
my $text = shift;
my $charset = find_encoding(shift)->mime_name();
my $head = '=?' . $charset . '?B?';
my $tail = '?=';
my $base_length = 75 - ( length($head) + length($tail) );
# This code is copied from Mail::Message::Field::Full in the Mail-Box
# distro.
my $real_length = int( $base_length / 4 ) * 3;
my @result;
my $chunk = q{};
while ( length( my $chr = substr( $text, 0, 1, '' ) ) ) {
my $chr = encode( $charset, $chr, 0 );
if ( length($chunk) + length($chr) > $real_length ) {
push @result, $head . encode_base64( $chunk, q{} ) . $tail;
$chunk = q{};
}
$chunk .= $chr;
}
push @result, $head . encode_base64( $chunk, q{} ) . $tail
if length $chunk;
return join q{ }, @result;
}
__PACKAGE__->meta()->make_immutable();
1;
# ABSTRACT: A single header's name and value
__END__
=pod
=head1 NAME
Courriel::Header - A single header's name and value
=head1 VERSION
version 0.31
=head1 SYNOPSIS
my $subject = $headers->get('subject');
print $subject->value();
=head1 DESCRIPTION
This class represents a single header, which consists of a name and value.
=head1 API
This class supports the following methods:
=head1 Courriel::Header->new( ... )
This method requires two attributes, C<name> and C<value>. Both must be
strings. The C<name> cannot be empty, but the C<value> can.
=head2 $header->name()
The header name as passed to the constructor.
=head2 $header->value()
The header value as passed to the constructor.
=head2 $header->as_string( charset => $charset )
Returns the header name and value with any necessary MIME encoding and folding.
The C<charset> parameter specifies what character set to use for MIME-encoding
non-ASCII values. This defaults to "utf8". The charset name must be one
recognized by the L<Encode> module.
=head2 $header->stream_to( output => $output, charset => ... )
This method will send the stringified header to the specified output. The
output can be a subroutine reference, a filehandle, or an object with a
C<print()> method. The output may be sent as a single string, as a list of
strings, or via multiple calls to the output.
See the C<as_string()> method for documentation on the C<charset> parameter.
=head1 ROLES
This class does the C<Courriel::Role::Streams> role.
=head1 AUTHOR
Dave Rolsky <autarch@urth.org>
=head1 CONTRIBUTOR
Zbigniew Ĺukasiak <zzbbyy@gmail.com>
=head1 COPYRIGHT AND LICENSE
This software is Copyright (c) 2013 by Dave Rolsky.
This is free software, licensed under:
The Artistic License 2.0 (GPL Compatible)
=cut
|