
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.
55 lines
1.3 KiB
Perl
55 lines
1.3 KiB
Perl
#!perl
|
|
|
|
HELP "<productID>" => "Look up products from database";
|
|
HELP "edit" => "Edit product list";
|
|
|
|
my $filename = 'revbank.products';
|
|
|
|
sub _read_products() {
|
|
open my $fh, '<', $filename or die "$filename: $!";
|
|
my %products;
|
|
while (readline $fh) {
|
|
/^\s*#/ and next;
|
|
/\S/ or next;
|
|
chomp;
|
|
my ($ids, $p, $d) = split " ", $_, 3;
|
|
my @ids = split /,/, $ids;
|
|
|
|
$products{ $_ } = { id => $ids[0], price => $p, description => $d}
|
|
for @ids;
|
|
}
|
|
|
|
return \%products;
|
|
}
|
|
|
|
sub command :Tab(edit,&tab) ($self, $cart, $command, @) {
|
|
if ($command eq 'edit') {
|
|
system $ENV{EDITOR} || 'vi', $filename;
|
|
return ACCEPT;
|
|
}
|
|
|
|
my $product = _read_products->{ $command } or return NEXT;
|
|
|
|
my $price = parse_amount( $product->{price} ) or return NEXT;
|
|
|
|
my @existing = grep {
|
|
$_->attribute('plugin') eq $self->id and
|
|
$_->attribute('product_id') eq $product->{id}
|
|
} $cart->entries('plugin');
|
|
|
|
if (@existing) {
|
|
$existing[0]->quantity($existing[0]->quantity + 1);
|
|
return ACCEPT;
|
|
}
|
|
|
|
$cart->add(
|
|
-$price,
|
|
$product->{description},
|
|
{ product_id => $product->{id}, plugin => $self->id }
|
|
);
|
|
return ACCEPT;
|
|
}
|
|
|
|
sub tab {
|
|
return grep /\D/, keys %{ _read_products() };
|
|
}
|