]> Sergey Matveev's repositories - public-inbox.git/blob - lib/PublicInbox/NNTPD.pm
rename {pi_config} fields to {pi_cfg}
[public-inbox.git] / lib / PublicInbox / NNTPD.pm
1 # Copyright (C) 2016-2020 all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
3
4 # represents an NNTPD (currently a singleton),
5 # see script/public-inbox-nntpd for how it is used
6 package PublicInbox::NNTPD;
7 use strict;
8 use warnings;
9 use Sys::Hostname;
10 use PublicInbox::Config;
11 use PublicInbox::InboxIdle;
12
13 sub new {
14         my ($class) = @_;
15         my $pi_cfg = PublicInbox::Config->new;
16         my $name = $pi_cfg->{'publicinbox.nntpserver'};
17         if (!defined($name) or $name eq '') {
18                 $name = hostname;
19         } elsif (ref($name) eq 'ARRAY') {
20                 $name = $name->[0];
21         }
22
23         bless {
24                 groups => {},
25                 err => \*STDERR,
26                 out => \*STDOUT,
27                 pi_cfg => $pi_cfg,
28                 servername => $name,
29                 greet => \"201 $name ready - post via email\r\n",
30                 # accept_tls => { SSL_server => 1, ..., SSL_reuse_ctx => ... }
31                 # idler => PublicInbox::InboxIdle
32         }, $class;
33 }
34
35 sub refresh_groups {
36         my ($self, $sig) = @_;
37         my $pi_cfg = $sig ? PublicInbox::Config->new : $self->{pi_cfg};
38         my $groups = $pi_cfg->{-by_newsgroup}; # filled during each_inbox
39         $pi_cfg->each_inbox(sub {
40                 my ($ibx) = @_;
41                 my $ngname = $ibx->{newsgroup};
42                 if (defined($ngname) && $ibx->nntp_usable) {
43                         # only valid if msgmap and over works
44                         # preload to avoid fragmentation:
45                         $ibx->description;
46                         $ibx->base_url;
47                 } else {
48                         delete $groups->{$ngname};
49                         delete $ibx->{newsgroup};
50                         # Note: don't be tempted to delete more for memory
51                         # savings just yet: NNTP, IMAP, and WWW may all
52                         # run in the same process someday.
53                 }
54         });
55         $self->{groupnames} = [ sort(keys %$groups) ];
56         # this will destroy old groups that got deleted
57         $self->{pi_cfg} = $pi_cfg;
58 }
59
60 sub idler_start {
61         $_[0]->{idler} //= PublicInbox::InboxIdle->new($_[0]->{pi_cfg});
62 }
63
64 1;