5 # Copyright:: 2014, 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.
22 include_recipe "accounts"
23 include_recipe "apache"
25 include_recipe "passenger"
26 include_recipe "planet::current"
38 libboost-program-options-dev
56 apache_module "cache_disk"
57 apache_module "headers"
59 directory "/var/log/taginfo" do
65 template "/etc/sudoers.d/taginfo" do
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"
78 sandbox :enable_network => true
87 systemd_timer "taginfo-update@" do
88 description "Taginfo update for %i"
92 node[:taginfo][:sites].each do |site|
93 site_name = site[:name]
94 site_aliases = Array(site[:aliases])
95 directory = site[:directory] || "/srv/#{site_name}"
96 description = site[:description]
99 contact = site[:contact]
101 directory "/var/log/taginfo/#{site_name}" do
107 directory directory do
113 git "#{directory}/taginfo-tools" do
115 repository "https://github.com/taginfo/taginfo-tools.git"
116 revision "osmorg-taginfo-live"
118 enable_submodules true
123 directory "#{directory}/build" do
129 execute "compile_taginfo_tools" do
133 cwd "#{directory}/build"
134 command "cmake #{directory}/taginfo-tools -DCMAKE_BUILD_TYPE=Release && make"
135 subscribes :run, "apt_package[libprotozero-dev]"
136 subscribes :run, "apt_package[libosmium2-dev]"
137 subscribes :run, "git[#{directory}/taginfo-tools]"
140 git "#{directory}/taginfo" do
142 repository "https://github.com/taginfo/taginfo.git"
143 revision "osmorg-taginfo-live"
149 settings = Chef::DelayedEvaluator.new do
150 settings = JSON.parse(IO.read("#{directory}/taginfo/taginfo-config-example.json"))
152 settings["instance"]["url"] = "https://#{site_name}/"
153 settings["instance"]["description"] = description
154 settings["instance"]["about"] = about
155 settings["instance"]["icon"] = "/img/logo/#{icon}.png"
156 settings["instance"]["contact"] = contact
157 settings["instance"]["access_control_allow_origin"] = ""
158 settings["logging"]["directory"] = "/var/log/taginfo/#{site_name}"
159 settings["opensearch"]["shortname"] = "Taginfo"
160 settings["opensearch"]["contact"] = "webmaster@openstreetmap.org"
161 settings["paths"]["bin_dir"] = "#{directory}/build/src"
162 settings["sources"]["download"] = ""
163 settings["sources"]["create"] = "db languages projects wiki chronology"
164 settings["sources"]["db"]["planetfile"] = "/var/lib/planet/planet.osh.pbf"
165 settings["sources"]["chronology"]["osm_history_file"] = "/var/lib/planet/planet.osh.pbf"
166 settings["tagstats"]["geodistribution"] = "DenseMmapArray"
168 JSON.pretty_generate(settings)
171 file "#{directory}/taginfo-config.json" do
176 notifies :restart, "service[apache2]"
179 bundle_install "#{directory}/taginfo" do
183 subscribes :run, "git[#{directory}/taginfo]"
184 notifies :restart, "passenger_application[#{directory}/taginfo/web/public]"
187 %w[taginfo/web/tmp bin data data/old download sources].each do |dir|
188 directory "#{directory}/#{dir}" do
195 template "#{directory}/bin/update" do
200 variables :name => site_name, :directory => directory
203 passenger_application "#{directory}/taginfo/web/public" do
207 ssl_certificate site_name do
208 domains [site_name] + site_aliases
209 notifies :reload, "service[apache2]"
212 apache_site site_name do
213 template "apache.erb"
214 directory "#{directory}/taginfo/web/public"
215 variables :aliases => site_aliases
218 service "taginfo-update@#{site_name}.timer" do
219 action [:enable, :start]