X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=lib%2FPublicInbox%2FMbox.pm;h=04c86cc196515e345d36491b200a1d29f3e4bd17;hb=15eb65ffd59c7cf5cce67c6b7621f63194fd1083;hp=2ea326a5a87fbf8788064e0be61819c8fe79b8da;hpb=ec24b4af88d7922e4bf9846e76b9455fb6a5bda4;p=public-inbox.git diff --git a/lib/PublicInbox/Mbox.pm b/lib/PublicInbox/Mbox.pm index 2ea326a5..04c86cc1 100644 --- a/lib/PublicInbox/Mbox.pm +++ b/lib/PublicInbox/Mbox.pm @@ -1,5 +1,5 @@ -# Copyright (C) 2015 all contributors -# License: AGPLv3 or later (https://www.gnu.org/licenses/agpl-3.0.txt) +# Copyright (C) 2015-2018 all contributors +# License: AGPL-3.0+ # Streaming interface for formatting messages as an mboxrd. # Used by the web interface @@ -101,17 +101,22 @@ sub thread_mbox { sub emit_range { my ($ctx, $range) = @_; - eval { require IO::Compress::Gzip }; - return sub { need_gzip(@_) } if $@; my $query; if ($range eq 'all') { # TODO: YYYY[-MM] $query = ''; } else { return [404, [qw(Content-Type text/plain)], []]; } + mbox_all($ctx, $query); +} + +sub mbox_all { + my ($ctx, $query) = @_; + eval { require IO::Compress::Gzip }; + return sub { need_gzip(@_) } if $@; my $cb = sub { $ctx->{srch}->query($query, @_) }; - PublicInbox::MboxGz->response($ctx, $cb); + PublicInbox::MboxGz->response($ctx, $cb, 'results-'.$query); } sub need_gzip { @@ -131,6 +136,7 @@ EOF package PublicInbox::MboxGz; use strict; use warnings; +use PublicInbox::Hval qw/to_filename/; sub new { my ($class, $ctx, $cb) = @_; @@ -146,14 +152,27 @@ sub new { } sub response { - my ($class, $ctx, $cb) = @_; + my ($class, $ctx, $cb, $fn) = @_; my $body = $class->new($ctx, $cb); # http://www.iana.org/assignments/media-types/application/gzip $body->{hdr} = [ 'Content-Type', 'application/gzip' ]; - my $hdr = $body->getline; # fill in Content-Disposition filename + $body->{fn} = $fn; + # fill in Content-Disposition filename + my $hdr = $body->getline; + if ($body->{hdr}) { + return [ 404, ['Content-Type','text/plain'], + [ "No results found\n" ] ]; + } [ 200, $hdr, $body ]; } +sub set_filename ($$) { + my ($fn, $msg) = @_; + return to_filename($fn) if defined($fn); + + PublicInbox::Mbox::subject_fn($msg); +} + # called by Plack::Util::foreach or similar sub getline { my ($self) = @_; @@ -170,7 +189,7 @@ sub getline { # use subject of first message as subject if (my $hdr = delete $self->{hdr}) { - my $fn = PublicInbox::Mbox::subject_fn($msg); + my $fn = set_filename($self->{fn}, $msg); push @$hdr, 'Content-Disposition', "inline; filename=$fn.mbox.gz"; return $hdr;