mirror of
https://github.com/we-promise/sure.git
synced 2026-04-07 14:31:25 +00:00
* Check for pending invitations before creating new Family during SSO account creation When a user signs in via Google SSO and doesn't have an account yet, the system now checks for pending invitations before creating a new Family. If an invitation exists, the user joins the invited family instead. - OidcAccountsController: check Invitation.pending in link/create_user - API AuthController: check pending invitations in sso_create_account - SessionsController: pass has_pending_invitation to mobile SSO callback - Web view: show "Accept Invitation" button when invitation exists - Flutter: show "Accept Invitation" tab/button when invitation pending https://claude.ai/code/session_019Tr6edJa496V1ErGmsbqFU * Fix external assistant tests: clear Settings cache to prevent test pollution The tests relied solely on with_env_overrides to clear configuration, but rails-settings-cached may retain stale Setting values across tests when the cache isn't explicitly invalidated. Ensure both ENV vars AND Setting values are cleared with Setting.clear_cache before assertions. https://claude.ai/code/session_019Tr6edJa496V1ErGmsbqFU --------- Co-authored-by: Claude <noreply@anthropic.com>
385 lines
13 KiB
Ruby
385 lines
13 KiB
Ruby
module Api
|
|
module V1
|
|
class AuthController < BaseController
|
|
include Invitable
|
|
|
|
skip_before_action :authenticate_request!
|
|
skip_before_action :check_api_key_rate_limit
|
|
skip_before_action :log_api_access
|
|
before_action :authenticate_request!, only: :enable_ai
|
|
before_action :ensure_write_scope, only: :enable_ai
|
|
before_action :check_api_key_rate_limit, only: :enable_ai
|
|
before_action :log_api_access, only: :enable_ai
|
|
|
|
def signup
|
|
# Check if invite code is required
|
|
if invite_code_required? && params[:invite_code].blank?
|
|
render json: { error: "Invite code is required" }, status: :forbidden
|
|
return
|
|
end
|
|
|
|
# Validate invite code if provided
|
|
if params[:invite_code].present? && !InviteCode.exists?(token: params[:invite_code]&.downcase)
|
|
render json: { error: "Invalid invite code" }, status: :forbidden
|
|
return
|
|
end
|
|
|
|
# Validate password
|
|
password_errors = validate_password(params[:user][:password])
|
|
if password_errors.any?
|
|
render json: { errors: password_errors }, status: :unprocessable_entity
|
|
return
|
|
end
|
|
|
|
# Validate device info
|
|
unless valid_device_info?
|
|
render json: { error: "Device information is required" }, status: :bad_request
|
|
return
|
|
end
|
|
|
|
user = User.new(user_signup_params)
|
|
|
|
# Create family for new user
|
|
# First user of an instance becomes super_admin
|
|
family = Family.new
|
|
user.family = family
|
|
user.role = User.role_for_new_family_creator
|
|
|
|
if user.save
|
|
# Claim invite code if provided
|
|
InviteCode.claim!(params[:invite_code]) if params[:invite_code].present?
|
|
|
|
# Create device and OAuth token
|
|
begin
|
|
device = MobileDevice.upsert_device!(user, device_params)
|
|
token_response = device.issue_token!
|
|
rescue ActiveRecord::RecordInvalid => e
|
|
render json: { error: "Failed to register device: #{e.message}" }, status: :unprocessable_entity
|
|
return
|
|
end
|
|
|
|
render json: token_response.merge(user: mobile_user_payload(user)), status: :created
|
|
else
|
|
render json: { errors: user.errors.full_messages }, status: :unprocessable_entity
|
|
end
|
|
end
|
|
|
|
def login
|
|
user = User.find_by(email: params[:email])
|
|
|
|
if user&.authenticate(params[:password])
|
|
# Check MFA if enabled
|
|
if user.otp_required?
|
|
unless params[:otp_code].present? && user.verify_otp?(params[:otp_code])
|
|
render json: {
|
|
error: "Two-factor authentication required",
|
|
mfa_required: true
|
|
}, status: :unauthorized
|
|
return
|
|
end
|
|
end
|
|
|
|
# Validate device info
|
|
unless valid_device_info?
|
|
render json: { error: "Device information is required" }, status: :bad_request
|
|
return
|
|
end
|
|
|
|
# Create device and OAuth token
|
|
begin
|
|
device = MobileDevice.upsert_device!(user, device_params)
|
|
token_response = device.issue_token!
|
|
rescue ActiveRecord::RecordInvalid => e
|
|
render json: { error: "Failed to register device: #{e.message}" }, status: :unprocessable_entity
|
|
return
|
|
end
|
|
|
|
render json: token_response.merge(user: mobile_user_payload(user))
|
|
else
|
|
render json: { error: "Invalid email or password" }, status: :unauthorized
|
|
end
|
|
end
|
|
|
|
def sso_exchange
|
|
code = sso_exchange_params
|
|
|
|
if code.blank?
|
|
render json: { error: "invalid_or_expired_code", message: "Authorization code is required" }, status: :unauthorized
|
|
return
|
|
end
|
|
|
|
cache_key = "mobile_sso:#{code}"
|
|
cached = Rails.cache.read(cache_key)
|
|
|
|
unless cached.present?
|
|
render json: { error: "invalid_or_expired_code", message: "Authorization code is invalid or expired" }, status: :unauthorized
|
|
return
|
|
end
|
|
|
|
# Atomic delete — only the request that successfully deletes the key may proceed.
|
|
# This prevents a race where two concurrent requests both read the same code.
|
|
unless Rails.cache.delete(cache_key)
|
|
render json: { error: "invalid_or_expired_code", message: "Authorization code is invalid or expired" }, status: :unauthorized
|
|
return
|
|
end
|
|
|
|
render json: {
|
|
access_token: cached[:access_token],
|
|
refresh_token: cached[:refresh_token],
|
|
token_type: cached[:token_type],
|
|
expires_in: cached[:expires_in],
|
|
created_at: cached[:created_at],
|
|
user: {
|
|
id: cached[:user_id],
|
|
email: cached[:user_email],
|
|
first_name: cached[:user_first_name],
|
|
last_name: cached[:user_last_name],
|
|
ui_layout: cached[:user_ui_layout],
|
|
ai_enabled: cached[:user_ai_enabled]
|
|
}
|
|
}
|
|
end
|
|
|
|
def sso_link
|
|
linking_code = params[:linking_code]
|
|
cached = validate_linking_code(linking_code)
|
|
return unless cached
|
|
|
|
user = User.authenticate_by(email: params[:email], password: params[:password])
|
|
|
|
unless user
|
|
render json: { error: "Invalid email or password" }, status: :unauthorized
|
|
return
|
|
end
|
|
|
|
if user.otp_required?
|
|
render json: { error: "MFA users should sign in with email and password", mfa_required: true }, status: :unauthorized
|
|
return
|
|
end
|
|
|
|
# Atomically claim the code before creating the identity
|
|
return render json: { error: "Linking code is invalid or expired" }, status: :unauthorized unless consume_linking_code!(linking_code)
|
|
|
|
OidcIdentity.create_from_omniauth(build_omniauth_hash(cached), user)
|
|
|
|
SsoAuditLog.log_link!(
|
|
user: user,
|
|
provider: cached[:provider],
|
|
request: request
|
|
)
|
|
|
|
issue_mobile_tokens(user, cached[:device_info])
|
|
end
|
|
|
|
def sso_create_account
|
|
linking_code = params[:linking_code]
|
|
cached = validate_linking_code(linking_code)
|
|
return unless cached
|
|
|
|
email = cached[:email]
|
|
|
|
# Check for a pending invitation for this email
|
|
invitation = Invitation.pending.find_by(email: email)
|
|
|
|
unless invitation.present? || cached[:allow_account_creation]
|
|
render json: { error: "SSO account creation is disabled. Please contact an administrator." }, status: :forbidden
|
|
return
|
|
end
|
|
|
|
# Atomically claim the code before creating the user
|
|
return render json: { error: "Linking code is invalid or expired" }, status: :unauthorized unless consume_linking_code!(linking_code)
|
|
|
|
user = User.new(
|
|
email: email,
|
|
first_name: params[:first_name].presence || cached[:first_name],
|
|
last_name: params[:last_name].presence || cached[:last_name],
|
|
skip_password_validation: true
|
|
)
|
|
|
|
if invitation.present?
|
|
# Accept the pending invitation: join the existing family
|
|
user.family_id = invitation.family_id
|
|
user.role = invitation.role
|
|
else
|
|
user.family = Family.new
|
|
|
|
provider_config = Rails.configuration.x.auth.sso_providers&.find { |p| p[:name] == cached[:provider] }
|
|
provider_default_role = provider_config&.dig(:settings, :default_role)
|
|
user.role = User.role_for_new_family_creator(fallback_role: provider_default_role || :admin)
|
|
end
|
|
|
|
if user.save
|
|
# Mark invitation as accepted if one was used
|
|
invitation&.update!(accepted_at: Time.current)
|
|
|
|
OidcIdentity.create_from_omniauth(build_omniauth_hash(cached), user)
|
|
|
|
SsoAuditLog.log_jit_account_created!(
|
|
user: user,
|
|
provider: cached[:provider],
|
|
request: request
|
|
)
|
|
|
|
issue_mobile_tokens(user, cached[:device_info])
|
|
else
|
|
render json: { errors: user.errors.full_messages }, status: :unprocessable_entity
|
|
end
|
|
end
|
|
|
|
def enable_ai
|
|
user = current_resource_owner
|
|
|
|
unless user.ai_available?
|
|
render json: { error: "AI is not available for your account" }, status: :forbidden
|
|
return
|
|
end
|
|
|
|
if user.update(ai_enabled: true)
|
|
render json: { user: mobile_user_payload(user) }
|
|
else
|
|
render json: { errors: user.errors.full_messages }, status: :unprocessable_entity
|
|
end
|
|
end
|
|
|
|
def refresh
|
|
# Find the refresh token
|
|
refresh_token = params[:refresh_token]
|
|
|
|
unless refresh_token.present?
|
|
render json: { error: "Refresh token is required" }, status: :bad_request
|
|
return
|
|
end
|
|
|
|
# Find the access token associated with this refresh token
|
|
access_token = Doorkeeper::AccessToken.by_refresh_token(refresh_token)
|
|
|
|
if access_token.nil? || access_token.revoked?
|
|
render json: { error: "Invalid refresh token" }, status: :unauthorized
|
|
return
|
|
end
|
|
|
|
# Create new access token
|
|
new_token = Doorkeeper::AccessToken.create!(
|
|
application: access_token.application,
|
|
resource_owner_id: access_token.resource_owner_id,
|
|
mobile_device_id: access_token.mobile_device_id,
|
|
expires_in: 30.days.to_i,
|
|
scopes: access_token.scopes,
|
|
use_refresh_token: true
|
|
)
|
|
|
|
# Revoke old access token
|
|
access_token.revoke
|
|
|
|
# Update device last seen
|
|
user = User.find(access_token.resource_owner_id)
|
|
device = user.mobile_devices.find_by(device_id: params[:device][:device_id])
|
|
device&.update_last_seen!
|
|
|
|
render json: {
|
|
access_token: new_token.plaintext_token,
|
|
refresh_token: new_token.plaintext_refresh_token,
|
|
token_type: "Bearer",
|
|
expires_in: new_token.expires_in,
|
|
created_at: new_token.created_at.to_i
|
|
}
|
|
end
|
|
|
|
private
|
|
|
|
def user_signup_params
|
|
params.require(:user).permit(:email, :password, :first_name, :last_name)
|
|
end
|
|
|
|
def validate_password(password)
|
|
errors = []
|
|
|
|
if password.blank?
|
|
errors << "Password can't be blank"
|
|
return errors
|
|
end
|
|
|
|
errors << "Password must be at least 8 characters" if password.length < 8
|
|
errors << "Password must include both uppercase and lowercase letters" unless password.match?(/[A-Z]/) && password.match?(/[a-z]/)
|
|
errors << "Password must include at least one number" unless password.match?(/\d/)
|
|
errors << "Password must include at least one special character" unless password.match?(/[!@#$%^&*(),.?":{}|<>]/)
|
|
|
|
errors
|
|
end
|
|
|
|
def valid_device_info?
|
|
device = params[:device]
|
|
return false if device.nil?
|
|
|
|
required_fields = %w[device_id device_name device_type os_version app_version]
|
|
required_fields.all? { |field| device[field].present? }
|
|
end
|
|
|
|
def device_params
|
|
params.require(:device).permit(:device_id, :device_name, :device_type, :os_version, :app_version)
|
|
end
|
|
|
|
def sso_exchange_params
|
|
params.require(:code)
|
|
end
|
|
|
|
def mobile_user_payload(user)
|
|
{
|
|
id: user.id,
|
|
email: user.email,
|
|
first_name: user.first_name,
|
|
last_name: user.last_name,
|
|
ui_layout: user.ui_layout,
|
|
ai_enabled: user.ai_enabled?
|
|
}
|
|
end
|
|
|
|
def build_omniauth_hash(cached)
|
|
OpenStruct.new(
|
|
provider: cached[:provider],
|
|
uid: cached[:uid],
|
|
info: OpenStruct.new(cached.slice(:email, :name, :first_name, :last_name)),
|
|
extra: OpenStruct.new(raw_info: OpenStruct.new(iss: cached[:issuer]))
|
|
)
|
|
end
|
|
|
|
def validate_linking_code(linking_code)
|
|
if linking_code.blank?
|
|
render json: { error: "Linking code is required" }, status: :bad_request
|
|
return nil
|
|
end
|
|
|
|
cache_key = "mobile_sso_link:#{linking_code}"
|
|
cached = Rails.cache.read(cache_key)
|
|
|
|
unless cached.present?
|
|
render json: { error: "Linking code is invalid or expired" }, status: :unauthorized
|
|
return nil
|
|
end
|
|
|
|
cached
|
|
end
|
|
|
|
# Atomically deletes the linking code from cache.
|
|
# Returns true only for the first caller; subsequent callers get false.
|
|
def consume_linking_code!(linking_code)
|
|
Rails.cache.delete("mobile_sso_link:#{linking_code}")
|
|
end
|
|
|
|
def issue_mobile_tokens(user, device_info)
|
|
device_info = device_info.symbolize_keys if device_info.respond_to?(:symbolize_keys)
|
|
device = MobileDevice.upsert_device!(user, device_info)
|
|
token_response = device.issue_token!
|
|
|
|
render json: token_response.merge(user: mobile_user_payload(user))
|
|
rescue ActiveRecord::RecordInvalid => e
|
|
render json: { error: "Failed to register device: #{e.message}" }, status: :unprocessable_entity
|
|
end
|
|
|
|
def ensure_write_scope
|
|
authorize_scope!(:write)
|
|
end
|
|
end
|
|
end
|
|
end
|