mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-18 20:59:39 +02:00
- Replace API keys with OAuth2 tokens for mobile apps - Add device tracking and management for mobile sessions - Implement 30-day token expiration with refresh tokens - Add MFA/2FA support for mobile login - Create dedicated auth endpoints (signup/login/refresh) - Skip CSRF protection for API endpoints - Return plaintext tokens (not hashed) in responses - Track devices with unique IDs and metadata - Enable seamless native mobile experience without OAuth redirects This provides enterprise-grade security for the iOS/Android apps while maintaining a completely native authentication flow. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
94 lines
2.4 KiB
Ruby
94 lines
2.4 KiB
Ruby
class ApiKey < ApplicationRecord
|
|
belongs_to :user
|
|
|
|
# Use Rails built-in encryption for secure storage
|
|
encrypts :display_key, deterministic: true
|
|
|
|
# Constants
|
|
SOURCES = [ "web", "mobile" ].freeze
|
|
|
|
# Validations
|
|
validates :display_key, presence: true, uniqueness: true
|
|
validates :name, presence: true
|
|
validates :scopes, presence: true
|
|
validates :source, presence: true, inclusion: { in: SOURCES }
|
|
validate :scopes_not_empty
|
|
validate :one_active_key_per_user_per_source, on: :create
|
|
|
|
# Callbacks
|
|
before_validation :set_display_key
|
|
|
|
# Scopes
|
|
scope :active, -> { where(revoked_at: nil).where("expires_at IS NULL OR expires_at > ?", Time.current) }
|
|
|
|
# Class methods
|
|
def self.find_by_value(plain_key)
|
|
return nil unless plain_key
|
|
|
|
# Find by encrypted display_key (deterministic encryption allows querying)
|
|
find_by(display_key: plain_key)&.tap do |api_key|
|
|
return api_key if api_key.active?
|
|
end
|
|
end
|
|
|
|
def self.generate_secure_key
|
|
SecureRandom.hex(32)
|
|
end
|
|
|
|
# Instance methods
|
|
def active?
|
|
!revoked? && !expired?
|
|
end
|
|
|
|
def revoked?
|
|
revoked_at.present?
|
|
end
|
|
|
|
def expired?
|
|
expires_at.present? && expires_at < Time.current
|
|
end
|
|
|
|
def key_matches?(plain_key)
|
|
display_key == plain_key
|
|
end
|
|
|
|
def revoke!
|
|
update!(revoked_at: Time.current)
|
|
end
|
|
|
|
def update_last_used!
|
|
update_column(:last_used_at, Time.current)
|
|
end
|
|
|
|
# Get the plain text API key for display (automatically decrypted by Rails)
|
|
def plain_key
|
|
display_key
|
|
end
|
|
|
|
# Temporarily store the plain key for creation flow
|
|
attr_accessor :key
|
|
|
|
private
|
|
|
|
def set_display_key
|
|
if key.present?
|
|
self.display_key = key
|
|
end
|
|
end
|
|
|
|
def scopes_not_empty
|
|
if scopes.blank? || (scopes.is_a?(Array) && (scopes.empty? || scopes.all?(&:blank?)))
|
|
errors.add(:scopes, "must include at least one permission")
|
|
elsif scopes.is_a?(Array) && scopes.length > 1
|
|
errors.add(:scopes, "can only have one permission level")
|
|
elsif scopes.is_a?(Array) && !%w[read read_write].include?(scopes.first)
|
|
errors.add(:scopes, "must be either 'read' or 'read_write'")
|
|
end
|
|
end
|
|
|
|
def one_active_key_per_user_per_source
|
|
if user&.api_keys&.active&.where(source: source)&.where&.not(id: id)&.exists?
|
|
errors.add(:user, "can only have one active API key per source (#{source})")
|
|
end
|
|
end
|
|
end
|