X-Git-Url: http://www.git.stargrave.org/?p=public-inbox.git;a=blobdiff_plain;f=lib%2FPublicInbox%2FLinkify.pm;h=5b83742c14b36ace1e62790b20d417e0971dbc87;hp=175f8d724dbb25e2d8e04f89a2a1792373d83b3c;hb=2394cb0bdc671605729b5a4c578ef4cd3b9813fd;hpb=5698652dad325668382eb9c55d8d94c9b3672352 diff --git a/lib/PublicInbox/Linkify.pm b/lib/PublicInbox/Linkify.pm index 175f8d72..5b83742c 100644 --- a/lib/PublicInbox/Linkify.pm +++ b/lib/PublicInbox/Linkify.pm @@ -89,4 +89,33 @@ sub linkify_2 { $_[1]; } +# single pass linkification of within $str +# with $pfx being the URL prefix +sub linkify_mids { + my ($self, $pfx, $str) = @_; + $$str =~ s!<([^>]+)>! + my $msgid = PublicInbox::Hval->new_msgid($1); + my $html = $msgid->as_html; + my $href = $msgid->{href}; + $href = ascii_html($href); # for IDN + + # salt this, as this could be exploited to show + # links in the HTML which don't show up in the raw mail. + my $key = sha1_hex($html . $SALT); + $self->{$key} = [ $href, $html ]; + ''; + !ge; + $$str = ascii_html($$str); + $$str =~ s!\bPI-LINK-([a-f0-9]{40})\b! + my $key = $1; + my $repl = $_[0]->{$key}; + if (defined $repl) { + "[0]/\">$repl->[1]"; + } else { + # false positive or somebody tried to mess with us + $key; + } + !ge; +} + 1;