]> Sergey Matveev's repositories - public-inbox.git/blob - lib/PublicInbox/NNTPD.pm
nntp: NNTPS and NNTP+STARTTLS working
[public-inbox.git] / lib / PublicInbox / NNTPD.pm
1 # Copyright (C) 2016-2018 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 require PublicInbox::Config;
11
12 sub new {
13         my ($class) = @_;
14         my $pi_config = PublicInbox::Config->new;
15         my $name = $pi_config->{'publicinbox.nntpserver'};
16         if (!defined($name) or $name eq '') {
17                 $name = hostname;
18         } elsif (ref($name) eq 'ARRAY') {
19                 $name = $name->[0];
20         }
21
22         bless {
23                 groups => {},
24                 err => \*STDERR,
25                 out => \*STDOUT,
26                 grouplist => [],
27                 servername => $name,
28                 # accept_tls => { SSL_server => 1, ..., SSL_reuse_ctx => ... }
29         }, $class;
30 }
31
32 sub refresh_groups () {
33         my ($self) = @_;
34         my $pi_config = PublicInbox::Config->new;
35         my $new = {};
36         my @list;
37         $pi_config->each_inbox(sub {
38                 my ($ng) = @_;
39                 my $ngname = $ng->{newsgroup} or return;
40                 if (ref $ngname) {
41                         warn 'multiple newsgroups not supported: '.
42                                 join(', ', @$ngname). "\n";
43                 } elsif ($ng->nntp_usable) {
44                         # Only valid if msgmap and search works
45                         $new->{$ngname} = $ng;
46                         push @list, $ng;
47                 }
48         });
49         @list = sort { $a->{newsgroup} cmp $b->{newsgroup} } @list;
50         $self->{grouplist} = \@list;
51         # this will destroy old groups that got deleted
52         %{$self->{groups}} = %$new;
53 }
54
55 1;