Commit graph

465 commits

Author SHA1 Message Date
Juerd Waalboer
b416c7be3e statiegeld: fix warning for undef $input on ^D 2024-02-11 04:14:05 +01:00
Juerd Waalboer
1105fbc3b2 v6.0.3: add warning for duplicates in revbank.products 2024-02-07 23:15:57 +01:00
Juerd Waalboer
4b6fa729ff Better check for lost controlling terminal
The eof check has to read a character. It happened to work, but it
was not the right way to check this.

Also added a warning for when someone does "ssh $host revbank" instead
of "ssh -t $host revbank".
2024-02-01 00:03:26 +01:00
Juerd Waalboer
ce93ea86fa Remove redundant use statements 2024-02-01 00:00:52 +01:00
Juerd Waalboer
cb463ba415 Fix #tag without value
This is weird. I'm sure I did test valueless tags. But apparently
between that and committing, the `?` quantifier in the regex got lost,
and I don't know how that happened.
2024-01-21 02:48:33 +01:00
Juerd Waalboer
55a83d9ceb v6.0.0: big revbank.products syntax change
Rationale in UPGRADING.md

It's a big change technically, but converting the format won't be hard
for admins.

There's a compatibility mode with loud warnings in case the file isn't
converted.
2024-01-20 03:50:10 +01:00
Juerd Waalboer
6aa33beedb statiegeld: fix warning 2024-01-18 18:16:26 +01:00
Juerd Waalboer
0db3e0ed81 Remove special cases for undef input
It's too buggy; in some edge cases it results in an infinite input loop
with 100% cpu. If you want to restart, use 'restart' instead of eof'ing
the input with ^D.
2024-01-05 23:44:32 +01:00
Juerd Waalboer
9c779d022a Whitespace 2023-12-28 21:02:07 +01:00
Juerd Waalboer
71d2179ea2 Better cursor position after input syntax error 2023-12-28 20:38:37 +01:00
Juerd Waalboer
e79d5ea2c0 tests README 2023-12-28 14:07:19 +01:00
Juerd Waalboer
bb11d94bd8 More quoting tests 2023-12-28 14:06:10 +01:00
Juerd Waalboer
7cfdc2b20d Unit test splitting, quoting, escaping 2023-12-28 04:10:38 +01:00
Juerd Waalboer
0b2ea27117 Move prompt code to RevBank::Prompt
Wanted to move split_input() to a package for unit testing, thought I'd
move prompt() too since the main executable has become messy, and this
would be a good first step in resolving that.
2023-12-28 03:45:28 +01:00
Juerd Waalboer
0cd178d950 Support control character escapes, add :AllChars attribute
Also:
- fix warning in RevBank::Plugin->Tab when there are attrs but no :Tab
- reconstruct quotes and escapes in prompt on retry
2023-12-28 03:07:40 +01:00
Juerd Waalboer
573731cb61 Allow quoted ";"
Leftover line of code from an earlier attempt.
2023-12-26 20:18:46 +01:00
Juerd Waalboer
0de7e2dda6 Tweak output (increase indendation) 2023-12-26 19:33:11 +01:00
Juerd Waalboer
200beb92bf UPGRADING.md: add info about failing checkout 2023-12-26 19:17:27 +01:00
Juerd Waalboer
d1c8c509f5 v5.0.0 2023-12-26 18:48:47 +01:00
Juerd Waalboer
98af489386 Limit character set for new usernames 2023-12-26 16:22:11 +01:00
Juerd Waalboer
344e7baabc UPGRADING: Retract advice for removing bareword filehandles
This won't be relevant for a few years. It's default disabled from Perl
v5.38 which hasn't landed in current Debian stable yet, and since I
intend to support Debian oldstable and stable, there are still many
years ahead of us before this becomes relevant!
2023-12-26 06:00:33 +01:00
Juerd Waalboer
212dba11c8 Remove unnecessary space in front of non-positive number 2023-12-26 05:47:32 +01:00
Juerd Waalboer
8f4c4b829e UPGRADING.md for v5.0.0 2023-12-26 05:47:29 +01:00
Juerd Waalboer
3670a72c31 Fix padding
Somehow the %8s for the amount got turned into %6s in commit ef5babd3,
which should only have changed the padding for the quantity.
2023-12-26 05:47:29 +01:00
Juerd Waalboer
09411bb6c0 give: Don't do checkout with description as username
Originally, this command didn't have a description parameter. Foo would
use `give xyzzy 10 foo`. Then, a description parameter was added. For
backwards compatibility, if you would enter a username (like `foo` in
this example) in the place of the description, it would finalize the
transaction using that.

