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`.
This commit is contained in:
Juerd Waalboer 2024-04-25 00:03:00 +02:00
parent 4e2115f265
commit 33b08f99ea
2 changed files with 12 additions and 4 deletions

View file

@ -98,13 +98,18 @@ sub is_special($username) {
return $username =~ /^[-+*]/;
}
sub parse_user($username) {
sub parse_user($username, $allow_invalid = 0) {
return undef if is_hidden($username);
my $users = _read();
return exists $users->{ lc $username }
? $users->{ lc $username }->[0]
: undef;
exists $users->{ lc $username }
or return undef;
$allow_invalid or defined balance($username)
or return undef;
return $users->{ lc $username }->[0];
}
sub assert_user($username) {

View file

@ -27,6 +27,9 @@ sub username($self, $cart, $name, @) {
return REJECT, "That name already exists."
if defined parse_user($name);
return REJECT, "That name is not available."
if defined parse_user($name, 1);
for my $plugin (RevBank::Plugins->new) {
my $id = $plugin->id;