Commit graph

457 commits

Author SHA1 Message Date
Juerd Waalboer
33f5cc1b21 Products.pm: Document #OPAQUE and read_products 2024-12-26 03:34:34 +01:00
Juerd Waalboer
3c6ee11abd Update example product list 2024-12-26 03:16:55 +01:00
Juerd Waalboer
b22ac11476 read_products: do calculate total_price for alias of addon
There was a bug with the example product defined as:

    +smk,matekrat  1.50@+statiegeld  "..."

Only the id `+smk` was considered, and no total price was calculated. This
broke the accessible id `matekrat`. The fix is to consider the keys of
the products in the hash, instead of the `id` field.
2024-12-26 03:13:19 +01:00
Juerd Waalboer
de5d3bc925 Update UPGRADING.md 2024-12-26 03:08:56 +01:00
Juerd Waalboer
763a8857ad Move documentation for revbank.products from plugins/ to lib/ 2024-12-26 02:24:19 +01:00
Juerd Waalboer
b22cc4c997 Move price calculation from products plugin to RevBank::Products
- Adds price tag calculation. Addons tagged #OPAQUE are excluded from the
price tag.
- BREAKING CHANGE: instead of abusing $product->{price} for a percent,
$product->{percent} is no longer a boolean but the actual percent, so
$product->{price} is the calculated amount.

The total price of a product is now calculated in two places, once when
reading the product list, and once as the result of adding the entry and
its contras when adding the product. Although this involves some
duplication and the sums are calculated in different ways, it hinges on
the existing assertion to make sure that the entry is balanced to ensure
that both sums are the same. Because of that, this code duplication
actually strengthens the integrity.
2024-12-26 01:36:55 +01:00
Juerd Waalboer
a450aa7468 Use read_products in new namespace
(Would also work without this change, but indirectly through the
products plugin which imports this symbol)
2024-12-25 23:50:03 +01:00
Juerd Waalboer
7c5431fba4 Move read_products() from plugin to core
Additional changes:
- Parametrized $filename and $default_contra
- Add ->{config} to product hashes, which is the re-serialized config line
2024-12-25 23:43:03 +01:00
Juerd Waalboer
4abce51769 revspace_lasercutter: fix direction
Oops, lasercutting should cost money, not generate it...
2024-11-29 05:44:30 +01:00
Juerd Waalboer
3b6f11f0dd idle: suspend beeping on text input (cursor move) 2024-11-27 02:49:20 +01:00
Juerd Waalboer
5f95076af8 New plugin: revspace_lasercutter 2024-11-18 23:48:02 +01:00
Juerd Waalboer
f8736cbde7 nomoney: no ansi color in logs 2024-11-18 23:18:02 +01:00
Juerd Waalboer
fab19ba6d0 nomoney: add logging 2024-11-18 23:09:03 +01:00
Juerd Waalboer
bfb2d712e7 nomoney: limit scope for variable 2024-11-17 03:37:37 +01:00
Juerd Waalboer
988a161016 nomoney: remove repeated word 2024-11-17 03:13:33 +01:00
Juerd Waalboer
ee8855bfc7 nomoney: reduce indentation complexity, fix comment 2024-11-17 03:11:01 +01:00
Juerd Waalboer
daffe920ba nomoney: remove unused labels
These loop control labels are leftovers from an earlier, more complicated, attempt
2024-11-17 03:01:40 +01:00
Juerd Waalboer
a9040dcca1 nomoney: fix memory leak 2024-11-17 02:59:19 +01:00
Juerd Waalboer
7fc6503679 nomoney: make more straightforward 2024-11-17 02:57:30 +01:00
Juerd Waalboer
398576a688 Bump to v7.1.0 2024-11-17 02:53:01 +01:00
Juerd Waalboer
bf4ec30642 nomoney plugin
Prevents (parts of) transactions if a user does not have sufficient
money.

The default configuration allows negative balances for buying products
and for multi-user takes.
2024-11-17 02:52:38 +01:00
Juerd Waalboer
5d8ff672f1 Don't show intermediate cart results
Also, move "Done:" display from users plugin to global messages
2024-11-17 01:16:16 +01:00
Juerd Waalboer
807d255b53 Expose deltas
In preparation for future plugin
2024-11-17 01:15:18 +01:00
Juerd Waalboer
a303cad131 Remove support for unbalanced transaction, release v7.0.0 2024-11-17 01:14:43 +01:00
Juerd Waalboer
7990c43371 given/take: Change verb tense
When the transaction is still pending, the past tense is incorrect.

This is not relevant for the contras, because those descriptions are
only displayed in logs, after the fact.
2024-11-17 01:10:58 +01:00
Juerd Waalboer
f16e406063 Revert "Handle huge numbers better"
This reverts commit ef0039bc33.

Abysmal performance: revbank2beancount went from 0.7 to 11 seconds for
revspace's 2024 .revbank.log to date.
2024-08-28 06:41:02 +02:00
Juerd Waalboer
599bf1bc98 Fix unit tests for fileio: create tempfiles in cwd
RevBank uses atomic file replacement by creating a new file and renaming
it over the old one. The newly created file is always in cwd, and
for the atomic rename() to work it must reside on the same filesystem as
the file it's replacing. Since File::Temp does the right thing and
creates files in /tmp by default, and /tmp is usually on a different
filesystem, these unit tests didn't actually work.