However, as the user base grows, several reasonable descriptions exist as
user account names, and that would finalize the transaction under the
wrong user.

It's time to break backward compatibility. If you don't want to leave a
message (it's still optional), that can be done with `x` (like the
`donate` command), or in advanced mode, with `""`.

Because it's likely that people are still very much used to just leaving
the description out, if you enter something that happens to match an
existing username, the input will be rejected.

The current equivalent command line would be `give xyzzy 10 ""; foo` or
`give xyzzy 10 x; foo`. If the `;` (new since v5.0.0) is left out, the
trailing `foo` has to be confirmed with a second press of the enter key.
2023-12-26 05:47:29 +01:00
Juerd Waalboer
243b34e295 take: Improve error message
First arg must be a username, so "and not a valid amount" is misleading.
2023-12-26 05:47:29 +01:00
Juerd Waalboer
bdd92748ab Add some backtracking control
Not terribly necessary here, because inputs are short, but it's a
good practice. I wish there was a way to just disable backtracking for
the entire regex since this kind of pattern doesn't need any of it.
2023-12-26 05:47:29 +01:00
Juerd Waalboer
0d3866a881 Use new split_input() for -c 2023-12-26 04:39:21 +01:00
Juerd Waalboer
abe0f21c6a input: allow "abort" as input to a plugin
I can't imagine this to be important but throughout the years it's been
expected by users that "abort" can be quoted and passed to a plugin like
one that prints barcodes.

It's still not possible to pass a literal string `abort` to a follow-up
prompt, leaving this feature only available to advanced users who (hope
to) know what they're doing.
2023-12-26 04:31:08 +01:00
Juerd Waalboer
45f7ccbe28 Improve error message 2023-12-26 04:06:22 +01:00
Juerd Waalboer
a1e5d310a9 prompt: support "quoted" terms and \-escapes
With fancy retry, of course :)
2023-12-26 03:51:57 +01:00
Juerd Waalboer
f4d3b7fd5c undo: assert undoability instead of rolling back invalid undo
Making use of other recent changes, like that it's now safe to throw
exceptions during hook_checkout_prepare to abort the transaction.
2023-12-26 02:10:34 +01:00
Juerd Waalboer
6b04ecc256 undo: deal with checkout exception
The ancient decision to let undo perform the checkout by itself still
makes sense from a UX perspective, but keeps requiring specific handling
of edge cases.

In this case, the easiest way to deal with trailing input is to just
abort entirely.

Also: updated lib/RevBank/Plugins.pm to import 'isa' and get up to 5.32
level.
2023-12-26 02:08:24 +01:00
Juerd Waalboer
3c622ab6d4 Soft-require ';' after command arguments
Also: `next WORD if $word eq "\0SEPARATOR";` was in the wrong loop
(harmless until this change)
2023-12-26 01:01:04 +01:00
Juerd Waalboer
daf0077d0d Introduce ';' as command/transaction separator
There's a slight mismatch between what users experience as a command,
and how commands are defined in RevBank. Specifically, the common input
"<productid> <username>" is two separate commands: the first adds the
product to the cart, the second finalizes the transaction. This also
means that "<productid> <username> <productid> <username>" was four
separate commands, resulting in TWO transactions.

That's all fine and useful, but when using this advanced input method,
where input is split on whitespace, it lead to unexpected results if
there are insufficient arguments for the follow-up questions of a
command. For example, "take jantje 10 take pietje 10" will interpret the
second "take" as the description, then "pietje" als the first command of
a new transaction, and finally, "10" which is typically not a valid
command. It is much more likely that the user intended two separate
"take" commands and just forgot to provide the description argument, but
RevBank had no way of inferring that intent.

From this commit on, whenever the user intends to enter further input
words beyond the one that finalizes a transaction ($cart->checkout), a
';' is required. If trailing input is present, the checkout is refused
and the user gets a retry prompt.

