]> Sergey Matveev's repositories - public-inbox.git/blobdiff - Documentation/mknews.perl
wwwatomstream: move {emit_header} field to $self
[public-inbox.git] / Documentation / mknews.perl
index e78c1cb87c57062e074abe37c0d0becce69c36dc..a9dede004aee78b5b37fa5e72684b8760e44d9ab 100755 (executable)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# Copyright (C) 2019 all contributors <meta@public-inbox.org>
+# Copyright (C) 2019-2020 all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 # Generates NEWS, NEWS.atom, and NEWS.html files using release emails
 # this uses unstable internal APIs of public-inbox, and this script
@@ -7,9 +7,9 @@
 use strict;
 use PublicInbox::MIME;
 use PublicInbox::View;
-use Plack::Util;
 use PublicInbox::MsgTime qw(msg_datestamp);
 use PublicInbox::MID qw(mids mid_escape);
+END { $INC{'Plack/Util.pm'} and warn "$0 should not have loaded Plack::Util\n" }
 my $dst = shift @ARGV or die "Usage: $0 <NEWS|NEWS.atom|NEWS.html>";
 
 # newest to oldest
@@ -21,8 +21,8 @@ my $atom_url = 'https://public-inbox.org/NEWS.atom';
 my $addr = 'meta@public-inbox.org';
 
 my $latest = shift(@releases) or die 'no releases?';
-my $mime_latest = release2mime($latest);
-my $mtime = msg_datestamp($mime_latest->header_obj);
+my $mtime;
+my $mime_latest = release2mime($latest, \$mtime);
 my $tmp = "$dst+";
 my $out;
 if ($dst eq 'NEWS') {
@@ -34,11 +34,11 @@ if ($dst eq 'NEWS') {
        }
 } elsif ($dst eq 'NEWS.atom' || $dst eq 'NEWS.html') {
        open $out, '>', $tmp or die;
-       my $ibx = Plack::Util::inline_object(
-               description => sub { 'public-inbox releases' },
-               over => sub { undef },
-               search => sub { 1 }, # for WwwStream:_html_top
-               base_url => sub { "$base_url/" },
+       my $ibx = My::MockObject->new(
+               description => 'public-inbox releases',
+               over => undef,
+               search => 1, # for WwwStream:_html_top
+               base_url => "$base_url/",
        );
        $ibx->{-primary_address} = $addr;
        my $ctx = {
@@ -73,14 +73,22 @@ rename($tmp, $dst) or die;
 exit 0;
 
 sub release2mime {
-       my $f = "$dir/$_[0].eml";
+       my ($release, $mtime_ref) = @_;
+       my $f = "$dir/$release.eml";
        open(my $fh, '<', $f) or die "open($f): $!";
-       PublicInbox::MIME->new(do { local $/; <$fh> });
+       my $mime = PublicInbox::MIME->new(do { local $/; <$fh> });
+       # Documentation/include.mk relies on mtimes of each .eml file
+       # to trigger rebuild, so make sure we sync the mtime to the Date:
+       # header in the .eml
+       my $mtime = msg_datestamp($mime->header_obj);
+       utime($mtime, $mtime, $fh) or warn "futimes $f: $!";
+       $$mtime_ref = $mtime if $mtime_ref;
+       $mime;
 }
 
 sub mime2txt {
        my ($out, $mime) = @_;
-       my $title = $mime->header_str('Subject');
+       my $title = $mime->header('Subject');
        $title =~ s/^\s*\[\w+\]\s*//g; # [ANNOUNCE] or [ANN]
        my $dtime = msg_datestamp($mime->header_obj);
        $title .= ' - ' . PublicInbox::View::fmt_ts($dtime) . ' UTC';
@@ -95,14 +103,14 @@ sub mime2txt {
 
 sub mime2html {
        my ($out, $mime, $ctx) = @_;
-       my $smsg = bless { mime => $mime }, 'PublicInbox::SearchMsg';
+       my $smsg = bless { mime => $mime }, 'PublicInbox::Smsg';
        print $out PublicInbox::View::index_entry($smsg, $ctx, 1) or die;
 }
 
 sub html_start {
        my ($out, $ctx) = @_;
        require PublicInbox::WwwStream;
-       $ctx->{www} = Plack::Util::inline_object(style => sub { '' });
+       $ctx->{www} = My::MockObject->new(style => '');
        my $www_stream = PublicInbox::WwwStream->new($ctx);
        print $out $www_stream->_html_top, '<pre>' or die;
 }
@@ -119,7 +127,7 @@ sub atom_start {
        require PublicInbox::WwwAtomStream;
        # WwwAtomStream stats this dir for mtime
        my $astream = PublicInbox::WwwAtomStream->new($ctx);
-       delete $ctx->{emit_header};
+       delete $astream->{emit_header};
        my $ibx = $ctx->{-inbox};
        my $title = PublicInbox::WwwAtomStream::title_tag($ibx->description);
        my $updated = PublicInbox::WwwAtomStream::feed_updated(gmtime($mtime));
@@ -139,8 +147,24 @@ EOF
 
 sub mime2atom  {
        my ($out, $astream, $mime, $ctx) = @_;
-       my $smsg = bless { mime => $mime }, 'PublicInbox::SearchMsg';
+       my $smsg = bless { mime => $mime }, 'PublicInbox::Smsg';
        if (defined(my $str = $astream->feed_entry($smsg))) {
                print $out $str or die;
        }
 }
+package My::MockObject;
+use strict;
+our $AUTOLOAD;
+
+sub new {
+       my ($class, %values) = @_;
+       bless \%values, $class;
+}
+
+sub AUTOLOAD {
+       my ($self) = @_;
+       my $attr = (split(/::/, $AUTOLOAD))[-1];
+       $self->{$attr};
+}
+
+1;