fabc3170b7
* Feature: Feature flags on account (#814) * Added the new column on account model for managing feature flags * Added the inbound email flag * Locked the settings of this eature in account settings based on this * Encapsulated the feature flaging as a concern. With this, we can re-use the same concern if we introduce this in other models like user or inbox or so. * Added the features in the account api * Changed Rails/FilePath style - rubocop issue * Revert "Changed Rails/FilePath style - rubocop issue" This reverts commit 3a42d3b9c9b3a2fde8bc7256fd704b6fcaf54040. * Disabling rubocop on codeclimate as we already have this in CICD
57 lines
1.3 KiB
Ruby
57 lines
1.3 KiB
Ruby
module Features
|
|
extend ActiveSupport::Concern
|
|
|
|
QUERY_MODE = {
|
|
flag_query_mode: :bit_operator
|
|
}.freeze
|
|
|
|
FEATURE_LIST = YAML.safe_load(File.read(Rails.root.join('config/features.yml'))).freeze
|
|
|
|
FEATURES = FEATURE_LIST.each_with_object({}) do |feature, result|
|
|
result[result.keys.size + 1] = "feature_#{feature['name']}".to_sym
|
|
end
|
|
|
|
included do
|
|
include FlagShihTzu
|
|
has_flags FEATURES.merge(column: 'feature_flags').merge(QUERY_MODE)
|
|
|
|
before_create :enable_default_features
|
|
end
|
|
|
|
def enable_features(names)
|
|
names.each do |name|
|
|
send("feature_#{name}=", true)
|
|
end
|
|
end
|
|
|
|
def disable_features(names)
|
|
names.each do |name|
|
|
send("feature_#{name}=", false)
|
|
end
|
|
end
|
|
|
|
def feature_enabled?(name)
|
|
send("feature_#{name}?")
|
|
end
|
|
|
|
def all_features
|
|
FEATURE_LIST.map { |f| f['name'] }.index_with do |feature_name|
|
|
feature_enabled?(feature_name)
|
|
end
|
|
end
|
|
|
|
def enabled_features
|
|
all_features.select { |_feature, enabled| enabled == true }
|
|
end
|
|
|
|
def disabled_features
|
|
all_features.select { |_feature, enabled| enabled == false }
|
|
end
|
|
|
|
private
|
|
|
|
def enable_default_features
|
|
features_to_enabled = FEATURE_LIST.select { |f| f['enabled'] }.map { |f| f['name'] }
|
|
enable_features(features_to_enabled)
|
|
end
|
|
end
|