about summary refs log tree commit homepage
path: root/lib/PublicInbox/LeiLsMailSync.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/PublicInbox/LeiLsMailSync.pm')
-rw-r--r--lib/PublicInbox/LeiLsMailSync.pm31
1 files changed, 31 insertions, 0 deletions
diff --git a/lib/PublicInbox/LeiLsMailSync.pm b/lib/PublicInbox/LeiLsMailSync.pm
new file mode 100644
index 00000000..1400d488
--- /dev/null
+++ b/lib/PublicInbox/LeiLsMailSync.pm
@@ -0,0 +1,31 @@
+# Copyright (C) all contributors <meta@public-inbox.org>
+# License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
+
+# front-end for the "lei ls-mail-sync" sub-command
+package PublicInbox::LeiLsMailSync;
+use strict;
+use v5.10.1;
+use PublicInbox::LeiMailSync;
+use PublicInbox::Config qw(glob2re);
+
+sub lei_ls_mail_sync {
+        my ($lei, $filter) = @_;
+        my $lms = $lei->lms or return;
+        my $opt = $lei->{opt};
+        my $re = $opt->{globoff} ? undef : glob2re($filter // '*');
+        $re .= '/?\\z' if defined $re;
+        $re //= index($filter, '/') < 0 ?
+                        qr!/\Q$filter\E/?\z! : # exact basename match
+                        qr/\Q$filter\E/; # grep -F semantics
+        my @f = $lms->folders;
+        @f = $opt->{'invert-match'} ? grep(!/$re/, @f) : grep(/$re/, @f);
+        if ($opt->{'local'} && !$opt->{remote}) {
+                @f = grep(!m!\A[a-z\+]+://!i, @f);
+        } elsif ($opt->{remote} && !$opt->{'local'}) {
+                @f = grep(m!\A[a-z\+]+://!i, @f);
+        }
+        my $ORS = $opt->{z} ? "\0" : "\n";
+        $lei->out(join($ORS, @f, ''));
+}
+
+1;