2 # Cookbook Name:: taginfo
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 # http://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 "apache::ssl"
23 include_recipe "passenger"
26 package "libsqlite3-dev"
28 package "libosmpbf-dev"
29 package "libprotobuf-dev"
30 package "libboost-dev"
31 package "libexpat1-dev"
32 package "libsparsehash-dev"
33 package "libgd2-xpm-dev"
44 gem_package "sinatra-r18n"
45 gem_package "rack-contrib"
47 node[:taginfo][:sites].each do |site|
49 directory = site[:directory] || "/srv/#{name}"
50 description = site[:description]
52 contact = site[:contact]
54 directory directory do
60 git "#{directory}/osmium" do
62 repository "git://github.com/joto/osmium.git"
68 git "#{directory}/taginfo" do
70 repository "git://github.com/joto/taginfo.git"
76 settings = JSON.parse(IO.read("#{directory}/taginfo/taginfo-config-example.json"))
78 settings["instance"]["url"] = "http://#{name}/"
79 settings["instance"]["description"] = description
80 settings["instance"]["icon"] = "/img/logo/#{icon}.png"
81 settings["instance"]["contact"] = contact
82 settings["opensearch"]["shortname"] = "Taginfo"
83 settings["opensearch"]["contact"] = "webmaster@openstreetmap.org"
84 settings["tagstats"]["cxxflags"] = "-I../../osmium/include"
86 file "#{directory}/taginfo-config.json" do
90 content JSON.pretty_generate(settings)
93 execute "#{directory}/taginfo/tagstats/Makefile" do
96 cwd "#{directory}/taginfo/tagstats"
99 subscribes :run, "git[#{directory}/osmium]"
100 subscribes :run, "git[#{directory}/taginfo]"
101 notifies :restart, "service[apache2]"
104 directory "#{directory}/data" do
111 template "apache.erb"
112 directory "#{directory}/taginfo/web/public"