Remove requirement for dummy command method in hook-only plugins

This commit is contained in:
Juerd Waalboer 2021-12-03 01:47:28 +01:00
parent cf8ce7dc52
commit 6850ed22be
15 changed files with 8 additions and 27 deletions

View file

@ -38,6 +38,8 @@ sub import {
} }
__PACKAGE__->import;
1; 1;
__END__ __END__

View file

@ -1,10 +1,14 @@
package RevBank::Plugin; package RevBank::Plugin;
use strict; use strict;
require RevBank::Global;
sub new { sub new {
my ($class) = @_; my ($class) = @_;
return bless { }, $class; return bless { }, $class;
} }
sub command {
return RevBank::Global::NEXT();
}
1; 1;

View file

@ -52,9 +52,8 @@ There is no protection against infinite loops. Be careful!
$a = parse_amount($a) or return REJECT, "$a: Invalid amount."; $a = parse_amount($a) or return REJECT, "$a: Invalid amount.";
$cart->add($u, $a, 'Good, except that $a is special in Perl :)'); $cart->add($u, $a, 'Good, except that $a is special in Perl :)');
There are two kinds of plugin methods: input methods and hooks. A plugin MUST There are two kinds of plugin methods: input methods and hooks. A plugin may
define one C<command> input method (but it MAY be a no-op), and can have any define one C<command> input method, and can have any number of hooks.
number of hooks.
=head2 Input methods =head2 Input methods

View file

@ -1,7 +1,5 @@
#!perl #!perl
sub command { NEXT }
*hook_plugin_fail = *hook_retry = *hook_reject = *hook_invalid_input = sub { *hook_plugin_fail = *hook_retry = *hook_reject = *hook_invalid_input = sub {
call_hooks('beep'); call_hooks('beep');
undef; undef;

View file

@ -1,7 +1,5 @@
#!perl #!perl
sub command { NEXT }
# So you want a different beep mechanism... # So you want a different beep mechanism...
# #
# Don't just edit this plugin. Instead, COPY this file and add yours to # Don't just edit this plugin. Instead, COPY this file and add yours to

View file

@ -23,8 +23,6 @@ use List::Util qw(sum);
my $iban = "NL99ABCD1234567890"; my $iban = "NL99ABCD1234567890";
my $beneficiary = "Account Name"; my $beneficiary = "Account Name";
sub command { NEXT }
sub hook_checkout { sub hook_checkout {
my ($class, $cart, $user, $transaction_id) = @_; my ($class, $cart, $user, $transaction_id) = @_;

View file

@ -1,7 +1,5 @@
#!perl #!perl
sub command { NEXT }
sub hook_deposit_methods { sub hook_deposit_methods {
my ($class, $message, $hash) = @_; my ($class, $message, $hash) = @_;

View file

@ -2,8 +2,6 @@
my $timeout = 10; my $timeout = 10;
sub command { NEXT }
sub hook_prompt_idle { sub hook_prompt_idle {
my ($class, $cart, $plugin, $seconds, $readline) = @_; my ($class, $cart, $plugin, $seconds, $readline) = @_;
if ($seconds >= $timeout and $cart->size and not $plugin) { if ($seconds >= $timeout and $cart->size and not $plugin) {

View file

@ -1,7 +1,5 @@
#!perl #!perl
sub command { NEXT }
my $filename = ".revbank.log"; my $filename = ".revbank.log";
sub _log { sub _log {

View file

@ -1,7 +1,5 @@
#!perl #!perl
sub command { NEXT }
sub hook_user_balance { sub hook_user_balance {
my ($class, $username, $old, $delta, $new, $transaction_id) = @_; my ($class, $username, $old, $delta, $new, $transaction_id) = @_;
my $msg = "$transaction_id ($username)"; my $msg = "$transaction_id ($username)";

View file

@ -2,8 +2,6 @@
use Net::MQTT::Simple "mosquitto.space.revspace.nl"; use Net::MQTT::Simple "mosquitto.space.revspace.nl";
sub command { NEXT }
sub hook_checkout { sub hook_checkout {
my ($class, $cart, $user, $transaction_id) = @_; my ($class, $cart, $user, $transaction_id) = @_;
my $filename = "revbank.sales"; my $filename = "revbank.sales";

View file

@ -2,8 +2,6 @@
use POSIX qw(strftime); use POSIX qw(strftime);
sub command { NEXT }
sub _box { sub _box {
print( print(
"#" x 79, "\n", "#" x 79, "\n",

View file

@ -1,5 +1,3 @@
sub command { NEXT }
# Terminal hacks # Terminal hacks
# Reset terminal on startup # Reset terminal on startup

View file

@ -1,7 +1,5 @@
#!perl #!perl
sub command { NEXT }
$SIG{INT} = sub { $SIG{INT} = sub {
$::ABORT_HACK = "^C"; $::ABORT_HACK = "^C";

View file

@ -29,8 +29,6 @@ sub _read_warnings {
} grep /\S/, grep !/^\s*#/, readline $fh; } grep /\S/, grep !/^\s*#/, readline $fh;
} }
sub command { NEXT }
sub hook_add_entry { sub hook_add_entry {
my ($class, $cart, $entry) = @_; my ($class, $cart, $entry) = @_;
return if not $entry->has_attribute('product_id'); # skip unlisted, deposit, give, take return if not $entry->has_attribute('product_id'); # skip unlisted, deposit, give, take