]> git.openstreetmap.org Git - chef.git/blob - cookbooks/nominatim/recipes/default.rb
bb5ff5c946e586929628e95a7b43b578869b9e99
[chef.git] / cookbooks / nominatim / recipes / default.rb
1 #
2 # Cookbook Name:: nominatim
3 # Recipe:: default
4 #
5 # Copyright 2012, 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 include_recipe "apache::ssl"
21 include_recipe "postgresql"
22 include_recipe "git"
23
24 package "php5"
25 package "php5-cli"
26 package "php5-pgsql"
27 package "php5-fpm"
28 package "php-pear"
29 package "php-apc"
30
31 apache_module "rewrite"
32 apache_module "proxy"
33 apache_module "proxy_fcgi"
34
35 home_directory = data_bag_item("accounts", "nominatim")["home"]
36 source_directory = "#{home_directory}/nominatim"
37 email_errors = data_bag_item("accounts", "lonvia")["email"]
38
39 database_cluster = node[:nominatim][:database][:cluster]
40 database_version = database_cluster.sub(/\/.*/, "")
41 database_name = node[:nominatim][:database][:dbname]
42
43 postgis_version = node[:nominatim][:database][:postgis]
44
45 service "php5-fpm" do
46   provider Chef::Provider::Service::Upstart
47   action [ :enable, :start ]
48   supports :status => true, :restart => true, :reload => true
49 end
50
51 apache_site "nominatim.openstreetmap.org" do
52   template "apache.erb"
53   directory source_directory
54   variables :pools => node[:nominatim][:fpm_pools]
55 end
56
57 apache_site "default" do
58   action [ :disable ]
59 end
60
61 node[:nominatim][:fpm_pools].each do |name,data|
62   template "/etc/php5/fpm/pool.d/#{name}.conf" do
63     source "fpm.conf.erb"
64     owner "root"
65     group "root"
66     mode 0644
67     variables data.merge(:name => name, :port => data[:port])
68     notifies :reload, "service[php5-fpm]"
69   end
70 end
71
72 postgresql_user "tomh" do
73   cluster database_cluster
74   superuser true
75 end
76
77 postgresql_user "lonvia" do
78   cluster database_cluster
79   superuser true
80 end
81
82 postgresql_user "twain" do
83   cluster database_cluster
84   superuser true
85 end
86
87 postgresql_user "nominatim" do
88   cluster database_cluster
89   superuser true
90 end
91
92 postgresql_user "www-data" do
93   cluster database_cluster
94 end
95
96 postgresql_munin "nominatim" do
97   cluster database_cluster
98   database database_name
99 end
100
101 directory "/var/log/nominatim" do
102   owner "nominatim"
103   group "nominatim"
104   mode 0755
105 end
106
107 template "/etc/logrotate.d/nominatim" do
108   source "logrotate.nominatim.erb"
109   owner "root"
110   group "root"
111   mode 0644
112 end
113
114
115 package "osmosis"
116 package "gcc"
117 package "proj-bin"
118 package "libgeos-c1"
119 package "postgresql-#{database_version}-postgis-#{postgis_version}"
120 package "postgresql-server-dev-#{database_version}"
121 package "build-essential"
122 package "libxml2-dev"
123 package "libgeos-dev"
124 package "libgeos++-dev"
125 package "libpq-dev"
126 package "libbz2-dev"
127 package "libtool"
128 package "automake"
129 package "libproj-dev"
130 package "libprotobuf-c0-dev"
131 package "protobuf-c-compiler"
132 package "python-psycopg2"
133 package "libboost-dev"
134 package "libboost-system-dev"
135 package "libboost-filesystem-dev"
136 package "libboost-thread-dev"
137
138 execute "php-pear-db" do
139   command "pear install DB"
140   not_if { File.exists?("/usr/share/php/DB") }
141 end
142
143 execute "compile_nominatim" do
144   action :nothing
145   command "cd #{source_directory} && ./autogen.sh && ./configure && make"
146   user "nominatim"
147 end
148
149 git source_directory do
150   action :checkout
151   repository node[:nominatim][:repository]
152   enable_submodules true
153   user "nominatim"
154   group "nominatim"
155   notifies :run, "execute[compile_nominatim]"
156 end
157
158 directory "#{source_directory}/log" do
159   owner "nominatim"
160   group "nominatim"
161   mode 0755
162 end
163
164
165 template "#{source_directory}/.git/hooks/post-merge" do
166   source "update_source.erb"
167   owner  "nominatim"
168   group  "nominatim"
169   mode   0755
170   variables :source_directory => source_directory
171 end
172
173 template "#{source_directory}/settings/local.php" do
174   source "nominatim.erb"
175   owner "nominatim"
176   group "nominatim"
177   mode 0664
178   variables :postgres_version => database_version
179 end
180
181 template "#{source_directory}/settings/ip_blocks.conf" do
182   action :create_if_missing
183   source "ipblocks.erb"
184   owner "nominatim"
185   group "nominatim"
186   mode 0664
187 end
188
189 file "#{source_directory}/settings/apache_blocks.conf" do
190   action :create_if_missing
191   owner "nominatim"
192   group "nominatim"
193   mode 0664
194 end
195
196 file "#{source_directory}/settings/ip_blocks.map" do
197   action :create_if_missing
198   owner "nominatim"
199   group "nominatim"
200   mode 0664
201 end
202
203 if node[:nominatim][:enabled]
204   cron_action = :create
205 else
206   cron_action = :delete
207 end
208
209 template "/etc/cron.d/nominatim" do
210   action cron_action
211   source "cron.erb"
212   owner "root"
213   group "root"
214   mode "0644"
215   variables :bin_directory => "#{source_directory}/utils", :mailto => email_errors
216 end
217
218
219 template "#{source_directory}/utils/nominatim-update" do
220   source "updater.erb"
221   user   "nominatim"
222   group  "nominatim"
223   mode   0755
224 end
225
226 template "/etc/init.d/nominatim-update" do
227   source "updater.init.erb"
228   user   "nominatim"
229   group  "nominatim"
230   mode   0755
231   variables :source_directory => source_directory
232 end
233
234 munin_plugin_conf "nominatim" do
235   template "munin.erb"
236 end
237
238 munin_plugin "nominatim_importlag" do
239   target "#{source_directory}/munin/nominatim_importlag"
240 end
241
242 munin_plugin "nominatim_query_speed" do
243   target "#{source_directory}/munin/nominatim_query_speed_querylog"
244 end
245
246 munin_plugin "nominatim_requests" do
247   target "#{source_directory}/munin/nominatim_requests_querylog"
248 end
249
250 munin_plugin "nominatim_throttled_ips" do
251   target "#{source_directory}/munin/nominatim_throttled_ips"
252 end
253
254 remote_file "#{source_directory}/data/wikipedia_article.sql.bin" do
255   action :create_if_missing
256   source "http://www.nominatim.org/data/wikipedia_article.sql.bin"
257   owner  "nominatim"
258   group  "nominatim"
259   mode   0644
260 end
261
262 remote_file "#{source_directory}/data/wikipedia_redirect.sql.bin" do
263   action :create_if_missing
264   source "http://www.nominatim.org/data/wikipedia_redirect.sql.bin"
265   owner  "nominatim"
266   group  "nominatim"
267   mode   0644
268 end
269
270 remote_file "#{source_directory}/data/gb_postcode_data.sql.gz" do
271   action :create_if_missing
272   source "http://www.nominatim.org/data/gb_postcode_data.sql.gz"
273   owner  "nominatim"
274   group  "nominatim"
275   mode   0644
276 end
277
278 template "/usr/local/bin/backup-nominatim" do
279   source "backup-nominatim.erb"
280   owner "root"
281   group "root"
282   mode 0755
283 end
284
285 directory File.dirname(node[:nominatim][:flatnode_file]) do
286   owner "nominatim"
287   group "nominatim"
288   mode 0755
289   recursive true
290 end
291