Module: PricingPlans::ControllerGuards
- Extended by:
- ControllerGuards
- Included in:
- ControllerGuards
- Defined in:
- lib/pricing_plans/controller_guards.rb
Class Method Summary collapse
-
.included(base) ⇒ Object
When included into a controller, provide dynamic helpers and callbacks.
Instance Method Summary collapse
-
#enforce_plan_limit!(limit_key, plan_owner: nil, by: 1, allow_system_override: false, redirect_to: nil) ⇒ Object
Rails-y controller ergonomics: enforce limits and set flash/redirect when blocked.
-
#gate_feature!(feature_key, plan_owner: nil) ⇒ Object
Preferred alias for feature gating (plain-English name).
- #require_feature!(feature_key, plan_owner:) ⇒ Object
-
#require_plan_limit!(limit_key, plan_owner: nil, by: 1, allow_system_override: false) ⇒ Object
Checks if a given plan_owner object is within the plan limit for a specific key.
-
#with_plan_limit!(limit_key, plan_owner: nil, by: 1, allow_system_override: false, redirect_to: nil, &block) ⇒ Object
Controller-focused sugar: run a block within the plan limit context.
Class Method Details
.included(base) ⇒ Object
When included into a controller, provide dynamic helpers and callbacks
8 9 10 11 12 13 14 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 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 |
# File 'lib/pricing_plans/controller_guards.rb', line 8 def self.included(base) if base.respond_to?(:class_attribute) base.class_attribute :pricing_plans_plan_owner_method, instance_accessor: false, default: nil base.class_attribute :pricing_plans_plan_owner_proc, instance_accessor: false, default: nil # Optional per-controller default redirect target when a limit blocks # Accepts the same types as the global configuration: Symbol | String | Proc base.class_attribute :pricing_plans_redirect_on_blocked_limit, instance_accessor: false, default: nil end # Fallback storage on eigenclass for environments without class_attribute if !base.respond_to?(:pricing_plans_plan_owner_proc) && base.respond_to?(:singleton_class) base.singleton_class.send(:attr_accessor, :_pricing_plans_plan_owner_proc) end if !base.respond_to?(:pricing_plans_redirect_on_blocked_limit) && base.respond_to?(:singleton_class) base.singleton_class.send(:attr_accessor, :_pricing_plans_redirect_on_blocked_limit) end # Provide portable class-level API for redirect default regardless of class_attribute availability if base.respond_to?(:define_singleton_method) unless base.respond_to?(:pricing_plans_redirect_on_blocked_limit=) base.define_singleton_method(:pricing_plans_redirect_on_blocked_limit=) do |value| if respond_to?(:pricing_plans_redirect_on_blocked_limit) self.pricing_plans_redirect_on_blocked_limit = value elsif respond_to?(:_pricing_plans_redirect_on_blocked_limit=) self._pricing_plans_redirect_on_blocked_limit = value end end end unless base.respond_to?(:pricing_plans_redirect_on_blocked_limit) base.define_singleton_method(:pricing_plans_redirect_on_blocked_limit) do if respond_to?(:_pricing_plans_redirect_on_blocked_limit) self._pricing_plans_redirect_on_blocked_limit else nil end end end end base.define_singleton_method(:pricing_plans_plan_owner) do |method_name = nil, &block| if method_name self.pricing_plans_plan_owner_method = method_name.to_sym self.pricing_plans_plan_owner_proc = nil self._pricing_plans_plan_owner_proc = nil if respond_to?(:_pricing_plans_plan_owner_proc) elsif block_given? # Store the block and use instance_exec at call time self.pricing_plans_plan_owner_proc = block self._pricing_plans_plan_owner_proc = block if respond_to?(:_pricing_plans_plan_owner_proc) self.pricing_plans_plan_owner_method = nil else self.pricing_plans_plan_owner_method end end if base.respond_to?(:define_singleton_method) base.define_method(:pricing_plans_plan_owner) do # 1) Explicit per-controller configuration wins if self.class.respond_to?(:pricing_plans_plan_owner_proc) && self.class.pricing_plans_plan_owner_proc return instance_exec(&self.class.pricing_plans_plan_owner_proc) elsif self.class.respond_to?(:_pricing_plans_plan_owner_proc) && self.class._pricing_plans_plan_owner_proc return instance_exec(&self.class._pricing_plans_plan_owner_proc) elsif self.class.respond_to?(:pricing_plans_plan_owner_method) && self.class.pricing_plans_plan_owner_method return send(self.class.pricing_plans_plan_owner_method) end # 2) Global controller resolver if configured begin cfg = PricingPlans.configuration if cfg if cfg.controller_plan_owner_proc return instance_exec(&cfg.controller_plan_owner_proc) elsif cfg.controller_plan_owner_method meth = cfg.controller_plan_owner_method return send(meth) if respond_to?(meth) end end rescue StandardError end # 3) Infer from configured plan owner class (current_organization, etc.) owner_klass = PricingPlans::Registry.plan_owner_class rescue nil if owner_klass inferred = "current_#{owner_klass.name.underscore}" return send(inferred) if respond_to?(inferred) end # 4) Common conventions %i[current_organization current_account current_user current_team current_company current_workspace current_tenant].each do |meth| return send(meth) if respond_to?(meth) end raise PricingPlans::ConfigurationError, "Unable to infer plan owner for controller. Set `self.pricing_plans_plan_owner_method = :current_organization` or provide a block via `pricing_plans_plan_owner { ... }`." end if base.respond_to?(:define_method) # Dynamic enforce_*! and with_*! helpers for before_action ergonomics base.define_method(:method_missing) do |method_name, *args, &block| if method_name.to_s =~ /^with_(.+)_limit!$/ limit_key = Regexp.last_match(1).to_sym = args.first.is_a?(Hash) ? args.first : {} owner = if [:plan_owner] [:plan_owner] elsif [:on] resolver = [:on] resolver.is_a?(Symbol) ? send(resolver) : instance_exec(&resolver) elsif [:for] resolver = [:for] resolver.is_a?(Symbol) ? send(resolver) : instance_exec(&resolver) else respond_to?(:pricing_plans_plan_owner) ? pricing_plans_plan_owner : nil end by = .key?(:by) ? [:by] : 1 allow_system_override = !![:allow_system_override] redirect_path = [:redirect_to] return with_plan_limit!(limit_key, plan_owner: owner, by: by, allow_system_override: allow_system_override, redirect_to: redirect_path, &block) elsif method_name.to_s =~ /^enforce_(.+)_limit!$/ limit_key = Regexp.last_match(1).to_sym = args.first.is_a?(Hash) ? args.first : {} owner = if [:plan_owner] [:plan_owner] elsif [:on] resolver = [:on] resolver.is_a?(Symbol) ? send(resolver) : instance_exec(&resolver) elsif [:for] resolver = [:for] resolver.is_a?(Symbol) ? send(resolver) : instance_exec(&resolver) else respond_to?(:pricing_plans_plan_owner) ? pricing_plans_plan_owner : nil end by = .key?(:by) ? [:by] : 1 allow_system_override = !![:allow_system_override] redirect_path = [:redirect_to] return enforce_plan_limit!(limit_key, plan_owner: owner, by: by, allow_system_override: allow_system_override, redirect_to: redirect_path) elsif method_name.to_s =~ /^enforce_(.+)!$/ feature_key = Regexp.last_match(1).to_sym = args.first.is_a?(Hash) ? args.first : {} # Support: enforce_feature!(for: :current_organization) and enforce_feature!(plan_owner: obj) owner = if [:plan_owner] [:plan_owner] elsif [:on] resolver = [:on] resolver.is_a?(Symbol) ? send(resolver) : instance_exec(&resolver) elsif [:for] resolver = [:for] resolver.is_a?(Symbol) ? send(resolver) : instance_exec(&resolver) else respond_to?(:pricing_plans_plan_owner) ? pricing_plans_plan_owner : nil end require_feature!(feature_key, plan_owner: owner) return true end super(method_name, *args, &block) end if base.respond_to?(:define_method) base.define_method(:respond_to_missing?) do |method_name, include_private = false| ((method_name.to_s.start_with?("enforce_") || method_name.to_s.start_with?("with_")) && method_name.to_s.end_with?("!")) || super(method_name, include_private) end if base.respond_to?(:define_method) end |
Instance Method Details
#enforce_plan_limit!(limit_key, plan_owner: nil, by: 1, allow_system_override: false, redirect_to: nil) ⇒ Object
Rails-y controller ergonomics: enforce limits and set flash/redirect when blocked. Defaults:
- On blocked: redirect_to pricing_path (if available) with alert; else render 403 JSON.
- On grace/warning: set flash with the human message.
237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 |
# File 'lib/pricing_plans/controller_guards.rb', line 237 def enforce_plan_limit!(limit_key, plan_owner: nil, by: 1, allow_system_override: false, redirect_to: nil) plan_owner ||= (respond_to?(:pricing_plans_plan_owner) ? pricing_plans_plan_owner : nil) result = require_plan_limit!(limit_key, plan_owner: plan_owner, by: by, allow_system_override: allow_system_override) if result.blocked? # If caller opted into system override, let them handle downstream if allow_system_override && result. && result.[:system_override] return true end # Resolve the best redirect target once, and surface it to any handler via metadata resolved_target = resolve_redirect_target_for_blocked_limit(result, redirect_to) if respond_to?(:handle_pricing_plans_limit_blocked) # Enrich result with redirect target for the centralized handler enriched_result = PricingPlans::Result.blocked( result., limit_key: result.limit_key, plan_owner: result.plan_owner, metadata: (result. || {}).merge(redirect_to: resolved_target) ) handle_pricing_plans_limit_blocked(enriched_result) else # Local fallback when centralized handler isn't available if resolved_target && respond_to?(:redirect_to) redirect_to(resolved_target, alert: result., status: :see_other) elsif respond_to?(:render) respond_to?(:request) && request&.format&.json? ? render(json: { error: result. }, status: :forbidden) : render(plain: result., status: :forbidden) end end return false elsif result.warning? || result.grace? if respond_to?(:flash) && flash.respond_to?(:[]=) flash[:warning] ||= result. end end true end |
#gate_feature!(feature_key, plan_owner: nil) ⇒ Object
Preferred alias for feature gating (plain-English name)
383 384 385 386 |
# File 'lib/pricing_plans/controller_guards.rb', line 383 def gate_feature!(feature_key, plan_owner: nil) plan_owner ||= (respond_to?(:pricing_plans_plan_owner) ? pricing_plans_plan_owner : nil) require_feature!(feature_key, plan_owner: plan_owner) end |
#require_feature!(feature_key, plan_owner:) ⇒ Object
388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 |
# File 'lib/pricing_plans/controller_guards.rb', line 388 def require_feature!(feature_key, plan_owner:) plan = PlanResolver.effective_plan_for(plan_owner) unless plan&.allows_feature?(feature_key) highlighted_plan = Registry.highlighted_plan current_plan_name = plan&.name || Registry.default_plan&.name || "Current" feature_human = feature_key.to_s.humanize = if PricingPlans.configuration&. begin builder = PricingPlans.configuration. builder.call(context: :feature_denied, feature_key: feature_key, plan_owner: plan_owner, plan_name: current_plan_name, highlighted_plan: highlighted_plan&.name) rescue StandardError nil end end ||= if highlighted_plan "Your current plan (#{current_plan_name}) doesn't allow you to #{feature_human}. Please upgrade to #{highlighted_plan.name} or higher to access #{feature_human}." else "#{feature_human} is not available on your current plan (#{current_plan_name})." end raise FeatureDenied.new(, feature_key: feature_key, plan_owner: plan_owner) end true end |
#require_plan_limit!(limit_key, plan_owner: nil, by: 1, allow_system_override: false) ⇒ Object
Checks if a given plan_owner object is within the plan limit for a specific key.
Usage:
result = require_plan_limit!(:projects, plan_owner: current_organization)
if result.blocked?
# Handle blocked case (e.g., show upgrade prompt)
redirect_to upgrade_path, alert: result.
elsif result.warning?
flash[:warning] = result.
end
Options:
- limit_key: The symbol for the limit (e.g., :projects)
- plan_owner: The plan_owner object (e.g., current_organization)
- by: The number of units to check for (default: 1)
- allow_system_override: If true, returns a blocked result but does not enforce the block (default: false)
Returns a PricingPlans::Result with state:
- :within (allowed)
- :warning (allowed, but near limit)
- :grace (allowed, but in grace period)
- :blocked (not allowed)
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 |
# File 'lib/pricing_plans/controller_guards.rb', line 186 def require_plan_limit!(limit_key, plan_owner: nil, by: 1, allow_system_override: false) plan_owner ||= (respond_to?(:pricing_plans_plan_owner) ? pricing_plans_plan_owner : nil) plan = PlanResolver.effective_plan_for(plan_owner) limit_config = plan&.limit_for(limit_key) # BREAKING CHANGE: If no limit is configured, block the action (secure by default) # Previously this returned :within (allowed), now returns :blocked unless limit_config return Result.blocked("Limit #{limit_key.to_s.humanize.downcase} not configured on this plan") end # Check if unlimited if limit_config[:to] == :unlimited return Result.within("Unlimited #{limit_key}") end # Check current usage and remaining capacity current_usage = LimitChecker.current_usage_for(plan_owner, limit_key, limit_config) limit_amount = limit_config[:to] remaining = limit_amount - current_usage # Check if this action would exceed the limit would_exceed = remaining < by if would_exceed # Allow trusted flows to bypass hard block while signaling downstream if allow_system_override = (plan_owner, limit_key, current_usage, limit_amount) return Result.new(state: :blocked, message: (limit_key, current_usage, limit_amount, :blocked), limit_key: limit_key, plan_owner: plan_owner, metadata: .merge(system_override: true)) end # Handle exceeded limit based on after_limit policy case limit_config[:after_limit] when :just_warn handle_warning_only(plan_owner, limit_key, current_usage, limit_amount) when :block_usage handle_immediate_block(plan_owner, limit_key, current_usage, limit_amount) when :grace_then_block handle_grace_then_block(plan_owner, limit_key, current_usage, limit_amount, limit_config) else Result.blocked("Unknown after_limit policy: #{limit_config[:after_limit]}") end else # Within limit - check for warnings handle_within_limit(plan_owner, limit_key, current_usage, limit_amount, by) end end |
#with_plan_limit!(limit_key, plan_owner: nil, by: 1, allow_system_override: false, redirect_to: nil, &block) ⇒ Object
Controller-focused sugar: run a block within the plan limit context.
- If blocked: performs the same redirect/render semantics as enforce_plan_limit! and returns false.
- If warning/grace: sets flash and yields the result.
- If within: simply yields the result. Returns the PricingPlans::Result in all cases where execution continues.
Usage:
with_plan_limit!(:licenses, plan_owner: current_organization, by: 1) do |result|
# proceed with side-effects, can inspect result.warning?/grace?
end
287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 |
# File 'lib/pricing_plans/controller_guards.rb', line 287 def with_plan_limit!(limit_key, plan_owner: nil, by: 1, allow_system_override: false, redirect_to: nil, &block) plan_owner ||= (respond_to?(:pricing_plans_plan_owner) ? pricing_plans_plan_owner : nil) result = require_plan_limit!(limit_key, plan_owner: plan_owner, by: by, allow_system_override: allow_system_override) if result.blocked? # If caller opted into system override, let them proceed (exposes blocked state to the block) if allow_system_override && result. && result.[:system_override] yield(result) if block_given? return result end # Resolve redirect target and delegate to centralized handler if available resolved_target = resolve_redirect_target_for_blocked_limit(result, redirect_to) if respond_to?(:handle_pricing_plans_limit_blocked) enriched_result = PricingPlans::Result.blocked( result., limit_key: result.limit_key, plan_owner: result.plan_owner, metadata: (result. || {}).merge(redirect_to: resolved_target) ) handle_pricing_plans_limit_blocked(enriched_result) else if resolved_target && respond_to?(:redirect_to) redirect_to(resolved_target, alert: result., status: :see_other) elsif respond_to?(:render) respond_to?(:request) && request&.format&.json? ? render(json: { error: result. }, status: :forbidden) : render(plain: result., status: :forbidden) end end return false else if (result.warning? || result.grace?) && respond_to?(:flash) && flash.respond_to?(:[]=) flash[:warning] ||= result. end yield(result) if block_given? return result end end |