revbank/plugins/plus
Juerd Waalboer eed0db7897 Cleanup: use subroutine signatures, remove deprecated methods.
The signatures feature has been "experimental" since Perl 5.20 (May 2014), but
expected to stay. After 8 years I'm ready to take the risk :)

Have added Perl v5.28 (June 2018) as the minimum requirement, even though the
current revbank should work with 5.20, to see if this bothers any users. Perl
v5.28 is in Debian "buster", which is now oldstable.
2021-12-03 18:00:34 +01:00

41 lines
1.1 KiB
Perl

#!perl
HELP "+<N>" => "Add N more items of the previous thing";
my $limit = 200;
my $err_limit = "Repetition is limited at $limit items.";
my $err_pfand = "Plugins 'pfand' and 'repeat' cannot be combined.";
sub command($self, $cart, $command, @) {
return ABORT, $err_pfand if $cart->entries('is_pfand');
my ($post) = $command =~ /^\+(\d+)?$/
or return NEXT;
return ABORT, "Can't modify an empty transaction." if not $cart->size;
my $last = ($cart->entries)[-1];
return REJECT, "Addition only works on products." if not $last->has_attribute('product_id');
if ($post) {
return REJECT, $err_limit if $last->quantity + $post > $limit;
$last->quantity($last->quantity + $post);
return ACCEPT;
}
return "Add to previous product", \&add;
}
sub add($self, $cart, $arg, @) {
$arg =~ /^\d+$/ and $arg > 0
or return REJECT, "Invalid value.";
my $last = ($cart->entries)[-1];
return REJECT, $err_limit if $last->quantity + $arg > $limit;
$last->quantity($last->quantity + $arg);
return ACCEPT;
}