v6.1.1: Feature: warning messages for invalid accounts

This commit is contained in:
Juerd Waalboer 2024-04-25 00:55:12 +02:00
parent 33b08f99ea
commit f2d09b4da5
5 changed files with 36 additions and 19 deletions

View file

@ -13,7 +13,20 @@ my $filename = "revbank.accounts";
sub _read() { sub _read() {
my @users; my @users;
/\S/ and push @users, [split " "] for slurp $filename; for my $line (slurp $filename) {
$line =~ /\S/ or next;
# Not using RevBank::Prompt::split_input to keep parsing by external
# scripts simple, since so many such scripts exist.
my @split = split " ", $line;
if ($split[1] =~ /^!/) {
# Special case: use rest of the line (see POD).
@split = split " ", $line, 2;
}
push @users, \@split;
}
my %users; my %users;
for (@users) { for (@users) {
@ -103,24 +116,31 @@ sub parse_user($username, $allow_invalid = 0) {
my $users = _read(); my $users = _read();
exists $users->{ lc $username } my $user = $users->{ lc $username } or return undef;
or return undef;
if ($user->[1] =~ /^!(.*)/) {
warn "$username: Invalid account ($1).\n";
}
$allow_invalid or defined balance($username) $allow_invalid or defined balance($username)
or return undef; or return undef;
return $users->{ lc $username }->[0]; return $user->[0];
} }
sub assert_user($username) { sub assert_user($username) {
my $users = _read(); my $users = _read();
return exists $users->{ lc $username } my $user = $users->{ lc $username };
? $users->{ lc $username }->[0]
: (is_hidden($username) if ($user) {
? create($username) Carp::croak("Account $username can't be used") if not balance $username;
: Carp::croak("No such user ($username)") return $user->[0];
); }
return create $username if is_hidden $username;
Carp::croak("No such user ($username)")
} }
1; 1;

View file

@ -80,6 +80,10 @@ Every account name must be unique. A file with duplicate names is not valid and
The account balance is a number with two decimal digits. Positive numbers may have a C<+> sign. Negative number have a C<-> sign. The account balance is a number with two decimal digits. Positive numbers may have a C<+> sign. Negative number have a C<-> sign.
If the value in this field is not a valid number, the account is treated as non-existent by most of RevBank, while still being unavailable for C<adduser>.
If the value begins with a C<!> character, the I<rest of the line> is taken as a description of why the account name is not available and printed as a warning when the account name is used.
=item * Last use timestamp =item * Last use timestamp
Local datetime of the last update of this account. Local datetime of the last update of this account.

View file

@ -24,9 +24,6 @@ sub username($self, $cart, $name, @) {
return REJECT, "Sorry, that's too numeric to be a user name." return REJECT, "Sorry, that's too numeric to be a user name."
if defined parse_amount($name); if defined parse_amount($name);
return REJECT, "That name already exists."
if defined parse_user($name);
return REJECT, "That name is not available." return REJECT, "That name is not available."
if defined parse_user($name, 1); if defined parse_user($name, 1);

View file

@ -27,11 +27,7 @@ sub read_products() {
my @split = RevBank::Prompt::split_input($line); my @split = RevBank::Prompt::split_input($line);
if (grep /\0SEPARATOR/, @split) { if (not @split or ref $split[0] or grep /\0/, @split) {
warn "Invalid character in $filename line $linenr.\n";
next;
}
if (grep /\0/, @split) {
warn "Invalid value in $filename line $linenr.\n"; warn "Invalid value in $filename line $linenr.\n";
next; next;
} }

View file

@ -16,7 +16,7 @@ use RevBank::Messages;
use RevBank::Cart; use RevBank::Cart;
use RevBank::Prompt; use RevBank::Prompt;
our $VERSION = "6.0.5"; our $VERSION = "6.1.1";
our %HELP1 = ( our %HELP1 = (
"abort" => "Abort the current transaction", "abort" => "Abort the current transaction",
); );