]> git.openstreetmap.org Git - chef.git/blob - cookbooks/taginfo/recipes/default.rb
Install osmosis for taginfo
[chef.git] / cookbooks / taginfo / recipes / default.rb
1 #
2 # Cookbook Name:: 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 #     http://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 "apache::ssl"
23 include_recipe "passenger"
24 include_recipe "git"
25
26 package "libsqlite3-dev"
27 package "zlib1g-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"
34 package "make"
35 package "g++"
36
37 package "sqlite3"
38
39 package "osmosis"
40
41 package "ruby"
42 package "rubygems"
43 gem_package "json"
44 gem_package "sqlite3"
45 gem_package "sinatra"
46 gem_package "sinatra-r18n"
47 gem_package "rack-contrib"
48
49 node[:taginfo][:sites].each do |site|
50   name = site[:name]
51   directory = site[:directory] || "/srv/#{name}"
52   description = site[:description]
53   icon = site[:icon]
54   contact = site[:contact]
55
56   directory directory do
57     owner "taginfo"
58     group "taginfo"
59     mode 0755
60   end
61
62   git "#{directory}/osmium" do
63     action :sync
64     repository "git://github.com/joto/osmium.git"
65     revision "master"
66     user "taginfo"
67     group "taginfo"
68   end
69
70   git "#{directory}/taginfo" do
71     action :sync
72     repository "git://github.com/joto/taginfo.git"
73     revision "master"
74     user "taginfo"
75     group "taginfo"
76   end
77
78   settings = JSON.parse(IO.read("#{directory}/taginfo/taginfo-config-example.json"))
79
80   settings["instance"]["url"] = "http://#{name}/"
81   settings["instance"]["description"] = description
82   settings["instance"]["icon"] = "/img/logo/#{icon}.png"
83   settings["instance"]["contact"] = contact
84   settings["opensearch"]["shortname"] = "Taginfo"
85   settings["opensearch"]["contact"] = "webmaster@openstreetmap.org"
86   settings["tagstats"]["cxxflags"] = "-I../../osmium/include"
87
88   file "#{directory}/taginfo-config.json" do
89     owner "taginfo"
90     group "taginfo"
91     mode 0644
92     content JSON.pretty_generate(settings)
93   end
94
95   execute "#{directory}/taginfo/tagstats/Makefile" do
96     action :nothing
97     command "make"
98     cwd "#{directory}/taginfo/tagstats"
99     user "taginfo"
100     group "taginfo"
101     subscribes :run, "git[#{directory}/osmium]"
102     subscribes :run, "git[#{directory}/taginfo]"
103     notifies :restart, "service[apache2]"
104   end
105
106   directory "#{directory}/planet" do
107     owner "taginfo"
108     group "taginfo"
109     mode 0755
110   end
111
112   remote_file "#{directory}/planet/planet.pbf" do
113     action :create_if_missing
114     source "http://planet.openstreetmap.org/pbf/planet-latest.osm.pbf"
115     owner "taginfo"
116     group "taginfo"
117     mode 0644
118   end
119
120   template "#{directory}/planet/configuration.txt" do
121     source "configuration.txt.erb"
122     owner "taginfo"
123     group "taginfo"
124     mode 0644
125   end
126
127   file "#{directory}/planet/download.lock" do
128     owner "taginfo"
129     group "taginfo"
130     mode 0644
131   end
132
133   directory "#{directory}/bin" do
134     owner "taginfo"
135     group "taginfo"
136     mode 0755
137   end
138
139   template "#{directory}/bin/update-planet" do
140     source "update-planet.erb"
141     owner "taginfo"
142     group "taginfo"
143     mode 0755
144     variables :directory => directory
145   end
146
147   directory "#{directory}/data" do
148     owner "taginfo"
149     group "taginfo"
150     mode 0755
151   end
152
153   apache_site name do
154     template "apache.erb"
155     directory "#{directory}/taginfo/web/public"
156   end
157 end