You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docuseal/lib/load_active_storage_configs.rb

37 lines
1.0 KiB

# frozen_string_literal: true
module LoadActiveStorageConfigs
STORAGE_YML_PATH = Rails.root.join('config/storage.yml')
module_function
def call
reload unless loaded?
end
def loaded?
@loaded
end
def reload
encrypted_config = EncryptedConfig.find_by(key: EncryptedConfig::FILES_STORAGE_KEY)
return unless encrypted_config
service, configs = encrypted_config.value.values_at('service', 'configs')
service_configurations = ActiveSupport::ConfigurationFile.parse(STORAGE_YML_PATH)
service_configurations[service].merge!(configs) if configs.present?
service_configurations[service][:force_path_style] = true if configs&.dig('endpoint').present?
if service == 'google'
service_configurations[service][:credentials] = JSON.parse(configs.fetch('credentials', '{}'))
end
ActiveStorage::Blob.services = ActiveStorage::Service::Registry.new(service_configurations)
ActiveStorage::Blob.service = ActiveStorage::Blob.services.fetch(service.to_sym)
ensure
@loaded = true
end
end