
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.
63 lines
1.6 KiB
Perl
63 lines
1.6 KiB
Perl
#!perl
|
|
|
|
HELP "market" => "Edit market list";
|
|
|
|
my $filename = 'revbank.market';
|
|
|
|
sub _read_market() {
|
|
open my $fh, '<', $filename or die "$filename: $!";
|
|
my %market;
|
|
while (readline $fh) {
|
|
/^\s*#/ and next;
|
|
/\S/ or next;
|
|
chomp;
|
|
my ($user, $id, $seller, $space, $description) = split " ", $_, 5;
|
|
$market{$id} = {
|
|
user => $user,
|
|
seller => $seller,
|
|
space => $space,
|
|
description => $description,
|
|
};
|
|
}
|
|
return \%market;
|
|
}
|
|
|
|
sub command :Tab(market,&tab) ($self, $cart, $command, @) {
|
|
if ($command eq 'market') {
|
|
system $ENV{EDITOR} || 'vi', $filename;
|
|
return ACCEPT;
|
|
}
|
|
|
|
my $product = _read_market->{ $command } or return NEXT;
|
|
|
|
my $username = parse_user( $product->{ user }) or return NEXT;
|
|
my $seller = parse_amount($product->{ seller }) or return NEXT;
|
|
my $space = parse_amount($product->{ space }) or return NEXT;
|
|
my $description = $product->{description};
|
|
|
|
my @existing = grep {
|
|
$_->attribute('plugin') eq $self->id and
|
|
$_->attribute('product_id') eq $command
|
|
} $cart->entries('plugin');
|
|
|
|
if (@existing) {
|
|
$existing[0]->quantity($existing[0]->quantity + 1);
|
|
return ACCEPT;
|
|
}
|
|
|
|
$cart->add(
|
|
-($seller + $space),
|
|
"$description (sold by $username)",
|
|
{ product_id => $command, plugin => $self->id }
|
|
)->add_contra(
|
|
$username,
|
|
$seller,
|
|
"\$you bought $description"
|
|
);
|
|
|
|
return ACCEPT;
|
|
}
|
|
|
|
sub tab {
|
|
return grep /\D/, keys %{ _read_market() };
|
|
}
|