Commit graph

23 commits

Author SHA1 Message Date
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
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
d194cb8dfa statiegeld_tokens: Fix data loss on undo
Wrote one big line because of missing \n.
2023-04-14 21:01:01 +02:00
Juerd Waalboer
c71455fb0a Broaden assertion
abundance of caution etc
2023-04-13 23:10:51 +02:00
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
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
8e9a037d1c Annoy user when they type 'y' instead of 'yes' :) 2023-02-13 02:28:58 +01:00
Juerd Waalboer
1696028ce3 statiegeld_tokens: log creation, use, and expiry of tokens 2023-02-02 01:24:30 +01:00
Juerd Waalboer
147bfe7045 Make error message fit in 80 chars 2023-01-25 04:34:17 +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
32470ff92b Extra newline 2023-01-19 03:16:57 +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
6180bf6ea5 Add new hook_checkout_prepare, rollback earlier change of hook_checkout
In hindsight, it was a bad idea to allow manipulating the cart (entries)
in hook_checkout, because that hook is used by the `log` plugin. You now
get unused entries in the log.

Although that plugin should maybe have used hook_checkout_done, existing
log file readers (including scripts) and custom plugins may depend on
the CHECKOUT items in the log being before the BALANCE items.
2023-01-16 03:52:00 +01:00
Juerd Waalboer
ca03cb95d4 New plugin statiegeld_tokens
Activating statiegeld_tokens will limit the use of the statiegeld plugin
for container deposit refunds to what was bought at this venue.

Still needs documentation.

Changes to 'statiegeld' and 'undo' were made to support the new
plugin, specifically:

- metadata (attributes) added in $cart->add, for the statiegeld_tokens
  plugin to use.
- statiegeld plugin now shares a global variable (configuration).
- undo can now be rolled back during hook_checkout.
2023-01-16 03:08:42 +01:00