Class: Flipper::Gates::Group

Inherits:
Flipper::Gate show all
Defined in:
lib/flipper/gates/group.rb

Instance Method Summary collapse

Methods inherited from Flipper::Gate

#initialize, #inspect

Constructor Details

This class inherits a constructor from Flipper::Gate

Instance Method Details

#data_typeObject



14
15
16
# File 'lib/flipper/gates/group.rb', line 14

def data_type
  :set
end

#enabled?(value) ⇒ Boolean

Returns:



18
19
20
# File 'lib/flipper/gates/group.rb', line 18

def enabled?(value)
  !value.empty?
end

#keyObject

Internal: Name converted to value safe for adapter.



10
11
12
# File 'lib/flipper/gates/group.rb', line 10

def key
  :groups
end

#nameObject

Internal: The name of the gate. Used for instrumentation, etc.



5
6
7
# File 'lib/flipper/gates/group.rb', line 5

def name
  :group
end

#open?(context) ⇒ Boolean

Internal: Checks if the gate is open for a thing.

Returns true if gate open for thing, false if not.

Returns:



25
26
27
28
29
30
31
32
33
# File 'lib/flipper/gates/group.rb', line 25

def open?(context)
  return false unless context.actors?

  context.values.groups.any? do |name|
    context.actors.any? do |actor|
      Flipper.group(name).match?(actor, context)
    end
  end
end

#protects?(thing) ⇒ Boolean

Returns:



39
40
41
# File 'lib/flipper/gates/group.rb', line 39

def protects?(thing)
  thing.is_a?(Types::Group) || thing.is_a?(Symbol)
end

#wrap(thing) ⇒ Object



35
36
37
# File 'lib/flipper/gates/group.rb', line 35

def wrap(thing)
  Types::Group.wrap(thing)
end