]> git.openstreetmap.org Git - chef.git/blob - cookbooks/web/recipes/cgimap.rb
d2966e1beff0deab83d7052c14d18017570c13e2
[chef.git] / cookbooks / web / recipes / cgimap.rb
1 #
2 # Cookbook Name:: web
3 # Recipe:: cgimap
4 #
5 # Copyright 2011, 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 "tools"
21 include_recipe "web::base"
22
23 db_passwords = data_bag_item("db", "passwords")
24
25 package "openstreetmap-cgimap-bin"
26
27 if node[:web][:readonly_database_host]
28   database_host = node[:web][:readonly_database_host]
29   database_readonly = true
30 else
31   database_host = node[:web][:database_host]
32   database_readonly = node[:web][:status] == "database_readonly"
33 end
34
35 memcached_servers = node[:web][:memcached_servers] || []
36
37 switches = database_readonly ? " --readonly" : ""
38
39 systemd_service "cgimap" do
40   description "OpenStreetMap API Server"
41   type "forking"
42   environment "CGIMAP_HOST" => database_host,
43               "CGIMAP_DBNAME" => "openstreetmap",
44               "CGIMAP_USERNAME" => "rails",
45               "CGIMAP_PASSWORD" => db_passwords["rails"],
46               "CGIMAP_OAUTH_HOST" => node[:web][:database_host],
47               "CGIMAP_PIDFILE" => "#{node[:web][:pid_directory]}/cgimap.pid",
48               "CGIMAP_LOGFILE" => "#{node[:web][:log_directory]}/cgimap.log",
49               "CGIMAP_MEMCACHE" => memcached_servers.join(","),
50               "CGIMAP_RATELIMIT" => "204800",
51               "CGIMAP_MAXDEBT" => "250"
52   user "rails"
53   exec_start "/usr/bin/openstreetmap-cgimap --daemon --port 8000 --instances 30#{switches}"
54   private_tmp true
55   private_devices true
56   protect_system "full"
57   protect_home true
58   restart "on-failure"
59   pid_file "#{node[:web][:pid_directory]}/cgimap.pid"
60 end
61
62 if %w(database_offline api_offline).include?(node[:web][:status])
63   service "cgimap" do
64     action :stop
65   end
66 else
67   service "cgimap" do
68     action [:enable, :start]
69     supports :restart => true, :reload => true
70     subscribes :restart, "dpkg_package[openstreetmap-cgimap-bin]"
71     subscribes :restart, "systemd_service[cgimap]"
72   end
73 end