]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/AddressPP.pm
imap+nntp: share COMPRESS implementation
[public-inbox.git] / lib / PublicInbox / AddressPP.pm
index cd7aedb9421d92162095c94e41265f5beb2454c0..6a3ae4fed766d7cb654b1f00ad53b1d798986246 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2016-2019 all contributors <meta@public-inbox.org>
+# Copyright (C) 2016-2021 all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 package PublicInbox::AddressPP;
 use strict;
@@ -13,6 +13,7 @@ sub emails {
 }
 
 sub names {
+       # split by address and post-address comment
        my @p = split(/<?([^@<>]+)\@[\w\.\-]+>?\s*(\(.*?\))?(?:,\s*|\z)/,
                        $_[0]);
        my @ret;
@@ -35,4 +36,24 @@ sub names {
        @ret;
 }
 
+sub pairs { # for JMAP, RFC 8621 section 4.1.2.3
+       my ($s) = @_;
+       [ map {
+               my $addr = $_;
+               if ($s =~ s/\A\s*(.*?)\s*<\Q$addr\E>\s*(.*?)\s*(?:,|\z)// ||
+                   $s =~ s/\A\s*(.*?)\s*\Q$addr\E\s*(.*?)\s*(?:,|\z)//) {
+                       my ($phrase, $comment) = ($1, $2);
+                       $phrase =~ tr/\r\n\t / /s;
+                       $phrase =~ s/\A['"\s]*//;
+                       $phrase =~ s/['"\s]*\z//;
+                       $phrase =~ s/\s*<*\s*\z//;
+                       $phrase = undef if $phrase !~ /\S/;
+                       $comment = ($comment =~ /\((.*?)\)/) ? $1 : undef;
+                       [ $phrase // $comment, $addr ]
+               } else {
+                       ();
+               }
+       } emails($s) ];
+}
+
 1;