]> git.openstreetmap.org Git - chef.git/blob - cookbooks/web/resources/rails_port.rb
Add a 12 hour delay to the diary RSS feed
[chef.git] / cookbooks / web / resources / rails_port.rb
1 #
2 # Cookbook Name:: web
3 # Resource:: rails_port
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 #     https://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 "yaml"
21
22 resource_name :rails_port
23
24 default_action :create
25
26 property :site, String, :name_attribute => true
27 property :ruby, String, :default => "2.3"
28 property :directory, String
29 property :user, String
30 property :group, String
31 property :repository, String, :default => "https://git.openstreetmap.org/public/rails.git"
32 property :revision, String, :default => "live"
33 property :run_migrations, [TrueClass, FalseClass], :default => false
34 property :email_from, String, :default => "OpenStreetMap <support@openstreetmap.org>"
35 property :status, String, :default => "online"
36 property :database_host, String
37 property :database_port, String
38 property :database_name, String
39 property :database_username, String
40 property :database_password, String
41 property :email_from, String
42 property :messages_domain, String
43 property :gpx_dir, String
44 property :attachments_dir, String
45 property :log_path, String
46 property :logstash_path, String
47 property :memcache_servers, Array
48 property :potlatch2_key, String
49 property :id_key, String
50 property :oauth_key, String
51 property :nominatim_url, String
52 property :osrm_url, String
53 property :google_auth_id, String
54 property :google_auth_secret, String
55 property :google_openid_realm, String
56 property :facebook_auth_id, String
57 property :facebook_auth_secret, String
58 property :windowslive_auth_id, String
59 property :windowslive_auth_secret, String
60 property :github_auth_id, String
61 property :github_auth_secret, String
62 property :wikipedia_auth_id, String
63 property :wikipedia_auth_secret, String
64 property :thunderforest_key, String
65 property :totp_key, String
66 property :csp_enforce, [TrueClass, FalseClass], :default => false
67 property :csp_report_url, String
68 property :piwik_configuration, Hash
69 property :trace_use_job_queue, [TrueClass, FalseClass], :default => false
70 property :diary_feed_delay, Integer
71
72 action :create do
73   package %W[
74     ruby#{new_resource.ruby}
75     ruby#{new_resource.ruby}-dev
76     imagemagick
77     nodejs
78     geoip-database
79   ]
80
81   package %w[
82     g++
83     pkg-config
84     libpq-dev
85     libsasl2-dev
86     libxml2-dev
87     libxslt1-dev
88     libmemcached-dev
89     libffi-dev
90     libgd-dev
91     libarchive-dev
92     libbz2-dev
93   ]
94
95   package %w[
96     pngcrush
97     advancecomp
98     optipng
99     pngquant
100     jhead
101     jpegoptim
102     gifsicle
103     libjpeg-turbo-progs
104   ]
105
106   gem_package "bundler#{new_resource.ruby}" do
107     package_name "bundler"
108     version "1.16.2"
109     gem_binary "gem#{new_resource.ruby}"
110     options "--format-executable"
111   end
112
113   gem_package "bundler#{new_resource.ruby}" do
114     package_name "pkg-config"
115     gem_binary "gem#{new_resource.ruby}"
116   end
117
118   declare_resource :directory, rails_directory do
119     owner new_resource.user
120     group new_resource.group
121     mode 0o2775
122   end
123
124   git rails_directory do
125     action :sync
126     repository new_resource.repository
127     revision new_resource.revision
128     user new_resource.user
129     group new_resource.group
130     notifies :run, "execute[#{rails_directory}/Gemfile]"
131     notifies :run, "execute[#{rails_directory}/app/assets/javascripts/i18n]"
132     notifies :run, "execute[#{rails_directory}/public/assets]"
133     notifies :delete, "file[#{rails_directory}/public/export/embed.html]"
134     notifies :restart, "passenger_application[#{rails_directory}]"
135   end
136
137   declare_resource :directory, "#{rails_directory}/tmp" do
138     owner new_resource.user
139     group new_resource.group
140   end
141
142   file "#{rails_directory}/config/environment.rb" do
143     owner new_resource.user
144     group new_resource.group
145   end
146
147   template "#{rails_directory}/config/database.yml" do
148     cookbook "web"
149     source "database.yml.erb"
150     owner new_resource.user
151     group new_resource.group
152     mode 0o664
153     variables :host => new_resource.database_host,
154               :port => new_resource.database_port,
155               :name => new_resource.database_name,
156               :username => new_resource.database_username,
157               :password => new_resource.database_password
158     notifies :restart, "passenger_application[#{rails_directory}]"
159   end
160
161   application_yml = edit_file "#{rails_directory}/config/example.application.yml" do |line|
162     line.gsub!(/^( *)server_protocol:.*$/, "\\1server_protocol: \"https\"")
163     line.gsub!(/^( *)server_url:.*$/, "\\1server_url: \"#{new_resource.site}\"")
164
165     line.gsub!(/^( *)#publisher_url:.*$/, "\\1publisher_url: \"https://plus.google.com/111953119785824514010\"")
166
167     line.gsub!(/^( *)support_email:.*$/, "\\1support_email: \"support@openstreetmap.org\"")
168
169     if new_resource.email_from
170       line.gsub!(/^( *)email_from:.*$/, "\\1email_from: \"#{new_resource.email_from}\"")
171     end
172
173     line.gsub!(/^( *)email_return_path:.*$/, "\\1email_return_path: \"bounces@openstreetmap.org\"")
174
175     line.gsub!(/^( *)status:.*$/, "\\1status: :#{new_resource.status}")
176
177     if new_resource.messages_domain
178       line.gsub!(/^( *)#messages_domain:.*$/, "\\1messages_domain: \"#{new_resource.messages_domain}\"")
179     end
180
181     line.gsub!(/^( *)#geonames_username:.*$/, "\\1geonames_username: \"openstreetmap\"")
182
183     line.gsub!(/^( *)#geoip_database:.*$/, "\\1geoip_database: \"/usr/share/GeoIP/GeoIPv6.dat\"")
184
185     if new_resource.gpx_dir
186       line.gsub!(/^( *)gpx_trace_dir:.*$/, "\\1gpx_trace_dir: \"#{new_resource.gpx_dir}/traces\"")
187       line.gsub!(/^( *)gpx_image_dir:.*$/, "\\1gpx_image_dir: \"#{new_resource.gpx_dir}/images\"")
188     end
189
190     if new_resource.attachments_dir
191       line.gsub!(/^( *)attachments_dir:.*$/, "\\1attachments_dir: \"#{new_resource.attachments_dir}\"")
192     end
193
194     if new_resource.log_path
195       line.gsub!(/^( *)#log_path:.*$/, "\\1log_path: \"#{new_resource.log_path}\"")
196     end
197
198     if new_resource.logstash_path
199       line.gsub!(/^( *)#logstash_path:.*$/, "\\1logstash_path: \"#{new_resource.logstash_path}\"")
200     end
201
202     if new_resource.memcache_servers
203       line.gsub!(/^( *)#memcache_servers:.*$/, "\\1memcache_servers: [ \"#{new_resource.memcache_servers.join('", "')}\" ]")
204     end
205
206     if new_resource.potlatch2_key
207       line.gsub!(/^( *)#potlatch2_key:.*$/, "\\1potlatch2_key: \"#{new_resource.potlatch2_key}\"")
208     end
209
210     if new_resource.id_key
211       line.gsub!(/^( *)#id_key:.*$/, "\\1id_key: \"#{new_resource.id_key}\"")
212     end
213
214     if new_resource.oauth_key
215       line.gsub!(/^( *)#oauth_key:.*$/, "\\1oauth_key: \"#{new_resource.oauth_key}\"")
216     end
217
218     if new_resource.nominatim_url
219       line.gsub!(/^( *)nominatim_url:.*$/, "\\1nominatim_url: \"#{new_resource.nominatim_url}\"")
220     end
221
222     if new_resource.osrm_url
223       line.gsub!(/^( *)osrm_url:.*$/, "\\1osrm_url: \"#{new_resource.osrm_url}\"")
224     end
225
226     if new_resource.google_auth_id
227       line.gsub!(/^( *)#google_auth_id:.*$/, "\\1google_auth_id: \"#{new_resource.google_auth_id}\"")
228       line.gsub!(/^( *)#google_auth_secret:.*$/, "\\1google_auth_secret: \"#{new_resource.google_auth_secret}\"")
229       line.gsub!(/^( *)#google_openid_realm:.*$/, "\\1google_openid_realm: \"#{new_resource.google_openid_realm}\"")
230     end
231
232     if new_resource.facebook_auth_id
233       line.gsub!(/^( *)#facebook_auth_id:.*$/, "\\1facebook_auth_id: \"#{new_resource.facebook_auth_id}\"")
234       line.gsub!(/^( *)#facebook_auth_secret:.*$/, "\\1facebook_auth_secret: \"#{new_resource.facebook_auth_secret}\"")
235     end
236
237     if new_resource.windowslive_auth_id
238       line.gsub!(/^( *)#windowslive_auth_id:.*$/, "\\1windowslive_auth_id: \"#{new_resource.windowslive_auth_id}\"")
239       line.gsub!(/^( *)#windowslive_auth_secret:.*$/, "\\1windowslive_auth_secret: \"#{new_resource.windowslive_auth_secret}\"")
240     end
241
242     if new_resource.github_auth_id
243       line.gsub!(/^( *)#github_auth_id:.*$/, "\\1github_auth_id: \"#{new_resource.github_auth_id}\"")
244       line.gsub!(/^( *)#github_auth_secret:.*$/, "\\1github_auth_secret: \"#{new_resource.github_auth_secret}\"")
245     end
246
247     if new_resource.wikipedia_auth_id
248       line.gsub!(/^( *)#wikipedia_auth_id:.*$/, "\\1wikipedia_auth_id: \"#{new_resource.wikipedia_auth_id}\"")
249       line.gsub!(/^( *)#wikipedia_auth_secret:.*$/, "\\1wikipedia_auth_secret: \"#{new_resource.wikipedia_auth_secret}\"")
250     end
251
252     if new_resource.thunderforest_key
253       line.gsub!(/^( *)#thunderforest_key:.*$/, "\\1thunderforest_key: \"#{new_resource.thunderforest_key}\"")
254     end
255
256     if new_resource.totp_key
257       line.gsub!(/^( *)#totp_key:.*$/, "\\1totp_key: \"#{new_resource.totp_key}\"")
258     end
259
260     if new_resource.csp_enforce
261       line.gsub!(/^( *)csp_enforce:.*$/, "\\1csp_enforce: \"#{new_resource.csp_enforce}\"")
262     end
263
264     if new_resource.csp_report_url
265       line.gsub!(/^( *)#csp_report_url:.*$/, "\\1csp_report_url: \"#{new_resource.csp_report_url}\"")
266     end
267
268     line.gsub!(/^( *)require_terms_seen:.*$/, "\\1require_terms_seen: true")
269     line.gsub!(/^( *)require_terms_agreed:.*$/, "\\1require_terms_agreed: true")
270     line.gsub!(/^( *)trace_use_job_queue:.*$/, "\\1trace_use_job_queue: false")
271
272     line
273   end
274
275   file "create:#{rails_directory}/config/application.yml" do
276     path "#{rails_directory}/config/application.yml"
277     owner new_resource.user
278     group new_resource.group
279     mode 0o664
280     content application_yml
281     notifies :run, "execute[#{rails_directory}/public/assets]"
282     only_if { ::File.exist?("#{rails_directory}/config/example.application.yml") }
283   end
284
285   file "delete:#{rails_directory}/config/application.yml" do
286     path "#{rails_directory}/config/application.yml"
287     action :delete
288     not_if { ::File.exist?("#{rails_directory}/config/example.application.yml") }
289   end
290
291   settings = new_resource.to_hash.transform_keys(&:to_s).slice(
292     "email_from",
293     "status",
294     "messages_domain",
295     "attachments_dir",
296     "log_path",
297     "logstash_path",
298     "potlatch2_key",
299     "id_key",
300     "oauth_key",
301     "nominatim_url",
302     "osrm_url",
303     "google_auth_id",
304     "google_auth_secret",
305     "google_openid_realm",
306     "facebook_auth_id",
307     "facebook_auth_secret",
308     "windowslive_auth_id",
309     "windowslive_auth_secret",
310     "github_auth_id",
311     "github_auth_secret",
312     "wikipedia_auth_id",
313     "wikipedia_auth_secret",
314     "thunderforest_key",
315     "totp_key",
316     "csp_enforce",
317     "csp_report_url",
318     "trace_use_job_queue",
319     "diary_feed_delay"
320   ).reject { |_k, v| v.nil? }.merge(
321     "server_protocol" => "https",
322     "server_url" => new_resource.site,
323     "publisher_url" => "https://plus.google.com/111953119785824514010",
324     "support_email" => "support@openstreetmap.org",
325     "email_return_path" => "bounces@openstreetmap.org",
326     "geonames_username" => "openstreetmap",
327     "geoip_database" => "/usr/share/GeoIP/GeoIPv6.dat"
328   )
329
330   if new_resource.memcache_servers
331     settings["memcache_servers"] = new_resource.memcache_servers.to_a
332   end
333
334   if new_resource.gpx_dir
335     settings["gpx_trace_dir"] = "#{new_resource.gpx_dir}/traces"
336     settings["gpx_image_dir"] = "#{new_resource.gpx_dir}/images"
337   end
338
339   file "#{rails_directory}/config/settings.local.yml" do
340     owner new_resource.user
341     group new_resource.group
342     mode 0o664
343     content YAML.dump(settings)
344     notifies :run, "execute[#{rails_directory}/public/assets]"
345     only_if { ::File.exist?("#{rails_directory}/config/settings.yml") }
346   end
347
348   if new_resource.piwik_configuration
349     file "#{rails_directory}/config/piwik.yml" do
350       owner new_resource.user
351       group new_resource.group
352       mode 0o664
353       content YAML.dump(new_resource.piwik_configuration)
354       notifies :run, "execute[#{rails_directory}/public/assets]"
355     end
356   else
357     file "#{rails_directory}/config/piwik.yml" do
358       action :delete
359       notifies :run, "execute[#{rails_directory}/public/assets]"
360     end
361   end
362
363   execute "#{rails_directory}/Gemfile" do
364     action :nothing
365     command "bundle#{new_resource.ruby} install"
366     cwd rails_directory
367     user "root"
368     group "root"
369     environment "NOKOGIRI_USE_SYSTEM_LIBRARIES" => "yes"
370     subscribes :run, "gem_package[bundler#{new_resource.ruby}]"
371     notifies :restart, "passenger_application[#{rails_directory}]"
372   end
373
374   execute "#{rails_directory}/db/migrate" do
375     action :nothing
376     command "bundle#{new_resource.ruby} exec rake db:migrate"
377     cwd rails_directory
378     user new_resource.user
379     group new_resource.group
380     subscribes :run, "git[#{rails_directory}]"
381     notifies :restart, "passenger_application[#{rails_directory}]"
382     only_if { new_resource.run_migrations }
383   end
384
385   execute "#{rails_directory}/app/assets/javascripts/i18n" do
386     action :nothing
387     command "bundle#{new_resource.ruby} exec rake i18n:js:export"
388     environment "RAILS_ENV" => "production"
389     cwd rails_directory
390     user new_resource.user
391     group new_resource.group
392     notifies :run, "execute[#{rails_directory}/public/assets]"
393   end
394
395   execute "#{rails_directory}/public/assets" do
396     action :nothing
397     command "bundle#{new_resource.ruby} exec rake assets:precompile"
398     environment "RAILS_ENV" => "production"
399     cwd rails_directory
400     user new_resource.user
401     group new_resource.group
402     notifies :restart, "passenger_application[#{rails_directory}]"
403   end
404
405   file "#{rails_directory}/public/export/embed.html" do
406     action :nothing
407   end
408
409   passenger_application rails_directory do
410     action :nothing
411     only_if { ::File.exist?("/usr/bin/passenger-config") }
412   end
413
414   template "/etc/cron.daily/rails-#{new_resource.site.tr('.', '-')}" do
415     cookbook "web"
416     source "rails.cron.erb"
417     owner "root"
418     group "root"
419     mode 0o755
420     variables :directory => rails_directory
421   end
422 end
423
424 action :restart do
425   passenger_application rails_directory do
426     action :restart
427   end
428 end
429
430 action_class do
431   include Chef::Mixin::EditFile
432
433   def rails_directory
434     new_resource.directory || "/srv/#{new_resource.site}"
435   end
436 end