]> git.openstreetmap.org Git - chef.git/blob - cookbooks/matomo/recipes/default.rb
Allow overwriting when compressing matomo script
[chef.git] / cookbooks / matomo / recipes / default.rb
1 #
2 # Cookbook:: matomo
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 include_recipe "php::fpm"
24
25 passwords = data_bag_item("matomo", "passwords")
26
27 package %w[
28   brotli
29   gzip
30   php-cli
31   php-curl
32   php-mbstring
33   php-mysql
34   php-gd
35   php-xml
36   php-apcu
37 ]
38
39 apache_module "expires"
40 apache_module "rewrite"
41
42 version = node[:matomo][:version]
43
44 geoip_directory = node[:geoipupdate][:directory]
45
46 remote_file "#{Chef::Config[:file_cache_path]}/matomo-#{version}.zip" do
47   source "https://builds.matomo.org/matomo-#{version}.zip"
48 end
49
50 archive_file "#{Chef::Config[:file_cache_path]}/matomo-#{version}.zip" do
51   destination "/opt/matomo-#{version}"
52   notifies :run, "notify_group[matomo-updated]"
53 end
54
55 node[:matomo][:plugins].each do |plugin_name, plugin_version|
56   next if plugin_version.nil?
57
58   remote_file "#{Chef::Config[:file_cache_path]}/matomo-#{plugin_name}-#{plugin_version}.zip" do
59     source "https://plugins.matomo.org/api/2.0/plugins/#{plugin_name}/download/#{plugin_version}"
60   end
61
62   archive_file "#{Chef::Config[:file_cache_path]}/matomo-#{plugin_name}-#{plugin_version}.zip" do
63     destination "/opt/matomo-#{version}/matomo/plugins"
64     overwrite :auto
65     notifies :run, "notify_group[matomo-updated]"
66   end
67 end
68
69 directory "/opt/matomo-#{version}/matomo/config" do
70   owner "www-data"
71   group "www-data"
72   mode "0755"
73 end
74
75 template "/opt/matomo-#{version}/matomo/config/config.ini.php" do
76   source "config.erb"
77   owner "root"
78   group "root"
79   mode "0644"
80   variables :passwords => passwords,
81             :directory => "/opt/matomo-#{version}/matomo",
82             :plugins => node[:matomo][:plugins].keys.sort
83   notifies :run, "notify_group[matomo-updated]"
84 end
85
86 directory "/opt/matomo-#{version}/matomo/tmp" do
87   owner "www-data"
88   group "www-data"
89   mode "0755"
90 end
91
92 directory "/opt/matomo-#{version}/matomo/tmp/assets" do
93   owner "www-data"
94   group "mysql"
95   mode "0750"
96 end
97
98 directory "/opt/matomo-#{version}/matomo/tmp/cache" do
99   owner "www-data"
100   group "www-data"
101   mode "0750"
102 end
103
104 link "/opt/matomo-#{version}/matomo/misc/GeoLite2-ASN.mmdb" do
105   to "#{geoip_directory}/GeoLite2-ASN.mmdb"
106 end
107
108 link "/opt/matomo-#{version}/matomo/misc/GeoLite2-City.mmdb" do
109   to "#{geoip_directory}/GeoLite2-City.mmdb"
110 end
111
112 link "/opt/matomo-#{version}/matomo/misc/GeoLite2-Country.mmdb" do
113   to "#{geoip_directory}/GeoLite2-Country.mmdb"
114 end
115
116 mysql_user "piwik@localhost" do
117   password passwords["database"]
118 end
119
120 mysql_database "piwik" do
121   permissions "piwik@localhost" => :all
122 end
123
124 notify_group "matomo-updated"
125
126 if File.symlink?("/srv/matomo.openstreetmap.org")
127   execute "core:update" do
128     action :nothing
129     command "/opt/matomo-#{version}/matomo/console core:update --yes"
130     user "www-data"
131     group "www-data"
132     subscribes :run, "notify_group[matomo-updated]"
133   end
134
135   execute "custom-matomo-js:update" do
136     action :nothing
137     command "/opt/matomo-#{version}/matomo/console custom-matomo-js:update"
138     user "root"
139     group "root"
140     subscribes :run, "execute[core:update]"
141   end
142
143   execute "/opt/matomo-#{version}/matomo/matomo.br" do
144     action :nothing
145     command "brotli --keep --force --best /opt/matomo-#{version}/matomo/matomo.js"
146     cwd "/opt/matomo-#{version}"
147     user "root"
148     group "root"
149     subscribes :run, "execute[custom-matomo-js:update]"
150   end
151
152   execute "/opt/matomo-#{version}/matomo/matomo.js" do
153     action :nothing
154     command "gzip --keep --force --best /opt/matomo-#{version}/matomo/matomo.js"
155     cwd "/opt/matomo-#{version}"
156     user "root"
157     group "root"
158     subscribes :run, "execute[custom-matomo-js:update]"
159   end
160
161   execute "/opt/matomo-#{version}/matomo/piwik.br" do
162     action :nothing
163     command "brotli --keep --force --best /opt/matomo-#{version}/matomo/piwik.js"
164     cwd "/opt/matomo-#{version}"
165     user "root"
166     group "root"
167     subscribes :run, "execute[custom-matomo-js:update]"
168   end
169
170   execute "/opt/matomo-#{version}/matomo/piwik.js" do
171     action :nothing
172     command "gzip --keep --force --best /opt/matomo-#{version}/matomo/piwik.js"
173     cwd "/opt/matomo-#{version}"
174     user "root"
175     group "root"
176     subscribes :run, "execute[custom-matomo-js:update]"
177   end
178 end
179
180 link "/srv/matomo.openstreetmap.org" do
181   to "/opt/matomo-#{version}/matomo"
182   notifies :restart, "service[php#{node[:php][:version]}-fpm]"
183 end
184
185 ssl_certificate "matomo.openstreetmap.org" do
186   domains ["matomo.openstreetmap.org", "matomo.osm.org",
187            "piwik.openstreetmap.org", "piwik.osm.org"]
188   notifies :reload, "service[apache2]"
189 end
190
191 php_fpm "matomo.openstreetmap.org" do
192   prometheus_port 9253
193 end
194
195 apache_site "matomo.openstreetmap.org" do
196   template "apache.erb"
197 end
198
199 cron_d "matomo" do
200   minute "5"
201   user "www-data"
202   command "/usr/bin/php /srv/matomo.openstreetmap.org/console core:archive --quiet --url=https://matomo.openstreetmap.org/"
203 end