I don't know why they did work in the past. There doesn't seem to have
been any relevant change (or any at all, for that matter) to File::Temp,
which has had this behavior for ages. But I can't imagine that my /tmp
has only recently become a tmpfs mount either.

In any case, the issue is fixed by making File::Temp do the wrong thing,
which is to create its files in the cwd.
2024-08-28 05:35:14 +02:00
Juerd Waalboer
ef0039bc33 Handle huge numbers better
A sufficiently big number, i.e. longer than a long long, had interesting
effects. Perl would promote it to a float, and format it as -1 in
sprintf, which RevBank::Amount didn't handle correctly. In extreme cases
the number got rounded to Inf and would no longer round-trip.

As a result, numbers returned by RevBank::Amount are now Math::BigInt
and Math::BigFloat objects. Those should be transparent to all existing
code. It's amazing to see the unit tests pass.

I don't think there is any actual use case in RevBank for numbers this
large and I don't think anyone will have actually encountered the
aforementioned weird effects. Mostly, the input would be parsed with
parse_amount which refuses any number greater than 99900 anyway. Only
where parse_string was used directly, such large numbers could actually
have been used, but in stock RevBank that is only done when reading the
accounts file.

This change also introduces a new global function parse_any_amount that
is like parse_amount but doesn't complain about negative or large
numbers, to further improve the adduser plugin (see previous commit) in
insane edge cases. It differs from RevBank::Amount->parse_string in that
it does support addition and subtraction operators.
2024-08-28 05:19:02 +02:00
Juerd Waalboer
f6f5d66bdc adduser: improve error message for large numeric input
Old message was not as intended:

> Name for the new account: 123123123123
> That's way too much money. Enter 'abort' to abort.

Fixed:

> Name for the new account: 123123123123
Sorry, that's too numeric to be a user name. Enter 'abort' to abort.
2024-08-28 03:35:19 +02:00
Juerd Waalboer
04cf728010 Inflation
Roughly 4%
2024-05-17 22:48:18 +02:00
Juerd Waalboer
459093dba9 v6.2.0: Use reject/retry instead of exception for bad amount
Since the first versions of RevBank, negative and huge amounts are
handled centrally, and since v2 (2013) they've been implemented through
an exception that caused the pending transaction to be aborted. Since v3
(2019), RevBank has had a retry mechanism for rejected input to improve
the user experience, but it required a REJECT return message from a
plugin, not an exception. Now there's an exception class to trigger the
same semantics.
2024-05-09 03:09:27 +02:00
Juerd Waalboer
62d3e3a8e4 Improve error messages
Commit 52749df5 added more information to error messages to aid
debugging, but most plugin follow-up questions are code references, not
method names, and they would result in an ugly CODE(0x...) in the error
message.

This change adds the fully qualified name of plugin methods. Not sure if
I like that, I might drop the RevBank::Plugin:: prefix at some point.
2024-05-09 03:04:34 +02:00
Juerd Waalboer
7f8603748d v6.1.5: silence warning in Perl < 5.36 2024-04-28 23:31:54 +02:00
Juerd Waalboer
e3b054272d v6.1.4: fix bug (0.00 balance account not usable)
Introduced in f2d09b4d
2024-04-28 03:43:20 +02:00
Juerd Waalboer
1c9c35d535 v6.1.3: fix grandtotal for invalid balances
This somehow escaped change with the introduction of RevBank::Amount in
v3.2 in 2021, which only now became relevant due to the recent change in
v6.1.0 which turns invalid account balances into a feature.
2024-04-25 01:34:47 +02:00
Juerd Waalboer
6c74097707 v6.1.2: fix retry prompt
Broken since 2b0f8feb.
2024-04-25 01:08:15 +02:00
Juerd Waalboer
f2d09b4da5 v6.1.1: Feature: warning messages for invalid accounts 2024-04-25 01:08:15 +02:00
Juerd Waalboer
33b08f99ea v6.1.0: improve handling of invalid balance in revbank.accounts
This small change makes it possible to reserve an account name by just
giving it an invalid balance in `revbank.accounts`.
2024-04-25 01:08:15 +02:00
Juerd Waalboer
4e2115f265
Merge pull request #19 from Peetz0r/patch-1
Update deposit_iban_qr message about supported banks
2024-04-12 01:49:02 +02:00
Juerd Waalboer
c7c7977a80 Fix bug: double entries in history
Introduced in 2b0f8feb.
2024-04-03 00:44:14 +02:00
Peter
f044be2215
Update deposit_iban_qr message about supported banks
ASN and N26 tested, SNS assumed (since it's mostly the same app as ASN)
2024-03-10 13:03:16 +01:00
Juerd Waalboer
2b0f8febf0 v6.0.4: use readline's internal loop
This fixes the bug that empty lines would be inserted after each prompt,
starting from the first use of ^D.

Readline considers ^D end-of-file even when it's not, and for whatever
reason then adds a \n after BRACK_PASTE_FINI, which results in empty
lines after subsequent prompts.

With readline's internal loop, rl_found_eof gets reset to false, but
users of a custom loop don't get that luxury, and Term::ReadLine::Gnu
doesn't expose rl_found_eof (which was added to readline's API only a
few years ago) to do it manually.

One workaround, used briefly but not committed, would be to disable
bracketed paste.

A better workaround, as implemented by this commit, is to abandon the
custom loop and use readline's blocking call instead.
2024-02-11 04:14:05 +01:00
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