]> Sergey Matveev's repositories - public-inbox.git/commitdiff
convert: preserve indexlevel on conversions
authorEric Wong <e@yhbt.net>
Sat, 8 Feb 2020 18:08:49 +0000 (18:08 +0000)
committerEric Wong <e@yhbt.net>
Sat, 8 Feb 2020 19:55:45 +0000 (19:55 +0000)
We don't want to blow up users storage too badly when converting
v1 to v2 or break because they don't have Xapian bindings installed.

script/public-inbox-convert

index 906001cbbd810d226d8dfb94b4240678ab132938..e13c13f44153ed1f29082a10f80317c229574422 100755 (executable)
@@ -6,6 +6,7 @@ use warnings;
 use Getopt::Long qw(:config gnu_getopt no_ignore_case auto_abbrev);
 use PublicInbox::InboxWritable;
 use PublicInbox::Config;
 use Getopt::Long qw(:config gnu_getopt no_ignore_case auto_abbrev);
 use PublicInbox::InboxWritable;
 use PublicInbox::Config;
+use PublicInbox::Admin;
 use PublicInbox::V2Writable;
 use PublicInbox::Git;
 use PublicInbox::Spawn qw(spawn);
 use PublicInbox::V2Writable;
 use PublicInbox::Git;
 use PublicInbox::Spawn qw(spawn);
@@ -45,6 +46,14 @@ $old = PublicInbox::InboxWritable->new($old);
 if ($old->version >= 2) {
        die "Only conversion from v1 inboxes is supported\n";
 }
 if ($old->version >= 2) {
        die "Only conversion from v1 inboxes is supported\n";
 }
+
+$old->{indexlevel} //= PublicInbox::Admin::detect_indexlevel($old);
+if ($index) {
+       my $mods = {};
+       PublicInbox::Admin::scan_ibx_modules($mods, $old);
+       PublicInbox::Admin::require_or_die(keys %$mods);
+}
+
 my $new = { %$old };
 $new->{inboxdir} = abs_path($new_dir);
 $new->{version} = 2;
 my $new = { %$old };
 $new->{inboxdir} = abs_path($new_dir);
 $new->{version} = 2;