about summary refs log tree commit homepage
path: root/lib/PublicInbox/Mbox.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2017-11-29 09:33:17 +0000
committerEric Wong <e@80x24.org>2017-12-01 08:39:39 +0000
commit55c13112d18616607d2d3eba159ae18dcb66a568 (patch)
tree9ce654e575b899a648eb68dedb154dfd98d1b117 /lib/PublicInbox/Mbox.pm
parent0d48c3d9b83393337b20ed50aa7847c0a7e6b506 (diff)
downloadpublic-inbox-55c13112d18616607d2d3eba159ae18dcb66a568.tar.gz
Allowing downloading of all search results as an gzipped mboxrd
file can be convenient for some users.
Diffstat (limited to 'lib/PublicInbox/Mbox.pm')
-rw-r--r--lib/PublicInbox/Mbox.pm24
1 files changed, 19 insertions, 5 deletions
diff --git a/lib/PublicInbox/Mbox.pm b/lib/PublicInbox/Mbox.pm
index 2ea326a5..ead5c7d8 100644
--- a/lib/PublicInbox/Mbox.pm
+++ b/lib/PublicInbox/Mbox.pm
@@ -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,22 @@ 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' ];
+        $body->{fn} = $fn;
         my $hdr = $body->getline; # fill in Content-Disposition filename
         [ 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 +184,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;