You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.4 KiB
55 lines
1.4 KiB
class User < Table
|
|
def initialize(db)
|
|
super db, "User"
|
|
end
|
|
|
|
# Find user by ID, returns multiple results if multiple IDs exist
|
|
# (which wont happen since IDs are unique)
|
|
def find_by_id(id)
|
|
resp = self.get("*", "id = ?", id)
|
|
end
|
|
|
|
# Find user by email, same as above but for emails.
|
|
# Also unique
|
|
def find_by_email(email)
|
|
resp = self.get("*", "email = ?", email)
|
|
end
|
|
|
|
private def validate_credentials(email, name, password, password_confirm)
|
|
# Check email
|
|
check_email_dupe = self.find_by_email(email).length <= 0
|
|
check_email_valid = email.match(EMAIL_REGEX) != nil
|
|
|
|
# Name
|
|
check_name_len = name.length >= MIN_NAME_LEN
|
|
|
|
# Password
|
|
check_pass_equals = password == password_confirm
|
|
check_pass_len = password.length >= MIN_PASSWORD_LEN
|
|
end
|
|
|
|
# Register a new user
|
|
# Returns: success?, data
|
|
# TODO: input checks & ERRORS!
|
|
def register(email, name, password, password_confirm)
|
|
check_email = self.find_by_email(email)
|
|
if( check_email.length > 0 ) then
|
|
# Email taken
|
|
return false, {error_msg: "Email already in use!"}
|
|
else
|
|
if( password == password_confirm ) then
|
|
pw_hash = BCrypt::Password.create(password)
|
|
data = { # payload
|
|
name: name,
|
|
email: email,
|
|
pw_hash: pw_hash
|
|
}
|
|
|
|
resp = self.insert(data) # insert into the db
|
|
return true, resp
|
|
else
|
|
return false, {error_msg: "Password mismatch!"}
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|