2019-07-04 12:36:17 +02:00
|
|
|
# This setup is primarily for first deployment, because consequently
|
|
|
|
# we can add new features from the Web UI. However when the new DB is created
|
|
|
|
# this will immediately migrate the default features to be controlled.
|
|
|
|
def setup_features(features)
|
|
|
|
features.each do |feature|
|
2019-09-11 12:21:21 +02:00
|
|
|
if !Flipper.exist?(feature)
|
|
|
|
# Disable feature by default
|
|
|
|
Flipper.disable(feature)
|
2019-07-04 12:36:17 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# A list of features to be deployed on first push
|
|
|
|
features = [
|
|
|
|
:administrateur_web_hook,
|
2021-09-08 16:15:04 +02:00
|
|
|
:api_particulier,
|
2021-03-03 18:20:34 +01:00
|
|
|
:dossier_pdf_vide,
|
|
|
|
:hide_instructeur_email,
|
2023-03-20 18:14:59 +01:00
|
|
|
:procedure_routage_api,
|
2023-06-14 12:35:43 +02:00
|
|
|
:groupe_instructeur_api_hack,
|
2023-06-22 09:50:13 +02:00
|
|
|
:cojo_type_de_champ,
|
2023-12-18 12:32:27 +01:00
|
|
|
:sva,
|
|
|
|
:blocking_pending_correction
|
2019-07-04 12:36:17 +02:00
|
|
|
]
|
|
|
|
|
2019-09-11 12:21:21 +02:00
|
|
|
def database_exists?
|
|
|
|
ActiveRecord::Base.connection
|
|
|
|
true
|
2023-08-31 12:12:49 +02:00
|
|
|
rescue ActiveRecord::ConnectionNotEstablished, ActiveRecord::NoDatabaseError, PG::ConnectionBad
|
2019-09-11 12:21:21 +02:00
|
|
|
false
|
|
|
|
end
|
|
|
|
|
2019-07-04 12:36:17 +02:00
|
|
|
ActiveSupport.on_load(:active_record) do
|
2019-09-11 12:21:21 +02:00
|
|
|
if database_exists? && ActiveRecord::Base.connection.data_source_exists?('flipper_features')
|
2019-07-04 12:36:17 +02:00
|
|
|
setup_features(features)
|
|
|
|
end
|
|
|
|
end
|