Similarly, if the user indicates the intention of having finished a
command by inserting a ';' while there are insufficient words in the
command line to satisfy all follow-up prompts (command arguments), the
rest of the command line is rejected with a retry prompt.

There is, however, still no specific requirement for a ';' separator
after a command that does not finalize a transaction (e.g. "<productid>
<username>" or even "<productid> x2 <productid> <username>" remains
valid), or for a command that precedes a ';' to finalize a transaction
(e.g. "<productid>; <username>;" is also valid).

This change catches many, but not all, mistakes.
2023-12-26 00:21:01 +01:00
Juerd Waalboer
b5efbcdff9 More tests
- calc.t: more tests for invalid syntax
- fileio.t was generated a while ago
2023-12-25 05:02:02 +01:00
Juerd Waalboer
dd47bfbdf7 Remove redundant code
Harmless but distracting leftovers from a previous, more complicated, approach.
2023-12-25 04:47:27 +01:00
Juerd Waalboer
3dab71fdbf support simple arithmetic (only + and -) for monetary amounts 2023-12-25 00:33:46 +01:00
Juerd Waalboer
3470ebeb1c Explicitly use Perl 5.32
Was already implicitly required (since 59387ddb) because RevBank::Amount
uses the "isa" feature, which was introduced in Perl 5.32 (but no longer
experimental since 5.36, not 5.32 as the old comment said).

Perl 5.32 was released in June 2020, and ships with Debian bullseye
("oldstable") which was released in August 2021.
2023-12-12 00:28:17 +01:00
Juerd Waalboer
99154a4b62 Show deprecation notice for unbalanced entries 2023-11-24 06:22:30 +01:00
Juerd Waalboer
ff819c25e2 No space before first word when it is REJECTed
Cosmetic bug fix
2023-11-24 06:20:34 +01:00
Juerd Waalboer
dbe75efe7f Remove references to deprecated calling convention
Deprecated 4 years ago, no longer supported since 2 years ago.
2023-11-24 05:52:04 +01:00
Juerd Waalboer
52749df5f3 Ignore all hook exceptions except in hook_checkout_prepare
A space had a custom plugin that died during hook_checkout, which caused
the CHECKOUT lines to be logged without the corresponding BALANCE, and
indeed no account balances were updated. While the plugin had a bug, it
should not cause a half transaction in RevBank.

After some hesitation, I went with ON ERROR RESUME NEXT because if a
hook throws an exception, that should not interfere with other plugins
(the hook can return ABORT if this it was intentional), including the
calling plugin. An error message is printed (but not logged... TODO: add
hook_plugin_fail to plugins/log) but the show must go on.

During hook_checkout_prepare, however, nothing is set in stone yet, so
this could be used for something that might die, and this instance of
call_hooks() is now the one place where a failing hook should result in
the transaction getting aborted. For this, call_hooks() now returns a
success status boolean. Maybe it would make sense in more places, but I
didn't identify any such calls yet.

RevBank::Cart->checkout used to return a success status boolean, but it
could just as well just die (indirectly, to abort the transaction) since
it can't be called a second time within the same transaction anyway
(because ->set_user must be called exactly once), so continuing with the
same transaction can't result in anything useful anyway.

In some places, error messages were slightly improved to contain a bit
more information.
2023-11-24 05:15:22 +01:00
Juerd Waalboer
0c2b24bdc1 Add Users.pod to README.md 2023-11-05 22:16:31 +01:00
Juerd Waalboer
a859b9640e Document tiny semantics change for v4.2.0 2023-11-05 21:26:20 +01:00
Juerd Waalboer
aa589d59cb Document RevBank::Users (accounts) 2023-11-05 21:19:39 +01:00
Juerd Waalboer
7dd94eda9b Add assertions
There should already be external checks to prevent double entries in
revbank.accounts, but better safe than sorry.
2023-11-05 21:19:17 +01:00
Juerd Waalboer
d54428b092 Add support for user-accessible accounts that are excluded from grandtotal 2023-11-02 05:33:33 +01:00
Juerd Waalboer
df8c84672d tail/users: fix warning when used with old log files 2023-11-02 04:45:03 +01:00
Juerd Waalboer
1156864fd2 v4.1.0
- New internal feature: $plugin->Tab($method)
- `adduser` has an additional check
- Tiny bug fixes
2023-11-02 04:39:57 +01:00