
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.
33 lines
987 B
Perl
33 lines
987 B
Perl
#!perl
|
|
|
|
use Net::MQTT::Simple "mosquitto.space.revspace.nl";
|
|
|
|
sub hook_checkout($class, $cart, $user, $transaction_id, @) {
|
|
my $filename = "revbank.sales";
|
|
my @entries = $cart->entries('product_id') or return;
|
|
my %already_retained;
|
|
|
|
my %stats = do {
|
|
my $in;
|
|
open($in, '<', $filename)
|
|
? map { split " ", $_, 2 } readline $in
|
|
: ()
|
|
};
|
|
|
|
$stats{ $_->attribute('product_id') } += $_->quantity for @entries;
|
|
|
|
for (@entries) {
|
|
my $product = $_->attribute('product_id');
|
|
|
|
publish "revspace/bank/sale" => $product;
|
|
next if $already_retained{ $product };
|
|
|
|
retain "revspace/bank/$product" => $stats{$_->attribute('product_id')};
|
|
$already_retained{ $product } = 1;
|
|
}
|
|
|
|
open my $out, '>', "$filename.$$" or warn "$filename.$$: $!";
|
|
printf {$out} "%-16s %9d\n", $_, $stats{$_} for sort keys %stats;
|
|
close $out or die "$filename.$$: $!";
|
|
rename "$filename.$$", $filename or die $!;
|
|
}
|