Commit graph

465 commits

Author SHA1 Message Date
Juerd Waalboer
2b0fd9b22c statiegeld: case insensitive usernames
Shouldn't usually matter because these are already normalized, but would
matter if the case of an existing username ever changes.
2023-04-08 22:26:50 +02:00
Juerd Waalboer
2015e6362d Some more tests by ChatGPT
This is hilarious.
2023-03-16 00:30:48 +01:00
Juerd Waalboer
b052292a22 ChatGPT wrote some unit tests and found a small bug.
When asked to fix the bug, it came up with a different regex, which
would completely change what's valid and what's not, so that's totally
wrong:

    /^\s*(-)?([0-9]+)(?:[,.]([0-9]{1,2}))?\s*$/

When asked to fix it in another way, without changing the regex, it
suggested stripping the sign completely, which is even more wrong.

So I fixed it myself :)
2023-03-16 00:00:26 +01:00
Juerd Waalboer
06d4591e8a Fix tab completion bug
When there were several matches that shared the same common prefix, but
with a different case, readline would eat the input from the case
sensitive longest common prefix up to where the case began to differ.

e.g. when "ibutton" and "iButton-touwtje" were available, typing
"ibu<tab>" would truncate the input to just "i" and on second tab show
both matches, but without ever completing beyond the "i".
2023-02-22 01:39:13 +01:00
Juerd Waalboer
d0f3debbe5 New plugin: cash_drawer (example code; incomplete) 2023-02-14 00:31:41 +01:00
Juerd Waalboer
ba6fa8e305 statiegeld_tokens: add comment to explain rationale 2023-02-13 02:52:39 +01:00
Juerd Waalboer
0e1aa77fe5 statiegeld_tokens: simplify void
- No more red messages
- Accept "yes" case insensitively
- Change entry description and amount so the voiding is logged, which is
  more code but less complex than passing an attribute to be used during
  checkout.
2023-02-13 02:44:02 +01:00
Juerd Waalboer
ff4ffd16f8 statiegeld: use correct id for deduplication key
Bug introduced in fffb2d72
2023-02-13 02:43:24 +01:00
Juerd Waalboer
8e9a037d1c Annoy user when they type 'y' instead of 'yes' :) 2023-02-13 02:28:58 +01:00
Juerd Waalboer
1ecb2286df Fix comment 2023-02-12 22:09:24 +01:00
Juerd Waalboer
3127212fad revbank.plugins overhaul
For a slightly better experience for new installations. Admins of
existing revbank installations should read UPGRADING.md for information
on how to update the revbank.plugins file.

- withdraw is now under the specific commands
- more non-commands things moved to the first category
- some plugins added, defaults changed
2023-02-12 22:01:55 +01:00
Juerd Waalboer
6b2d8fdee3 Move deprecation warning to separate plugin 2023-02-12 22:01:31 +01:00
Juerd Waalboer
fffb2d72e9 Fix deduplication bug, refactor deduplication to own plugin
(Bumps version to 3.8 because admins should update the plugin list.)

Deduplication didn't work on quantified additions, i.e. if you added
"20x clubmate" when there was already clubmate in the cart, it would add
just ONE item, and have a lingering message that the next thing would be
multiplied by 20.

This old bug was especially annoying if there is a barcode "20x
clubmate" to scan 20 bottles (which is the size of a crate), and this is
repeated.

The fix also uncovered another bug: newly added entries were selected
too early. There are two hooks, hook_add_entry and hook_added_entry, and
of course the selection should happen in between, not before the former.
No entry in UPGRADING.md, because I think it is extremely unlikely that
any plugin author will have used the selection feature yet, which is
very new.
2023-02-12 17:53:14 +01:00
Juerd Waalboer
248681631d More contrast
Some terminals (notably: linux non-framebuffer vt) do support colors,
but do not support the bold/bright attribute.
2023-02-12 17:51:17 +01:00
Juerd Waalboer
6b0474818e Add window_title plugin
Sets screen/xterm window title (unfortunately, not the window *name* in
tmux/screen)
2023-02-02 01:42:41 +01:00
Juerd Waalboer
1696028ce3 statiegeld_tokens: log creation, use, and expiry of tokens 2023-02-02 01:24:30 +01:00
Juerd Waalboer
9045eb7ff4 Don't tab complete invalid input
Products and users that begin with `+` are internal, as are users that
begin with `-`. These should be excluded from tab completion.
2023-01-30 17:19:50 +01:00
Juerd Waalboer
382940bfc9 Show unmodified input in error message 2023-01-30 06:12:23 +01:00
Juerd Waalboer
10eeabf707 Hidden feature for buying products via statiegeld terminal 2023-01-30 06:11:36 +01:00
Juerd Waalboer
416c722511 Pad differently
Experimental code (never committed) had ANSI escape sequences there, and
required manual padding. Those were gone, but I forgot to change the
manual padding into normal sprintf padding.

