Class: Labkit::RateLimit::Rule

Inherits:
Data
  • Object
show all
Defined in:
lib/labkit/rate_limit/rule.rb

Overview

Rule is a value object describing a single rate limit rule. name - stable identifier used in Redis keys and log entries match - hash of identifier key/value pairs that must all match for the rule to apply; empty hash matches any identifier limit - request threshold; may be a callable (resolved per check) period - window in seconds; may be a callable (resolved per check) action - :limit (enforce; the result blocks when the rule is over its limit, which also terminates evaluation), :log (count and log only, never blocks and never terminates), or :skip (bypass: permit and terminate evaluation on match without counting; performs no Redis operation, so limit, period, characteristics, and count_distinct are inert) ban_for - optional ban duration in seconds. On crossing the limit the rule writes a separate ban key that outlives the counter window, and stops counting while it holds. action still decides who is blocked: :limit enforces the ban, :log records what it would have done. Rejected on :skip. May be a callable, resolved per check. characteristics - identifier keys used to build the compound Redis counter key count_distinct - optional Symbol naming an identifier key. When set, the rule counts the number of distinct values seen for that key within the (characteristics-bucketed) period, backed by a Redis SET. When nil (default), the rule counts the number of calls, backed by INCR. The named key must not overlap characteristics.

name must be a lowercase alphanumeric-and-underscore string of at most 64 characters. It is used as the middle segment of every Redis counter key for this rule, so changing a rule's name mid-window abandons its in-flight counters.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name:, limit:, period:, characteristics:, match: {}, action: :limit, count_distinct: nil, ban_for: nil) ⇒ Rule

Returns a new instance of Rule.

Raises:

  • (ArgumentError)


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
# File 'lib/labkit/rate_limit/rule.rb', line 74

def initialize(
  name:, limit:, period:, characteristics:,
  match: {}, action: :limit, count_distinct: nil, ban_for: nil
)
  raise ArgumentError, "name must be a String or Symbol, got #{name.class}" unless name.is_a?(String) || name.is_a?(Symbol)

  name_str = name.to_s
  raise ArgumentError, "name must not be empty" if name_str.empty?

  action_sym = action.to_sym
  raise ArgumentError, "Invalid action: #{action.inspect}. Must be one of: #{KNOWN_ACTIONS.inspect}" unless KNOWN_ACTIONS.include?(action_sym)

  if Labkit.dev_or_test?
    raise ArgumentError, "Invalid rule name: #{name.inspect}. Must match /\\A[a-z0-9_]+\\z/" unless RULE_NAME_PATTERN.match?(name_str)
    raise ArgumentError, "Rule name too long: #{name.inspect}. Maximum 64 characters" if name_str.length > RULE_NAME_MAX_LENGTH
  end

  characteristics_arr = Array(characteristics).map(&:to_sym).freeze
  count_distinct_sym = self.class.normalize_count_distinct(count_distinct, characteristics_arr)

  super(
    name: name_str.freeze,
    match: match.transform_keys(&:to_sym).transform_values { |v| Matcher.build(v) }.freeze,
    limit: limit,
    period: period,
    action: action_sym,
    characteristics: characteristics_arr,
    count_distinct: count_distinct_sym,
    ban_for: self.class.normalize_ban_for(ban_for, action_sym, count_distinct_sym)
  )
end

Instance Attribute Details

#actionObject (readonly)

Returns the value of attribute action

Returns:

  • (Object)

    the current value of action



38
39
40
# File 'lib/labkit/rate_limit/rule.rb', line 38

def action
  @action
end

#ban_forObject (readonly)

Returns the value of attribute ban_for

Returns:

  • (Object)

    the current value of ban_for



38
39
40
# File 'lib/labkit/rate_limit/rule.rb', line 38

def ban_for
  @ban_for
end

#characteristicsObject (readonly)

Returns the value of attribute characteristics

Returns:

  • (Object)

    the current value of characteristics



38
39
40
# File 'lib/labkit/rate_limit/rule.rb', line 38

def characteristics
  @characteristics
end

#count_distinctObject (readonly)

Returns the value of attribute count_distinct

Returns:

  • (Object)

    the current value of count_distinct



38
39
40
# File 'lib/labkit/rate_limit/rule.rb', line 38

def count_distinct
  @count_distinct
end

#limitObject (readonly)

Returns the value of attribute limit

Returns:

  • (Object)

    the current value of limit



38
39
40
# File 'lib/labkit/rate_limit/rule.rb', line 38

def limit
  @limit
end

#matchObject (readonly)

Returns the value of attribute match

Returns:

  • (Object)

    the current value of match



38
39
40
# File 'lib/labkit/rate_limit/rule.rb', line 38

def match
  @match
end

#nameObject (readonly)

Returns the value of attribute name

Returns:

  • (Object)

    the current value of name



38
39
40
# File 'lib/labkit/rate_limit/rule.rb', line 38

def name
  @name
end

#periodObject (readonly)

Returns the value of attribute period

Returns:

  • (Object)

    the current value of period



38
39
40
# File 'lib/labkit/rate_limit/rule.rb', line 38

def period
  @period
end

Class Method Details

.normalize_ban_for(value, action_sym, count_distinct_sym) ⇒ Object

ban_for changes the accounting; action still decides who gets blocked. A :skip rule counts nothing, so it has no limit to cross and no ban to write.

Raises:

  • (ArgumentError)


42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# File 'lib/labkit/rate_limit/rule.rb', line 42

def self.normalize_ban_for(value, action_sym, count_distinct_sym)
  return nil if value.nil?

  raise ArgumentError, "ban_for is not valid on a :skip rule" if action_sym == :skip

  # The ban path counts with INCRBYFLOAT, so a SET-backed rule would
  # silently count calls instead of distinct values.
  raise ArgumentError, "ban_for cannot be combined with count_distinct #{count_distinct_sym.inspect}" if count_distinct_sym

  return value if value.respond_to?(:call)
  # Whole seconds: the ban is written with SET EX, and anything under a
  # second truncates to 0, which Redis rejects.
  return value if value.is_a?(Numeric) && value >= 1

  raise ArgumentError, "ban_for must be a Numeric of at least 1 second or a callable, got #{value.inspect}"
end

.normalize_count_distinct(value, characteristics_arr) ⇒ Object

Raises:

  • (ArgumentError)


59
60
61
62
63
64
65
66
67
68
69
70
71
72
# File 'lib/labkit/rate_limit/rule.rb', line 59

def self.normalize_count_distinct(value, characteristics_arr)
  sym =
    case value
    when nil    then nil
    when Symbol then value
    when String then value.to_sym
    else
      raise ArgumentError, "count_distinct must be a Symbol, String, or nil, got #{value.class}"
    end

  raise ArgumentError, "count_distinct #{sym.inspect} must not overlap characteristics #{characteristics_arr.inspect}" if sym && characteristics_arr.include?(sym)

  sym
end