]> git.openstreetmap.org Git - chef.git/blob - cookbooks/piwik/recipes/default.rb
a6b2bf3a7aa283572478fb49398dabcfed52f886
[chef.git] / cookbooks / piwik / recipes / default.rb
1 #
2 # Cookbook:: piwik
3 # Recipe:: default
4 #
5 # Copyright:: 2011, OpenStreetMap Foundation
6 #
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
10 #
11 #     https://www.apache.org/licenses/LICENSE-2.0
12 #
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.
18 #
19
20 include_recipe "apache"
21 include_recipe "geoipupdate"
22 include_recipe "mysql"
23
24 passwords = data_bag_item("piwik", "passwords")
25
26 package "php"
27 package "php-cli"
28 package "php-curl"
29 package "php-mbstring"
30 package "php-mysql"
31 package "php-gd"
32 package "php-xml"
33 package "php-apcu"
34
35 apache_module "expires"
36 apache_module "php7.2"
37 apache_module "rewrite"
38
39 version = node[:piwik][:version]
40
41 directory "/opt/piwik-#{version}" do
42   owner "root"
43   group "root"
44   mode "0755"
45 end
46
47 remote_file "#{Chef::Config[:file_cache_path]}/piwik-#{version}.zip" do
48   source "https://builds.matomo.org/piwik-#{version}.zip"
49   not_if { ::File.exist?("/opt/piwik-#{version}/piwik") }
50 end
51
52 execute "unzip-piwik-#{version}" do
53   command "unzip -q #{Chef::Config[:file_cache_path]}/piwik-#{version}.zip"
54   cwd "/opt/piwik-#{version}"
55   user "root"
56   group "root"
57   not_if { ::File.exist?("/opt/piwik-#{version}/piwik") }
58 end
59
60 execute "/opt/piwik-#{version}/piwik/piwik.js" do
61   command "gzip -k -9 /opt/piwik-#{version}/piwik/piwik.js"
62   cwd "/opt/piwik-#{version}"
63   user "root"
64   group "root"
65   not_if { ::File.exist?("/opt/piwik-#{version}/piwik/piwik.js.gz") }
66 end
67
68 directory "/opt/piwik-#{version}/piwik/config" do
69   owner "www-data"
70   group "www-data"
71   mode "0755"
72 end
73
74 template "/opt/piwik-#{version}/piwik/config/config.ini.php" do
75   source "config.erb"
76   owner "root"
77   group "root"
78   mode "0644"
79   variables :passwords => passwords,
80             :directory => "/opt/piwik-#{version}/piwik",
81             :plugins => node[:piwik][:plugins]
82 end
83
84 directory "/opt/piwik-#{version}/piwik/tmp" do
85   owner "www-data"
86   group "www-data"
87   mode "0755"
88 end
89
90 link "/opt/piwik-#{version}/piwik/misc/GeoLite2-ASN.mmdb" do
91   to "/usr/share/GeoIP/GeoLite2-ASN.mmdb"
92 end
93
94 link "/opt/piwik-#{version}/piwik/misc/GeoLite2-City.mmdb" do
95   to "/usr/share/GeoIP/GeoLite2-City.mmdb"
96 end
97
98 link "/opt/piwik-#{version}/piwik/misc/GeoLite2-Country.mmdb" do
99   to "/usr/share/GeoIP/GeoLite2-Country.mmdb"
100 end
101
102 link "/srv/piwik.openstreetmap.org" do
103   to "/opt/piwik-#{version}/piwik"
104   notifies :restart, "service[apache2]"
105 end
106
107 mysql_user "piwik@localhost" do
108   password passwords["database"]
109 end
110
111 mysql_database "piwik" do
112   permissions "piwik@localhost" => :all
113 end
114
115 ssl_certificate "piwik.openstreetmap.org" do
116   domains ["piwik.openstreetmap.org", "piwik.osm.org"]
117   notifies :reload, "service[apache2]"
118 end
119
120 apache_site "piwik.openstreetmap.org" do
121   template "apache.erb"
122 end
123
124 template "/etc/cron.d/piwiki" do
125   source "cron.erb"
126   owner "root"
127   group "root"
128   mode "0644"
129 end