1 # Copyright (C) 2015-2020 all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
4 # Used by the web interface to link to messages outside of the our
5 # public-inboxes. Mail threads may cross projects/threads; so
6 # we should ensure users can find more easily find them on other
8 package PublicInbox::ExtMsg;
11 use PublicInbox::Hval qw(ascii_html prurl mid_href);
12 use PublicInbox::WwwStream qw(html_oneshot);
13 use PublicInbox::Smsg;
14 our $MIN_PARTIAL_LEN = 16;
16 # TODO: user-configurable
17 our @EXT_URL = map { ascii_html($_) } (
18 # leading "//" denotes protocol-relative (http:// or https://)
20 '//www.mail-archive.com/search?l=mid&q=%s',
21 'nntp://news.gmane.io/%s',
22 'https://lists.debian.org/msgid-search/%s',
23 '//docs.FreeBSD.org/cgi/mid.cgi?db=mid&id=%s',
24 'https://www.w3.org/mid/%s',
25 'http://www.postgresql.org/message-id/%s',
26 'https://lists.debconf.org/cgi-lurker/keyword.cgi?'.
27 'doc-url=/lurker&format=en.html&query=id:%s'
30 sub PARTIAL_MAX () { 100 }
32 sub search_partial ($$) {
34 return if length($mid) < $MIN_PARTIAL_LEN;
35 my $srch = $ibx->search or return;
36 my $opt = { limit => PARTIAL_MAX, mset => 2 };
37 my @try = ("m:$mid*");
39 if ($chop =~ s/(\W+)(\w*)\z//) {
40 my ($delim, $word) = ($1, $2);
42 push @try, "m:$chop$delim";
43 push @try, "m:$chop$delim*";
46 push @try, "m:$chop*";
49 # break out long words individually to search for, because
50 # too many messages begin with "Pine.LNX." (or "alpine" or "nycvar")
51 if ($mid =~ /\w{9,}/) {
52 my @long = ($mid =~ m!(\w{3,})!g);
53 push(@try, join(' ', map { "m:$_" } @long));
55 # is the last element long enough to not trigger excessive
57 if (length($long[-1]) > 8) {
59 push(@try, join(' ', map { "m:$_" } @long));
63 foreach my $m (@try) {
64 # If Xapian can't handle the wildcard since it
65 # has too many results. $@ can be
66 # Search::Xapian::QueryParserError or even:
67 # "something terrible happened at ../Search/Xapian/Enquire.pm"
68 my $mset = eval { $srch->mset($m, $opt) } or next;
71 } @{$srch->mset_to_smsg($ibx, $mset)};
72 return \@mids if scalar(@mids);
77 my ($other, $ctx) = @_;
79 return if $other->{name} eq $ctx->{-inbox}->{name} || !$other->base_url;
81 my $mm = $other->mm or return;
83 # try to find the URL with Msgmap to avoid forking
84 my $num = $mm->num_for($ctx->{mid});
86 push @{$ctx->{found}}, $other;
88 # no point in trying the fork fallback if we
89 # know Xapian is up-to-date but missing the
90 # message in the current repo
91 push @{$ctx->{again}}, $other;
96 my ($pi_cfg, $section, $ctx) = @_;
97 if (defined($section)) {
98 return if $section !~ m!\Apublicinbox\.([^/]+)\z!;
99 my $ibx = $pi_cfg->lookup_name($1) or return;
100 ext_msg_i($ibx, $ctx);
101 } else { # undef == "EOF"
102 finalize_exact($ctx);
109 $ctx->{-wcb} = $_[0]; # HTTP server write callback
111 if ($ctx->{env}->{'pi-httpd.async'}) {
112 require PublicInbox::ConfigIter;
113 my $iter = PublicInbox::ConfigIter->new(
114 $ctx->{www}->{pi_config},
115 \&ext_msg_step, $ctx);
118 $ctx->{www}->{pi_config}->each_inbox(\&ext_msg_i, $ctx);
119 finalize_exact($ctx);
124 # called via PublicInbox::DS->EventLoop
126 my ($ctx, $sync) = @_;
127 # can't find a partial match in current inbox, try the others:
128 my $ibx = shift @{$ctx->{again}} or return finalize_partial($ctx);
129 my $mids = search_partial($ibx, $ctx->{mid}) or
130 return ($sync ? undef : PublicInbox::DS::requeue($ctx));
131 $ctx->{n_partial} += scalar(@$mids);
132 push @{$ctx->{partial}}, [ $ibx, $mids ];
133 $ctx->{n_partial} >= PARTIAL_MAX ? finalize_partial($ctx)
134 : ($sync ? undef : PublicInbox::DS::requeue($ctx));
140 return $ctx->{-wcb}->(exact($ctx)) if $ctx->{found};
142 # fall back to partial MID matching
143 my $mid = $ctx->{mid};
144 my $cur = $ctx->{-inbox};
145 my $mids = search_partial($cur, $mid);
147 $ctx->{n_partial} = scalar(@$mids);
148 push @{$ctx->{partial}}, [ $cur, $mids ];
149 } elsif ($ctx->{again} && length($mid) >= $MIN_PARTIAL_LEN) {
150 bless $ctx, __PACKAGE__;
151 if ($ctx->{env}->{'pi-httpd.async'}) {
156 # synchronous fall-through
157 $ctx->event_step while @{$ctx->{again}};
159 finalize_partial($ctx);
162 sub finalize_partial {
164 my $mid = $ctx->{mid};
166 my $href = mid_href($mid);
167 my $html = ascii_html($mid);
168 my $title = "<$html> not found";
169 my $s = "<pre>Message-ID <$html>\nnot found\n";
170 if (my $n_partial = $ctx->{n_partial}) {
172 my $es = $n_partial == 1 ? '' : 'es';
173 $n_partial .= '+' if ($n_partial == PARTIAL_MAX);
174 $s .= "\n$n_partial partial match$es found:\n\n";
175 my $cur_name = $ctx->{-inbox}->{name};
176 foreach my $pair (@{$ctx->{partial}}) {
177 my ($ibx, $res) = @$pair;
178 my $env = $ctx->{env} if $ibx->{name} eq $cur_name;
179 my $u = $ibx->base_url($env) or next;
180 foreach my $m (@$res) {
181 my $href = mid_href($m);
182 my $html = ascii_html($m);
183 $s .= qq{<a\nhref="$u$href/">$u$html/</a>\n};
187 my $ext = ext_urls($ctx, $mid, $href, $html);
192 $ctx->{-html_tip} = $s .= '</pre>';
193 $ctx->{-title_html} = $title;
194 $ctx->{-upfx} = '../';
195 $ctx->{-wcb}->(html_oneshot($ctx, $code));
199 my ($ctx, $mid, $href, $html) = @_;
201 # Fall back to external repos if configured
202 if (@EXT_URL && index($mid, '@') >= 0) {
203 my $env = $ctx->{env};
204 my $e = "\nPerhaps try an external site:\n\n";
205 foreach my $url (@EXT_URL) {
206 my $u = prurl($env, $url);
207 my $r = sprintf($u, $href);
208 my $t = sprintf($u, $html);
209 $e .= qq{<a\nhref="$r">$t</a>\n};
218 my $mid = $ctx->{mid};
219 my $found = $ctx->{found};
220 my $href = mid_href($mid);
221 my $html = ascii_html($mid);
222 my $title = "<$html> found in ";
223 my $end = @$found == 1 ? 'another inbox' : 'other inboxes';
224 $ctx->{-title_html} = $title . $end;
225 $ctx->{-upfx} = '../';
226 my $ext_urls = ext_urls($ctx, $mid, $href, $html);
227 my $code = (@$found == 1 && $ext_urls eq '') ? 200 : 300;
228 $ctx->{-html_tip} = join('',
229 "<pre>Message-ID: <$html>\nfound in $end:\n\n",
231 my $u = $_->base_url;
232 qq(<a\nhref="$u$href/">$u$html/</a>\n)
234 $ext_urls, '</pre>');
235 html_oneshot($ctx, $code);