
RevBank reads the new products file on every interaction (e.g. pressing enter), and then fires hooks like `product_changed`. Every running instance gets those hooks, but the price tage should be generated only once.
105 lines
2.1 KiB
Perl
105 lines
2.1 KiB
Perl
#!perl
|
|
use RevBank::Products qw(read_products);
|
|
use FindBin qw($Bin);
|
|
|
|
my $fn = "revbank.oepl";
|
|
my $hex = '[0-9A-F]';
|
|
my $mac_regex = qr/^(?:$hex {12}|$hex {14}|$hex {16})$/x;
|
|
|
|
sub _create() {
|
|
open my $fh, '>>', $fn;
|
|
}
|
|
|
|
sub _run(@args) {
|
|
local $ENV{REVBANK_SKIP_LOCK} = 1;
|
|
system perl => "$Bin/contrib/openepaperlink.pl", @args;
|
|
}
|
|
|
|
sub _read_oepl() {
|
|
return { map { (split " ")[0, 1] } slurp $fn };
|
|
}
|
|
|
|
sub _touch() {
|
|
utime undef, undef, $fn;
|
|
}
|
|
|
|
sub command :Tab(openepaperlink) ($self, $cart, $command, @) {
|
|
if ($command =~ $mac_regex) {
|
|
my $mac2product = _read_oepl;
|
|
return REDO, $mac2product->{$command} if exists $mac2product->{$command};
|
|
}
|
|
|
|
$command eq 'openepaperlink' or return NEXT;
|
|
|
|
return "Product ID (or 'unlink')", sub ($self, $cart, $product_id, @) {
|
|
my $product;
|
|
|
|
if ($product_id ne 'unlink') {
|
|
$product = read_products->{$product_id} or return REJECT, "No such product.";
|
|
$product_id = $product->{id}; # don't use alias
|
|
}
|
|
|
|
return "Tag MAC", sub ($self, $cart, $mac, @) {
|
|
$mac =~ $mac_regex or return REJECT, "Malformed MAC.";
|
|
|
|
_create;
|
|
my $found = 0;
|
|
rewrite $fn, sub($line) {
|
|
my ($m) = split " ", $line;
|
|
return $line if $m ne $mac;
|
|
$found++;
|
|
return undef if $product_id eq 'unlink';
|
|
return "$mac $product_id\n" if $m eq $mac;
|
|
};
|
|
if (!$found and $product_id ne 'unlink') {
|
|
append $fn, "$mac $product_id\n";
|
|
}
|
|
_run $mac;
|
|
|
|
return ACCEPT;
|
|
};
|
|
};
|
|
}
|
|
|
|
sub hook_product_deleted($class, $product, $mtime, @) {
|
|
my $product_id = $product->{id};
|
|
|
|
-f $fn or return;
|
|
|
|
return with_lock {
|
|
$mtime >= (stat $fn)[9] or return;
|
|
|
|
my @macs;
|
|
rewrite $fn, sub($line) {
|
|
my ($mac, $id, $hwtype) = split " ", $line;
|
|
|
|
if ($id eq $product_id) {
|
|
push @macs, $mac;
|
|
return "$mac _DELETED_ $hwtype\n"
|
|
}
|
|
|
|
return $line;
|
|
};
|
|
@macs or return;
|
|
_run @macs;
|
|
|
|
sleep 1 if $mtime == time;
|
|
_touch;
|
|
};
|
|
}
|
|
|
|
sub hook_product_changed($class, $old, $new, $mtime, @) {
|
|
-f $fn or return;
|
|
|
|
return with_lock {
|
|
$mtime >= (stat $fn)[9] or return;
|
|
|
|
my $product2mac = { reverse %{ _read_oepl() } };
|
|
$product2mac->{ $new->{id} } or return;
|
|
|
|
_run $new->{id};
|
|
|
|
sleep 1 if $mtime == time;
|
|
_touch;
|
|
};
|
|
}
|