Class: PlanLimits
Constant Summary
collapse
- LimitUndefinedError =
Class.new(StandardError)
ApplicationRecord::MAX_PLUCK
Instance Method Summary
collapse
cached_column_list, #create_or_load_association, declarative_enum, default_select_columns, id_in, id_not_in, iid_in, pluck_primary_key, primary_key_in, #readable_by?, safe_ensure_unique, safe_find_or_create_by, safe_find_or_create_by!, #to_ability_name, underscore, where_exists, where_not_exists, with_fast_read_statement_timeout, without_order
#serializable_hash
Instance Method Details
#exceeded?(limit_name, subject, alternate_limit: 0) ⇒ Boolean
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# File 'app/models/plan_limits.rb', line 12
def exceeded?(limit_name, subject, alternate_limit: 0)
limit = limit_for(limit_name, alternate_limit: alternate_limit)
return false unless limit
case subject
when Integer
subject >= limit
when ActiveRecord::Relation
subject.offset(limit - 1).exists?
else
raise ArgumentError, "#{subject.class} is not supported as a limit value"
end
end
|
#limit_for(limit_name, alternate_limit: 0) ⇒ Object
31
32
33
34
35
36
37
38
39
|
# File 'app/models/plan_limits.rb', line 31
def limit_for(limit_name, alternate_limit: 0)
limit = read_attribute(limit_name)
raise LimitUndefinedError, "The limit `#{limit_name}` is undefined" if limit.nil?
alternate_limit = alternate_limit.call if alternate_limit.respond_to?(:call)
limits = [limit, alternate_limit]
limits.map(&:to_i).select(&:positive?).min
end
|