1 # Copyright (C) 2020 all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
4 # Read-only external (detached) index for cross inbox search.
5 # This is a read-only counterpart to PublicInbox::ExtSearchIdx
6 # and behaves like PublicInbox::Inbox AND PublicInbox::Search
7 package PublicInbox::ExtSearch;
10 use PublicInbox::Over;
11 use PublicInbox::Inbox;
12 use PublicInbox::MiscSearch;
13 use DBI qw(:sql_types); # SQL_BLOB
15 # for ->reopen, ->mset, ->mset_to_artnums
16 use parent qw(PublicInbox::Search);
19 my ($class, $topdir) = @_;
23 xpfx => "$topdir/ei".PublicInbox::Search::SCHEMA_VERSION
29 $self->{misc} //= PublicInbox::MiscSearch->new("$self->{xpfx}/misc");
32 # same as per-inbox ->over, for now...
35 $self->{over} //= PublicInbox::Over->new("$self->{xpfx}/over.sqlite3");
40 $self->{git} //= PublicInbox::Git->new("$self->{topdir}/ALL.git");
43 # returns a hashref of { $NEWSGROUP_NAME => $ART_NO } using the `xref3' table
44 sub nntp_xref_for { # NNTP only
45 my ($self, $xibx, $xsmsg) = @_;
46 my $dbh = over($self)->dbh;
48 my $sth = $dbh->prepare_cached(<<'', undef, 1);
49 SELECT ibx_id FROM inboxes WHERE eidx_key = ? LIMIT 1
51 $sth->execute($xibx->{newsgroup});
52 my $xibx_id = $sth->fetchrow_array // do {
53 warn "W: `$xibx->{newsgroup}' not found in $self->{topdir}\n";
57 $sth = $dbh->prepare_cached(<<'', undef, 1);
58 SELECT docid FROM xref3 WHERE oidbin = ? AND xnum = ? AND ibx_id = ? LIMIT 1
60 $sth->bind_param(1, pack('H*', $xsmsg->{blob}), SQL_BLOB);
62 # NNTP::cmd_over can set {num} to zero according to RFC 3977 8.3.2
63 $sth->bind_param(2, $xsmsg->{num} || $xsmsg->{-orig_num});
64 $sth->bind_param(3, $xibx_id);
66 my $docid = $sth->fetchrow_array // do {
68 W: `$xibx->{newsgroup}:$xsmsg->{num}' not found in $self->{topdir}"
73 # LIMIT is number of newsgroups on server:
74 $sth = $dbh->prepare_cached(<<'', undef, 1);
75 SELECT ibx_id,xnum FROM xref3 WHERE docid = ? AND ibx_id != ?
77 $sth->execute($docid, $xibx_id);
78 my $rows = $sth->fetchall_arrayref;
80 my $eidx_key_sth = $dbh->prepare_cached(<<'', undef, 1);
81 SELECT eidx_key FROM inboxes WHERE ibx_id = ? LIMIT 1
84 my ($ibx_id, $xnum) = @$_;
86 $eidx_key_sth->execute($ibx_id);
87 my $eidx_key = $eidx_key_sth->fetchrow_array;
89 # only include if there's a newsgroup name
90 $eidx_key && index($eidx_key, '/') >= 0 ?
91 () : ($eidx_key => $xnum)
93 $xref{$xibx->{newsgroup}} = $xsmsg->{num};
103 ($self->{description} //=
104 PublicInbox::Inbox::cat_desc("$self->{topdir}/description")) //
105 '$EXTINDEX_DIR/description missing';
108 sub cloneurl { [] } # TODO
110 sub base_url { 'https://example.com/TODO/' }
114 *smsg_eml = \&PublicInbox::Inbox::smsg_eml;
115 *smsg_by_mid = \&PublicInbox::Inbox::smsg_by_mid;
116 *msg_by_mid = \&PublicInbox::Inbox::msg_by_mid;
117 *modified = \&PublicInbox::Inbox::modified;
118 *recent = \&PublicInbox::Inbox::recent;
120 *max_git_epoch = *nntp_usable = *msg_by_path = \&mm; # undef
121 *isrch = *search = \&PublicInbox::Search::reopen;