aboutsummaryrefslogtreecommitdiffstats
path: root/lib/capistrano/tasks/configure_piwik.rake
blob: d503cb00419bb8fef4185fbe8f9ff8abbe7fbd51 (plain) (blame)
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
# :mode=ruby:
namespace :deploy do
  namespace :piwik do
    desc 'Configure piwik for site'
    task :configure do
      output_file = File.join(shared_path, 'config', 'piwik.yml')
      on roles(:app) do
        unless test "[ -f #{output_file} ]"
          conf = {
            fetch(:stage) => {
              'piwik' => {
                'id_site' => fetch(:piwik_site_id),
                'url' => fetch(:piwik_url),
                'disabled' => fetch(:piwik_disabled, false),
                'use_async' => fetch(:piwik_async, true),
              }
            }
          }

          upload!(StringIO.new(conf.to_yaml), output_file)
        end
      end
    end
  end

  before 'deploy:check:linked_files', 'deploy:piwik:configure'
end