diaspora/config/initializers/load_analyitics.rb
2017-09-17 19:29:15 +02:00

21 lines
799 B
Ruby

# frozen_string_literal: true
# Copyright (c) 2012, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file.
#hack to allow us to access app config, rather than putting in environments/production.rb
if Rails.env == 'production'
Diaspora::Application.configure do
if AppConfig.privacy.google_analytics_key.present?
require 'rack/google-analytics'
config.middleware.use Rack::GoogleAnalytics, tracker: AppConfig.privacy.google_analytics_key.get
end
if AppConfig.privacy.piwik.enable?
require 'rack/piwik'
config.middleware.use Rack::Piwik, piwik_url: AppConfig.privacy.piwik.host.get,
piwik_id: AppConfig.privacy.piwik.site_id.get
end
end
end