1 |
wakaba |
1.1 |
|
2 |
|
|
=head1 NAME |
3 |
|
|
|
4 |
|
|
Message::Field::MsgID Perl module |
5 |
|
|
|
6 |
|
|
=head1 DESCRIPTION |
7 |
|
|
|
8 |
|
|
Perl module for RFC 822/2822 Message-ID C<field>. |
9 |
|
|
|
10 |
|
|
This module supports message ID C<field-body>s defined |
11 |
|
|
by : RFC 822, RFC 2822, RFC 850, RFC 1036, son-of-RFC1036, |
12 |
|
|
RFC 1341, RFC 1521, RFC 2045, but does not support: |
13 |
|
|
RFC 724, RFC 733. |
14 |
|
|
|
15 |
|
|
=cut |
16 |
|
|
|
17 |
|
|
package Message::Field::MsgID; |
18 |
|
|
require 5.6.0; |
19 |
|
|
use strict; |
20 |
|
|
use re 'eval'; |
21 |
|
|
use vars qw(%OPTION %REG $VERSION); |
22 |
wakaba |
1.3 |
$VERSION=do{my @r=(q$Revision: 1.2 $=~/\d+/g);sprintf "%d."."%02d" x $#r,@r}; |
23 |
wakaba |
1.1 |
use overload '@{}' => sub {shift->{id}}, |
24 |
|
|
'""' => sub {shift->stringify}; |
25 |
|
|
|
26 |
|
|
use Message::Field::MsgID::MsgID; |
27 |
|
|
$REG{comment} = qr/\x28(?:\x5C[\x00-\xFF]|[\x00-\x0C\x0E-\x27\x2A-\x5B\x5D-\xFF]+|(??{$REG{comment}}))*\x29/; |
28 |
|
|
$REG{quoted_string} = qr/\x22(?:\x5C[\x00-\xFF]|[\x00-\x0C\x0E-\x21\x23-\x5B\x5D-\xFF])*\x22/; |
29 |
|
|
$REG{domain_literal} = qr/\x5B(?:\x5C[\x00-\xFF]|[\x00-\x0C\x0E-\x5A\x5E-\xFF])*\x5D/; |
30 |
|
|
|
31 |
|
|
$REG{WSP} = qr/[\x20\x09]+/; |
32 |
|
|
$REG{FWS} = qr/[\x20\x09]*/; |
33 |
|
|
$REG{atext} = qr/[\x21\x23-\x27\x2A\x2B\x2D\x2F\x30-\x39\x3D\x3F\x41-\x5A\x5E-\x7E]+/; |
34 |
|
|
$REG{dot_atom} = qr/$REG{atext}(?:$REG{FWS}\x2E$REG{FWS}$REG{atext})*/; |
35 |
|
|
$REG{dot_word} = qr/(?:$REG{atext}|$REG{quoted_string})(?:$REG{FWS}\x2E$REG{FWS}(?:$REG{atext}|$REG{quoted_string}))*/; |
36 |
|
|
$REG{phrase} = qr/(?:$REG{atext}|$REG{quoted_string})(?:$REG{atext}|$REG{quoted_string}|\.|$REG{FWS})*/; |
37 |
|
|
$REG{addr_spec} = qr/$REG{dot_word}$REG{FWS}\x40$REG{FWS}(?:$REG{dot_atom}|$REG{domain_literal})/; |
38 |
|
|
$REG{msg_id} = qr/<$REG{FWS}$REG{addr_spec}$REG{FWS}>/; |
39 |
|
|
$REG{M_quoted_string} = qr/\x22((?:\x5C[\x00-\xFF]|[\x00-\x0C\x0E-\x21\x23-\x5B\x5D-\xFF])*)\x22/; |
40 |
|
|
$REG{M_addr_spec} = qr/($REG{dot_word})$REG{FWS}\x40$REG{FWS}($REG{dot_atom}|$REG{domain_literal})/; |
41 |
|
|
|
42 |
|
|
$REG{NON_atom} = qr/[^\x09\x20\x21\x23-\x27\x2A\x2B\x2D\x2F\x30-\x39\x3D\x3F\x41-\x5A\x5E-\x7E\x2E]/; |
43 |
|
|
|
44 |
|
|
%OPTION = ( |
45 |
|
|
one_id => -1, |
46 |
|
|
field_name => 'message-id', |
47 |
|
|
reduce_first => 1, |
48 |
|
|
reduce_last => 3, |
49 |
wakaba |
1.3 |
reduce_max => 21, |
50 |
wakaba |
1.1 |
); |
51 |
|
|
|
52 |
|
|
sub _init_option ($$) { |
53 |
|
|
my $self = shift; |
54 |
|
|
my $field_name = shift; |
55 |
|
|
if ($field_name eq 'message-id' || $field_name eq 'content-id') { |
56 |
|
|
$self->{option}->{one_id} = 1; |
57 |
|
|
} |
58 |
|
|
$self; |
59 |
|
|
} |
60 |
|
|
|
61 |
|
|
=head2 Message::Field::MsgID->new () |
62 |
|
|
|
63 |
|
|
Returns new MsgID object. |
64 |
|
|
|
65 |
|
|
=cut |
66 |
|
|
|
67 |
|
|
sub new ($;%) { |
68 |
|
|
my $self = bless {}, shift; |
69 |
|
|
my %option = @_; |
70 |
|
|
for (%OPTION) {$option{$_} ||= $OPTION{$_}} |
71 |
wakaba |
1.2 |
$self->{id} = []; |
72 |
wakaba |
1.1 |
$self->{option} = \%option; |
73 |
|
|
$self->_init_option ($self->{option}->{field_name}); |
74 |
|
|
$self; |
75 |
|
|
} |
76 |
|
|
|
77 |
|
|
=head2 Message::Field::MsgID->parse ($unfolded_field_body) |
78 |
|
|
|
79 |
|
|
Parses C<field-body>. |
80 |
|
|
|
81 |
|
|
=cut |
82 |
|
|
|
83 |
|
|
sub parse ($$;%) { |
84 |
|
|
my $self = bless {}, shift; |
85 |
|
|
my $field_body = shift; |
86 |
|
|
my %option = @_; |
87 |
|
|
for (%OPTION) {$option{$_} ||= $OPTION{$_}} |
88 |
wakaba |
1.2 |
$self->{id} = []; |
89 |
wakaba |
1.1 |
$self->{option} = \%option; |
90 |
|
|
$self->_init_option ($self->{option}->{field_name}); |
91 |
|
|
$field_body = $self->delete_comment ($field_body); |
92 |
|
|
@{$self->{id}} = $self->parse_msgid_list ($field_body); |
93 |
|
|
$self; |
94 |
|
|
} |
95 |
|
|
|
96 |
|
|
sub parse_msgid_list ($$) { |
97 |
|
|
my $self = shift; |
98 |
|
|
my $fb = shift; |
99 |
|
|
my @ids; |
100 |
|
|
$fb =~ s{($REG{msg_id})}{ |
101 |
|
|
push @ids, Message::Field::MsgID::MsgID->parse ($1); |
102 |
|
|
}goex; |
103 |
|
|
@ids; |
104 |
|
|
} |
105 |
|
|
|
106 |
|
|
=head2 $self->id () |
107 |
|
|
|
108 |
|
|
Return address list in the format described in |
109 |
|
|
L<$self-E<gt>parse_address_list ()>. |
110 |
|
|
|
111 |
|
|
=cut |
112 |
|
|
|
113 |
wakaba |
1.2 |
sub id ($) { |
114 |
|
|
my $self = shift; |
115 |
|
|
wantarray? @{$self->{id}}: $self->{id}->[0]; |
116 |
|
|
} |
117 |
wakaba |
1.1 |
|
118 |
|
|
=head2 $self->add ($msg_id, [%option]) |
119 |
|
|
|
120 |
|
|
Adds an msg-id to C<$self>. |
121 |
|
|
|
122 |
|
|
Note that this method (and other methods) does not check |
123 |
|
|
whether $msg_id is valid or not (It is only checked |
124 |
|
|
if C<msg-id> is sorounded by angle blankets). |
125 |
|
|
|
126 |
|
|
=cut |
127 |
|
|
|
128 |
|
|
sub add ($;$%) { |
129 |
|
|
my $self = shift; |
130 |
|
|
my ($msg_id, %option) = @_; |
131 |
|
|
if (!ref $msg_id) { |
132 |
|
|
$msg_id = Message::Field::MsgID::MsgID->parse ($msg_id, %option); |
133 |
|
|
} |
134 |
|
|
push @{$self->{id}}, $msg_id; |
135 |
|
|
$self; |
136 |
|
|
} |
137 |
|
|
|
138 |
|
|
sub add_new ($;%) { |
139 |
|
|
my $self = shift; |
140 |
|
|
my (%option) = @_; |
141 |
|
|
my $msg_id = Message::Field::MsgID::MsgID->new (%option); |
142 |
|
|
push @{$self->{id}}, $msg_id if length $msg_id; |
143 |
|
|
$self; |
144 |
|
|
} |
145 |
|
|
|
146 |
|
|
sub reduce ($;%) { |
147 |
|
|
my $self = shift; |
148 |
|
|
my %option = @_; |
149 |
|
|
$option{reduce_max} ||= $self->{option}->{reduce_max}; |
150 |
|
|
$option{reduce_first} ||= $self->{option}->{reduce_first}; |
151 |
|
|
$option{reduce_last} ||= $self->{option}->{reduce_last}; |
152 |
|
|
return $self if $#{$self->{id}}+1 <= $option{reduce_max}; |
153 |
|
|
return $self if $#{$self->{id}}+1 <= $option{reduce_top}+$option{reduce_last}; |
154 |
|
|
my @nid; |
155 |
|
|
push @nid, @{$self->{id}}[0..$option{reduce_first}-1]; |
156 |
|
|
push @nid, @{$self->{id}}[-$option{reduce_last}..-1]; |
157 |
|
|
$self->{id} = \@nid; |
158 |
|
|
$self; |
159 |
|
|
} |
160 |
|
|
|
161 |
|
|
sub stringify ($;%) { |
162 |
|
|
my $self = shift; |
163 |
|
|
my %option = @_; |
164 |
|
|
$option{one_id} ||= $self->{option}->{one_id}; |
165 |
|
|
$self->_delete_empty (); |
166 |
|
|
if ($option{one_id}>0) { |
167 |
|
|
$self->{id}->[0] || ''; |
168 |
|
|
} else { |
169 |
|
|
join ' ', @{$self->{id}}; |
170 |
|
|
} |
171 |
|
|
} |
172 |
|
|
|
173 |
wakaba |
1.3 |
=head2 $self->option ($option_name, [$option_value]) |
174 |
|
|
|
175 |
|
|
Set/gets new value of the option. |
176 |
|
|
|
177 |
|
|
=cut |
178 |
|
|
|
179 |
|
|
sub option ($$;$) { |
180 |
|
|
my $self = shift; |
181 |
|
|
my ($name, $value) = @_; |
182 |
|
|
if (defined $value) { |
183 |
|
|
$self->{option}->{$name} = $value; |
184 |
|
|
} |
185 |
|
|
$self->{option}->{$name}; |
186 |
|
|
} |
187 |
|
|
|
188 |
wakaba |
1.1 |
sub _delete_empty ($) { |
189 |
|
|
my $self = shift; |
190 |
|
|
my @nid; |
191 |
|
|
for my $id (@{$self->{id}}) {push @nid, $id if $id} |
192 |
|
|
$self->{id} = \@nid; |
193 |
|
|
} |
194 |
|
|
|
195 |
|
|
|
196 |
|
|
=head2 $self->unquote_quoted_string ($string) |
197 |
|
|
|
198 |
|
|
Unquote C<quoted-string>. Get rid of C<DQUOTE>s and |
199 |
|
|
C<REVERSED SOLIDUS> included in C<quoted-pair>. |
200 |
|
|
This method is intended for internal use. |
201 |
|
|
|
202 |
|
|
=cut |
203 |
|
|
|
204 |
|
|
sub unquote_quoted_string ($$) { |
205 |
|
|
my $self = shift; |
206 |
|
|
my $quoted_string = shift; |
207 |
|
|
$quoted_string =~ s{$REG{M_quoted_string}}{ |
208 |
|
|
my $qtext = $1; |
209 |
|
|
$qtext =~ s/\x5C([\x00-\xFF])/$1/g; |
210 |
|
|
$qtext; |
211 |
|
|
}goex; |
212 |
|
|
$quoted_string; |
213 |
|
|
} |
214 |
|
|
|
215 |
|
|
=head2 $self->delete_comment ($field_body) |
216 |
|
|
|
217 |
|
|
Remove all C<comment> in given strictured C<field-body>. |
218 |
|
|
This method is intended to be used for internal process. |
219 |
|
|
|
220 |
|
|
=cut |
221 |
|
|
|
222 |
|
|
sub delete_comment ($$) { |
223 |
|
|
my $self = shift; |
224 |
|
|
my $body = shift; |
225 |
|
|
$body =~ s{($REG{quoted_string}|$REG{domain_literal})|$REG{comment}}{ |
226 |
|
|
my $o = $1; $o? $o : ' '; |
227 |
|
|
}gex; |
228 |
|
|
$body; |
229 |
|
|
} |
230 |
|
|
|
231 |
|
|
=head1 EXAMPLE |
232 |
|
|
|
233 |
|
|
## Compose field-body for To: field. |
234 |
|
|
|
235 |
|
|
use Message::Field::Address; |
236 |
|
|
my $addr = new Message::Field::Address; |
237 |
|
|
$addr->add ('foo@example.org', name => 'Mr. foo bar'); |
238 |
|
|
$addr->add ('webmaster@example.org', group => 'administrators'); |
239 |
|
|
$addr->add ('postmaster@example.org', group => 'administrators'); |
240 |
|
|
|
241 |
|
|
my $field_body = $addr->stringify (); |
242 |
|
|
|
243 |
|
|
|
244 |
|
|
## Output parsed address-list tree. |
245 |
|
|
|
246 |
|
|
use Message::Field::Address; |
247 |
|
|
my $addr = Message::Field::Address->parse ($field_body); |
248 |
|
|
|
249 |
|
|
for my $i (@$addr) { |
250 |
|
|
if ($i->{type} eq 'group') { |
251 |
|
|
print "\x40 $i->{display_name}: \n"; |
252 |
|
|
for my $j (@{$i->{address}}) { |
253 |
|
|
print "\t- $j->{display_name} <$j->{route}$j->{addr_spec}>\n"; |
254 |
|
|
} |
255 |
|
|
} else { |
256 |
|
|
print "- $i->{display_name} <$i->{route}$i->{addr_spec}>\n"; |
257 |
|
|
} |
258 |
|
|
} |
259 |
|
|
|
260 |
|
|
=head1 LICENSE |
261 |
|
|
|
262 |
|
|
Copyright 2002 wakaba E<lt>w@suika.fam.cxE<gt>. |
263 |
|
|
|
264 |
|
|
This program is free software; you can redistribute it and/or modify |
265 |
|
|
it under the terms of the GNU General Public License as published by |
266 |
|
|
the Free Software Foundation; either version 2 of the License, or |
267 |
|
|
(at your option) any later version. |
268 |
|
|
|
269 |
|
|
This program is distributed in the hope that it will be useful, |
270 |
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of |
271 |
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
272 |
|
|
GNU General Public License for more details. |
273 |
|
|
|
274 |
|
|
You should have received a copy of the GNU General Public License |
275 |
|
|
along with this program; see the file COPYING. If not, write to |
276 |
|
|
the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
277 |
|
|
Boston, MA 02111-1307, USA. |
278 |
|
|
|
279 |
|
|
=head1 CHANGE |
280 |
|
|
|
281 |
|
|
See F<ChangeLog>. |
282 |
wakaba |
1.3 |
$Date: 2002/03/26 05:31:55 $ |
283 |
wakaba |
1.1 |
|
284 |
|
|
=cut |
285 |
|
|
|
286 |
|
|
1; |