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
86 systemd_timer "taginfo-update@" do
87 description "Taginfo update for %i"
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]
98 contact = site[:contact]
100 directory "/var/log/taginfo/#{site_name}" do
106 directory directory do
112 git "#{directory}/taginfo-tools" do
114 repository "https://github.com/taginfo/taginfo-tools.git"
115 revision "osmorg-taginfo-live"
117 enable_submodules true
122 directory "#{directory}/build" do
128 execute "compile_taginfo_tools" do
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]"
139 git "#{directory}/taginfo" do
141 repository "https://github.com/taginfo/taginfo.git"
142 revision "osmorg-taginfo-live"
148 settings = Chef::DelayedEvaluator.new do
149 settings = JSON.parse(IO.read("#{directory}/taginfo/taginfo-config-example.json"))
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"
167 JSON.pretty_generate(settings)
170 file "#{directory}/taginfo-config.json" do
175 notifies :restart, "service[apache2]"
178 bundle_install "#{directory}/taginfo" do
182 subscribes :run, "git[#{directory}/taginfo]"
183 notifies :restart, "passenger_application[#{directory}/taginfo/web/public]"
186 %w[taginfo/web/tmp bin data data/old download sources].each do |dir|
187 directory "#{directory}/#{dir}" do
194 template "#{directory}/bin/update" do
199 variables :name => site_name, :directory => directory
202 passenger_application "#{directory}/taginfo/web/public" do
206 ssl_certificate site_name do
207 domains [site_name] + site_aliases
208 notifies :reload, "service[apache2]"
211 apache_site site_name do
212 template "apache.erb"
213 directory "#{directory}/taginfo/web/public"
214 variables :aliases => site_aliases
217 service "taginfo-update@#{site_name}.timer" do
218 action [:enable, :start]