1 2 3 4 5 6 7 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
|
require "set"
require "flipper/feature"
require "flipper/adapters/sync/synchronizer"
module Flipper
# Adding a module include so we have some hooks for stuff down the road
module Adapter
def self.included(base)
base.extend(ClassMethods)
end
module ClassMethods
# Public: Default config for a feature's gate values.
def default_config
{
boolean: nil,
groups: Set.new,
actors: Set.new,
percentage_of_actors: nil,
percentage_of_time: nil,
}
end
end
# Public: Get all features and gate values in one call. Defaults to one call
# to features and another to get_multi. Feel free to override per adapter to
# make this more efficient.
def get_all
instances = features.map { |key| Flipper::Feature.new(key, self) }
get_multi(instances)
end
# Public: Get multiple features in one call. Defaults to one get per
# feature. Feel free to override per adapter to make this more efficient and
# reduce network calls.
def get_multi(features)
result = {}
features.each do |feature|
result[feature.key] = get(feature)
end
result
end
# Public: Ensure that adapter is in sync with source adapter provided.
#
# Returns result of Synchronizer#call.
def import(source_adapter)
Adapters::Sync::Synchronizer.new(self, source_adapter, raise: true).call
end
# Public: Default config for a feature's gate values.
def default_config
self.class.default_config
end
end
end
|