diff --git a/Course3/Lab4/validations.py b/Course3/Lab4/validations.py index b18de65a2e..68c3479a9e 100644 --- a/Course3/Lab4/validations.py +++ b/Course3/Lab4/validations.py @@ -2,23 +2,36 @@ import re + + def validate_user(username, minlen): + """Checks if the received username matches the required conditions.""" + if type(username) != str: + raise TypeError("username must be a string") + if minlen < 1: + raise ValueError("minlen must be at least 1") - + + + # Usernames can't be shorter than minlen + if len(username) < minlen: + return False - # Usernames can only use letters, numbers, dots and underscores + + + + # Usernames can only use lowercase letters, numbers, dots, and underscores + if not re.match('^[a-z0-9._]*$', username): + return False - # Usernames can't begin with a number - if username[0].isnumeric(): - return False - return True + # Usernames can't begin with a number, dot, or underscore