An authentication solution for SurrealDB.
Start Development Database, Non-Persist, No-Auth
bash
docker run --rm --pull always -p 8000:8000 surrealdb/surrealdb:latest start
Run test scripts
bash
scripts/tests/test.<test-name>.sh
Define a database schema to store user information. At a minimum, this schema should include fields for a user ID, username, and hashed password.
id
, username
, hashed_password
, email
, and created_at
.Implement the user registration feature, which allows new users to create accounts.
Implement the user authentication feature, which allows users to log in to their accounts.
Implement session management to maintain a user's authenticated state across multiple requests.
Implement authorization to control access to certain resources based on a user's roles or permissions.
Implement a logout feature to allow users to end their sessions.
Test your authentication system thoroughly to identify and fix any vulnerabilities.
Deploy your authentication service to a production environment, ensuring to use secure connections (HTTPS) and following other security best practices.
Regularly update your authentication system to patch vulnerabilities and improve security.
Remember, building a secure authentication system from scratch can be challenging, and it's often a good idea to use established libraries or frameworks to help with this. Also, always ensure to follow the latest security best practices and guidelines.
sql
CREATE TABLE users (
id SERIAL PRIMARY KEY, -- Unique identifier for each user
username VARCHAR(50) UNIQUE NOT NULL, -- Unique username
email VARCHAR(100) UNIQUE NOT NULL, -- Unique email address
hashed_password VARCHAR(255) NOT NULL, -- Hashed password (never store plain text passwords)
salt VARCHAR(255), -- Salt for the hash function (if not included in the hashed password)
first_name VARCHAR(100), -- First name (optional)
last_name VARCHAR(100), -- Last name (optional)
date_of_birth DATE, -- Date of birth (optional, consider privacy implications)
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, -- Account creation timestamp
updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, -- Account update timestamp
last_login TIMESTAMP, -- Last login timestamp (optional)
status ENUM('active', 'inactive', 'banned', 'deleted') NOT NULL, -- Account status
role ENUM('user', 'admin', 'editor') NOT NULL DEFAULT 'user', -- User role (for permission levels)
failed_login_attempts INT DEFAULT 0, -- To track failed login attempts (for security features)
reset_password_token VARCHAR(255), -- Token for reset password functionality (optional)
reset_password_expiry TIMESTAMP, -- Expiry time for reset password token (optional)
email_verified BOOLEAN DEFAULT FALSE, -- To track if the email address is verified (optional)
email_verification_token VARCHAR(255), -- Token for email verification (optional)
CONSTRAINT chk_status CHECK (status IN ('active', 'inactive', 'banned', 'deleted')), -- Check constraint for status
CONSTRAINT chk_role CHECK (role IN ('user', 'admin', 'editor')) -- Check constraint for role
);