version = node[:piwik][:version]
+geoip_directory = node[:geoipupdate][:directory]
+
directory "/opt/piwik-#{version}" do
owner "root"
group "root"
not_if { ::File.exist?("/opt/piwik-#{version}/piwik") }
end
+node[:piwik][:plugins].each do |plugin_name, plugin_version|
+ next if plugin_version.nil?
+
+ remote_file "#{Chef::Config[:file_cache_path]}/piwik-#{plugin_name}-#{plugin_version}.zip" do
+ source "https://plugins.matomo.org/api/2.0/plugins/#{plugin_name}/download/#{plugin_version}"
+ end
+
+ archive_file "#{Chef::Config[:file_cache_path]}/piwik-#{plugin_name}-#{plugin_version}.zip" do
+ action :nothing
+ destination "/opt/piwik-#{version}/piwik/plugins"
+ overwrite true
+ owner "root"
+ group "root"
+ subscribes :extract, "remote_file[#{Chef::Config[:file_cache_path]}/piwik-#{plugin_name}-#{plugin_version}.zip]", :immediately
+ end
+end
+
execute "/opt/piwik-#{version}/piwik/piwik.js" do
command "gzip -k -9 /opt/piwik-#{version}/piwik/piwik.js"
cwd "/opt/piwik-#{version}"
mode "0644"
variables :passwords => passwords,
:directory => "/opt/piwik-#{version}/piwik",
- :plugins => node[:piwik][:plugins]
+ :plugins => node[:piwik][:plugins].keys.sort
end
directory "/opt/piwik-#{version}/piwik/tmp" do
end
link "/opt/piwik-#{version}/piwik/misc/GeoLite2-ASN.mmdb" do
- to "/usr/share/GeoIP/GeoLite2-ASN.mmdb"
+ to "#{geoip_directory}/GeoLite2-ASN.mmdb"
end
link "/opt/piwik-#{version}/piwik/misc/GeoLite2-City.mmdb" do
- to "/usr/share/GeoIP/GeoLite2-City.mmdb"
+ to "#{geoip_directory}/GeoLite2-City.mmdb"
end
link "/opt/piwik-#{version}/piwik/misc/GeoLite2-Country.mmdb" do
- to "/usr/share/GeoIP/GeoLite2-Country.mmdb"
+ to "#{geoip_directory}/GeoLite2-Country.mmdb"
end
link "/srv/piwik.openstreetmap.org" do