5 # Copyright:: 2011, OpenStreetMap Foundation
 
   7 # Licensed under the Apache License, Version 2.0 (the "License");
 
   8 # you may not use this file except in compliance with the License.
 
   9 # You may obtain a copy of the License at
 
  11 #     https://www.apache.org/licenses/LICENSE-2.0
 
  13 # Unless required by applicable law or agreed to in writing, software
 
  14 # distributed under the License is distributed on an "AS IS" BASIS,
 
  15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
  16 # See the License for the specific language governing permissions and
 
  17 # limitations under the License.
 
  20 include_recipe "apache"
 
  21 include_recipe "mysql"
 
  23 passwords = data_bag_item("piwik", "passwords")
 
  28 package "php-mbstring"
 
  36 apache_module "expires"
 
  37 apache_module "php7.2"
 
  38 apache_module "rewrite"
 
  40 version = node[:piwik][:version]
 
  42 directory "/opt/piwik-#{version}" do
 
  48 remote_file "#{Chef::Config[:file_cache_path]}/piwik-#{version}.zip" do
 
  49   source "https://builds.matomo.org/piwik-#{version}.zip"
 
  50   not_if { File.exist?("/opt/piwik-#{version}/piwik") }
 
  53 execute "unzip-piwik-#{version}" do
 
  54   command "unzip -q #{Chef::Config[:file_cache_path]}/piwik-#{version}.zip"
 
  55   cwd "/opt/piwik-#{version}"
 
  58   not_if { File.exist?("/opt/piwik-#{version}/piwik") }
 
  61 execute "/opt/piwik-#{version}/piwik/piwik.js" do
 
  62   command "gzip -k -9 /opt/piwik-#{version}/piwik/piwik.js"
 
  63   cwd "/opt/piwik-#{version}"
 
  66   not_if { File.exist?("/opt/piwik-#{version}/piwik/piwik.js.gz") }
 
  69 directory "/opt/piwik-#{version}/piwik/config" do
 
  75 template "/opt/piwik-#{version}/piwik/config/config.ini.php" do
 
  80   variables :passwords => passwords,
 
  81             :directory => "/opt/piwik-#{version}/piwik",
 
  82             :plugins => node[:piwik][:plugins]
 
  85 directory "/opt/piwik-#{version}/piwik/tmp" do
 
  91 link "/opt/piwik-#{version}/piwik/misc/GeoLite2-ASN.mmdb" do
 
  92   to "/var/lib/GeoIP/GeoLite2-ASN.mmdb"
 
  95 link "/opt/piwik-#{version}/piwik/misc/GeoLite2-City.mmdb" do
 
  96   to "/var/lib/GeoIP/GeoLite2-City.mmdb"
 
  99 link "/opt/piwik-#{version}/piwik/misc/GeoLite2-Country.mmdb" do
 
 100   to "/var/lib/GeoIP/GeoLite2-Country.mmdb"
 
 103 link "/srv/piwik.openstreetmap.org" do
 
 104   to "/opt/piwik-#{version}/piwik"
 
 105   notifies :restart, "service[apache2]"
 
 108 mysql_user "piwik@localhost" do
 
 109   password passwords["database"]
 
 112 mysql_database "piwik" do
 
 113   permissions "piwik@localhost" => :all
 
 116 ssl_certificate "piwik.openstreetmap.org" do
 
 117   domains ["piwik.openstreetmap.org", "piwik.osm.org"]
 
 118   notifies :reload, "service[apache2]"
 
 121 apache_site "piwik.openstreetmap.org" do
 
 122   template "apache.erb"
 
 125 template "/etc/cron.d/piwiki" do