From 3826b39b6433ecec96a0230ae4602b7c819fde66 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Sat, 2 Oct 2021 08:16:21 +0000 Subject: lei inspect: integerize "bytes" and "lines" fields These are always numeric, but none of the Perl code cares; we want to prevent JSON from quoting them. --- lib/PublicInbox/LeiInspect.pm | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'lib/PublicInbox/LeiInspect.pm') diff --git a/lib/PublicInbox/LeiInspect.pm b/lib/PublicInbox/LeiInspect.pm index 2158b996..f18e31c5 100644 --- a/lib/PublicInbox/LeiInspect.pm +++ b/lib/PublicInbox/LeiInspect.pm @@ -13,6 +13,12 @@ use PublicInbox::Config; use PublicInbox::MID qw(mids); use PublicInbox::NetReader qw(imap_uri nntp_uri); +sub _json_prep ($) { + my ($smsg) = @_; + $smsg->{$_} += 0 for qw(bytes lines); # integerize + +{ %$smsg } # unbless and scalarize +} + sub inspect_blob ($$) { my ($lei, $oidhex) = @_; my $ent = {}; @@ -143,7 +149,7 @@ sub inspect_num ($$) { } if ($ibx && $ibx->over) { my $smsg = $ibx->over->get_art($num); - $ent->{smsg} = { %$smsg } if $smsg; + $ent->{smsg} = _json_prep($smsg) if $smsg; } defined($docid) ? inspect_docid($lei, $docid, $ent) : $ent; } @@ -164,7 +170,7 @@ sub inspect_mid ($$) { if ($ibx && $ibx->over) { my ($id, $prev); while (my $smsg = $ibx->over->next_by_mid($mid, \$id, \$prev)) { - push @{$ent->{smsg}}, { %$smsg } + push @{$ent->{smsg}}, _json_prep($smsg); } } $ent; -- cgit v1.2.3-24-ge0c7