Added (sort of) tab completion (could be better), if someone knows how to use perl's readline, i'll be glad to recieve patches.

Also added error handling for the :s and :i command if nothing is passed.
This commit is contained in:
qorg11 2021-11-22 19:19:12 +01:00
parent a7ce2c272e
commit 8acb4f75e0
No known key found for this signature in database
GPG key ID: 343FC20A4ACA62B9

View file

@ -31,13 +31,16 @@ use strict;
our %config; our %config;
my $input; my $input;
my @completions = qw(n h :h :s :help :instance help instance);
# Objects # Objects
my $json = new JSON; my $json = new JSON;
my $ua = new LWP::UserAgent; my $ua = new LWP::UserAgent;
$ua->agent("curl"); $ua->agent("curl");
my $term = new Term::ReadLine("ptcli"); my $term = new Term::ReadLine("ptcli");
my $time = new Time::Seconds; $term->Attribs->{'completion_function'} = sub { return qw(:s :h n p :i); };
# Configuration # Configuration
my $conf_path = $ENV{PTCLIRC} || "$ENV{HOME}/.ptclirc"; my $conf_path = $ENV{PTCLIRC} || "$ENV{HOME}/.ptclirc";
@ -145,6 +148,8 @@ sub select_video($) {
); );
} }
my $prompt_input = $term->readline("=> "); my $prompt_input = $term->readline("=> ");
if ($prompt_input eq "n" || $prompt_input eq "N") { if ($prompt_input eq "n" || $prompt_input eq "N") {
$counter += 25; $counter += 25;
return -1; return -1;
@ -155,12 +160,25 @@ sub select_video($) {
&help_prompt(); &help_prompt();
return -1; return -1;
} elsif ($prompt_input =~ /^:s/) { } elsif ($prompt_input =~ /^:s/) {
$prompt_input =~ s/^:s //; $prompt_input =~ s/^:s//;
my $new_input = $prompt_input;
if ($new_input eq "") {
print "Empty input\n";
next;
} else {
$input = $prompt_input; $input = $prompt_input;
}
return -1; return -1;
} elsif ($prompt_input =~ /^:i/) { } elsif ($prompt_input =~ /^:i/) {
$config{instance} = $prompt_input; my $new_instance = $prompt_input;
$config{instance} =~ s/^:i //; $new_instance =~ s/^:i//;
print $new_instance;
if ($new_instance eq "") {
print "Empty input\n";
next;
} else {
$config{instance} = $new_instance;
}
return -1; return -1;
} elsif (looks_like_number $prompt_input) { } elsif (looks_like_number $prompt_input) {
return $videos_data[$prompt_input]->{uuid}; return $videos_data[$prompt_input]->{uuid};
@ -217,6 +235,12 @@ sub help_prompt() {
print "Press enter to continue\n"; print "Press enter to continue\n";
<STDIN>; <STDIN>;
} }
sub rl_completion() {
my ($text, $line, $start) = @_;
}
__END__ __END__
=head1 peertube-cli =head1 peertube-cli
@ -247,7 +271,6 @@ which media player to use, by default is mpv.
=item B<-player-flags>: =item B<-player-flags>:
flags to append to the video player (-vo=x11 for example) flags to append to the video player (-vo=x11 for example)
=back =back
=cut =cut