This also makes it explicit that the left alignment is actually intended
here. (Actually looks better here.)
2023-01-30 05:05:26 +01:00
Juerd Waalboer
a555c1ddf1 statiegeld: increase quantity instead of adding more of the same 2023-01-30 05:00:43 +01:00
Juerd Waalboer
a93b825836 Remove 'plus' plugin
The functionality is redundant with the 'repeat' plugin.
I don't think anyone actually uses 'plus'.
2023-01-30 04:46:51 +01:00
Juerd Waalboer
e5c004958f Always show quantity if quantity changed 2023-01-30 04:42:12 +01:00
Juerd Waalboer
99435cef17 Highlight change; apply operators to last scanned instead of last added 2023-01-30 04:40:42 +01:00
Juerd Waalboer
ef5babd3df More compact display for repeated products
Might revert later
2023-01-30 03:59:42 +01:00
Juerd Waalboer
fefa371e18 Move code around
With the weird hack gone (see previous commit), the code could be
written in a more straight-forward order, with some duplication removed.
2023-01-29 23:05:52 +01:00
Juerd Waalboer
5e5c27a203 Remove dead code
As a side effect of a7a5f14e, "123 x <product>" (with a space between the
number and the operator) is no longer supported. Breaking that was
unintentional, but since it was an undocumented feature and unintuitive
hack anyway, the feature won't come back.

When it still worked, it was implemented by *converting* a raw amount
(withdrawal or unlisted product, which you could still enter as just a
number -- since the aforementioned commit you need to be explicit and
use `withdraw` or `unlisted`) into a stub that would finally apply a
repetition when adding something else.
2023-01-29 22:52:02 +01:00
Juerd Waalboer
af5567da8b Typo in documentation 2023-01-29 19:28:08 +01:00
Juerd Waalboer
7213b0a332 statiegeld: change prompt 2023-01-26 00:17:13 +01:00
Juerd Waalboer
44d0cb9b69 Don't repeat same description for statiegeld-only products 2023-01-25 04:37:17 +01:00
Juerd Waalboer
147bfe7045 Make error message fit in 80 chars 2023-01-25 04:34:17 +01:00
Juerd Waalboer
8bbca724a3 Document statiegeld_tokens 2023-01-24 21:45:05 +01:00
Juerd Waalboer
8c94410924 Move and extend statiegeld documentation 2023-01-20 18:42:04 +01:00
Juerd Waalboer
4603a1569f statiegeld: don't allow manual entry of hidden addons 2023-01-20 18:37:00 +01:00
Juerd Waalboer
8a3a76e0d0 statiegeld_tokens: implement expiry
Done in the _write routine, which means tokens will not expire the exact
moment they should, but the first transaction after that. And if that
transaction is done by the user, they're in luck as expiry checking
happens after using them tokens.
2023-01-20 18:07:41 +01:00
Juerd Waalboer
10d1965bf0 Add 'void' command 2023-01-19 05:26:58 +01:00
Juerd Waalboer
f479060576 Fix bug: ->changed is getter only, not a setter 2023-01-19 05:24:50 +01:00
Juerd Waalboer
e1aed5cbdf statiegeld: document deposit command 2023-01-19 03:35:14 +01:00
Juerd Waalboer
32470ff92b Extra newline 2023-01-19 03:16:57 +01:00
Juerd Waalboer
a2fd94241a statiegeld: better prompt hijacking 2023-01-19 03:05:36 +01:00
Juerd Waalboer
2bbaf20366 Improve text in idle message 2023-01-19 03:05:36 +01:00
Juerd Waalboer
16d530ae16 Allow hook_prompt to mutate the prompt, like before, and use that
This functionality was accidentally broken by eed0db78

Also: ignore readline terminal sequence (\x01...\x02) in detection of ">"
2023-01-19 03:04:35 +01:00
Juerd Waalboer
5e91aaff3d statiegeld: support statiegeld-only products 2023-01-19 01:51:40 +01:00
Juerd Waalboer
4d5eae3ad7 statiegeld_tokens: new token format, rename id to token_type
Added some fields for debugging and maybe future use.
2023-01-19 01:34:12 +01:00
Juerd Waalboer
bd0ebce71a Fix undef warning 2023-01-18 03:28:22 +01:00
Juerd Waalboer
b19609c6f6 Show deposit tokens on user info
Also, singular without s
2023-01-17 20:29:17 +01:00
Juerd Waalboer
5b0c85d770 Refactor read_products and its callers
- Promote to public function since it's used in other plugins anyway
- Move resolving of addons to read_products (print errors immediately)
- Cache product list based on mtime; mostly to reduce the amount of spam
  from errors as performance was never an issue.
- Cache product object in cart entry, so statiegeld_tokens plugin
  doesn't have to do the lookup all over again.
2023-01-17 20:28:35 +01:00
Juerd Waalboer
fdd098e215 Full stop 2023-01-16 05:00:17 +01:00
Juerd Waalboer
d44654e98a statiegeld_tokens: reuse code
Since that logic was factored into its own sub and is basically the same
as what was used here, let's use it here too.

This is still somewhat duplicated functionality from products::command.
Should adding addons be done in _read_products instead?
2023-01-16 04:53:50 +01:00
Juerd Waalboer
e17c092efe Allow statiegeld return via deposit command
May come in handy if there the bottle return revbank machine is dead.
2023-01-16 04:38:10 +01:00