diff --git a/contrib/openepaperlink.pl b/contrib/openepaperlink.pl index dc413c9..8b4ae05 100644 --- a/contrib/openepaperlink.pl +++ b/contrib/openepaperlink.pl @@ -230,8 +230,12 @@ $products->{_NOTFOUND_} = { tag_price => "999.99", }; -my $fix = @ARGV && $ARGV[0] eq 'fix'; -shift if $fix; +my $fix_mode = @ARGV && $ARGV[0] eq 'fix'; +shift if $fix_mode; + +my $erase_mode = !$fix_mode && @ARGV && $ARGV[0] eq 'erase'; +shift if $erase_mode; +die "Usage: $0 erase ...\n" if $erase_mode and not @ARGV; my %fns; @@ -241,10 +245,12 @@ for my $line (@lines) { $product_id or next; (grep { $_ eq $product_id or $_ eq $mac } @ARGV) or next if @ARGV; - my $product = $products->{$product_id} || $products->{_NOTFOUND_}; + my $product = $erase_mode + ? { id => "_ERASE_", description => $mac } + : $products->{$product_id} || $products->{_NOTFOUND_}; my $needs_fixing = 0; - if ($fix or not $hwtype) { + if ($fix_mode or not $hwtype) { my $dbitem = get_dbitem($mac); next if not %$dbitem; $hwtype ||= $new_hwtype{$mac} = $dbitem->{hwType}; diff --git a/plugins/openepaperlink b/plugins/openepaperlink index 32920f9..cbc59df 100644 --- a/plugins/openepaperlink +++ b/plugins/openepaperlink @@ -42,6 +42,8 @@ sub command :Tab(openepaperlink) ($self, $cart, $command, @) { return "Tag MAC", sub ($self, $cart, $mac, @) { $mac =~ $mac_regex or return REJECT, "Malformed MAC."; + _run erase => $mac if $product_id eq 'unlink'; # while it's still in the .oepl + _create; my $found = 0; rewrite $fn, sub($line) { @@ -54,7 +56,7 @@ sub command :Tab(openepaperlink) ($self, $cart, $command, @) { if (!$found and $product_id ne 'unlink') { append $fn, "$mac $product_id\n"; } - _run $mac; + _run $mac unless $product_id eq 'unlink'; return ACCEPT; };