Class: CommandTower::Services::Auth::SignupRateLimits::CheckAvailability
- Inherits:
-
CommandTower::Services::ApplicationService
- Object
- CommandTower::ServiceBase
- CommandTower::Services::ApplicationService
- CommandTower::Services::Auth::SignupRateLimits::CheckAvailability
- Includes:
- Enforcement
- Defined in:
- app/services/command_tower/services/auth/signup_rate_limits/check_availability.rb
Constant Summary collapse
- KINDS =
%i[email username].freeze
Constants inherited from CommandTower::ServiceBase
CommandTower::ServiceBase::ON_ARGUMENT_VALIDATION
Instance Method Summary collapse
Methods inherited from CommandTower::Services::ApplicationService
Methods included from Transactional
#fail_transaction!, #transaction
Methods inherited from CommandTower::ServiceBase
#command_tower_lifecycle, inherited, #internal_validate, #service_lifecycle_error_codes, #service_lifecycle_log_level, #validate!
Methods included from Logging::LifecycleDeclaration
Methods included from Execution::ContextAccess
#audit, #execution_context, #log_debug, #log_error, #log_info, #log_warn, #publish_event
Methods included from ArgumentValidation
Methods included from CommandTower::ServiceLogging
Instance Method Details
#call ⇒ Object
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
# File 'app/services/command_tower/services/auth/signup_rate_limits/check_availability.rb', line 15 def call remaining = signup_session.remaining_seconds expired_session! if remaining <= 0 jti_ttl = remaining + CommandTower.config.signup_session.cleanup_buffer_seconds enforce!( key: "signup:rate:jti:#{signup_session.jti}:#{kind}", ttl_seconds: jti_ttl, limit: kind == :email ? limits.jti_email : limits.jti_username, scope: :session ) enforce!( key: "signup:rate:jti:#{signup_session.jti}:total", ttl_seconds: jti_ttl, limit: limits.jti_total, scope: :session ) enforce!( key: "signup:rate:ip:#{normalize_ip(signup_session.client_ip)}:availability:1h:#{hour_bucket}", ttl_seconds: 3600, limit: limits.ip_availability_hour, scope: :ip ) end |