]> git.openstreetmap.org Git - chef.git/blob - cookbooks/taginfo/recipes/default.rb
Convert taginfo update to use a systemd timer
[chef.git] / cookbooks / taginfo / recipes / default.rb
1 #
2 # Cookbook:: taginfo
3 # Recipe:: default
4 #
5 # Copyright:: 2014, 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 require "json"
21
22 include_recipe "accounts"
23 include_recipe "apache"
24 include_recipe "git"
25 include_recipe "passenger"
26 include_recipe "planet::current"
27 include_recipe "ruby"
28
29 package %w[
30   libsqlite3-dev
31   zlib1g-dev
32   libbz2-dev
33   libboost-dev
34   libexpat1-dev
35   libsparsehash-dev
36   libgd-dev
37   libicu-dev
38   libboost-program-options-dev
39   libosmium2-dev
40   libprotozero-dev
41   cmake
42   make
43   g++
44 ]
45
46 package %w[
47   sqlite3
48   sqlite3-pcre
49   osmium-tool
50   pyosmium
51   curl
52   pbzip2
53 ]
54
55 apache_module "cache"
56 apache_module "cache_disk"
57 apache_module "headers"
58
59 directory "/var/log/taginfo" do
60   owner "taginfo"
61   group "taginfo"
62   mode "755"
63 end
64
65 template "/etc/sudoers.d/taginfo" do
66   source "sudoers.erb"
67   owner "root"
68   group "root"
69   mode "440"
70 end
71
72 systemd_service "taginfo-update@" do
73   description "Taginfo update for %i"
74   wants "planet-update.service"
75   after "planet-update.service"
76   exec_start "/srv/%i/bin/update"
77   user "taginfo"
78   sandbox :enable_network => true
79   read_write_paths [
80     "/srv/%i/data",
81     "/srv/%i/sources",
82     "/var/log/taginfo/%i"
83   ]
84 end
85
86 systemd_timer "taginfo-update@" do
87   description "Taginfo update for %i"
88   on_calendar "01:37"
89 end
90
91 node[:taginfo][:sites].each do |site|
92   site_name = site[:name]
93   site_aliases = Array(site[:aliases])
94   directory = site[:directory] || "/srv/#{site_name}"
95   description = site[:description]
96   about = site[:about]
97   icon = site[:icon]
98   contact = site[:contact]
99
100   directory "/var/log/taginfo/#{site_name}" do
101     owner "taginfo"
102     group "taginfo"
103     mode "755"
104   end
105
106   directory directory do
107     owner "taginfo"
108     group "taginfo"
109     mode "755"
110   end
111
112   git "#{directory}/taginfo-tools" do
113     action :sync
114     repository "https://github.com/taginfo/taginfo-tools.git"
115     revision "osmorg-taginfo-live"
116     depth 1
117     enable_submodules true
118     user "taginfo"
119     group "taginfo"
120   end
121
122   directory "#{directory}/build" do
123     owner "taginfo"
124     group "taginfo"
125     mode "755"
126   end
127
128   execute "compile_taginfo_tools" do
129     action :nothing
130     user "taginfo"
131     group "taginfo"
132     cwd "#{directory}/build"
133     command "cmake #{directory}/taginfo-tools -DCMAKE_BUILD_TYPE=Release && make"
134     subscribes :run, "apt_package[libprotozero-dev]"
135     subscribes :run, "apt_package[libosmium2-dev]"
136     subscribes :run, "git[#{directory}/taginfo-tools]"
137   end
138
139   git "#{directory}/taginfo" do
140     action :sync
141     repository "https://github.com/taginfo/taginfo.git"
142     revision "osmorg-taginfo-live"
143     depth 1
144     user "taginfo"
145     group "taginfo"
146   end
147
148   settings = Chef::DelayedEvaluator.new do
149     settings = JSON.parse(IO.read("#{directory}/taginfo/taginfo-config-example.json"))
150
151     settings["instance"]["url"] = "https://#{site_name}/"
152     settings["instance"]["description"] = description
153     settings["instance"]["about"] = about
154     settings["instance"]["icon"] = "/img/logo/#{icon}.png"
155     settings["instance"]["contact"] = contact
156     settings["instance"]["access_control_allow_origin"] = ""
157     settings["logging"]["directory"] = "/var/log/taginfo/#{site_name}"
158     settings["opensearch"]["shortname"] = "Taginfo"
159     settings["opensearch"]["contact"] = "webmaster@openstreetmap.org"
160     settings["paths"]["bin_dir"] = "#{directory}/build/src"
161     settings["sources"]["download"] = ""
162     settings["sources"]["create"] = "db languages projects wiki chronology"
163     settings["sources"]["db"]["planetfile"] = "/var/lib/planet/planet.osh.pbf"
164     settings["sources"]["chronology"]["osm_history_file"] = "/var/lib/planet/planet.osh.pbf"
165     settings["tagstats"]["geodistribution"] = "DenseMmapArray"
166
167     JSON.pretty_generate(settings)
168   end
169
170   file "#{directory}/taginfo-config.json" do
171     owner "taginfo"
172     group "taginfo"
173     mode "644"
174     content settings
175     notifies :restart, "service[apache2]"
176   end
177
178   bundle_install "#{directory}/taginfo" do
179     action :nothing
180     user "root"
181     group "root"
182     subscribes :run, "git[#{directory}/taginfo]"
183     notifies :restart, "passenger_application[#{directory}/taginfo/web/public]"
184   end
185
186   %w[taginfo/web/tmp bin data data/old download sources].each do |dir|
187     directory "#{directory}/#{dir}" do
188       owner "taginfo"
189       group "taginfo"
190       mode "755"
191     end
192   end
193
194   template "#{directory}/bin/update" do
195     source "update.erb"
196     owner "taginfo"
197     group "taginfo"
198     mode "755"
199     variables :name => site_name, :directory => directory
200   end
201
202   passenger_application "#{directory}/taginfo/web/public" do
203     action :nothing
204   end
205
206   ssl_certificate site_name do
207     domains [site_name] + site_aliases
208     notifies :reload, "service[apache2]"
209   end
210
211   apache_site site_name do
212     template "apache.erb"
213     directory "#{directory}/taginfo/web/public"
214     variables :aliases => site_aliases
215   end
216
217   service "taginfo-update@#{site_name}.timer" do
218     action [:enable, :start]
219   end
220 end