3 # Resource:: rails_port
5 # Copyright:: 2012, 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 # https://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 resource_name :rails_port
27 default_action :create
29 property :site, String, :name_property => true
30 property :ruby, String, :default => "2.3"
31 property :directory, String
32 property :user, String
33 property :group, String
34 property :repository, String, :default => "https://git.openstreetmap.org/public/rails.git"
35 property :revision, String, :default => "live"
36 property :run_migrations, [true, false], :default => false
37 property :build_assets, [true, false], :default => true
38 property :email_from, String, :default => "OpenStreetMap <support@openstreetmap.org>"
39 property :status, String, :default => "online"
40 property :database_host, String
41 property :database_port, String
42 property :database_name, String
43 property :database_username, String
44 property :database_password, String
45 property :email_from, String
46 property :messages_domain, String
47 property :gpx_dir, String
48 property :attachments_dir, String
49 property :log_path, String
50 property :logstash_path, String
51 property :memcache_servers, Array
52 property :potlatch2_key, String
53 property :id_key, String
54 property :oauth_key, String
55 property :oauth_application, String
56 property :nominatim_url, String
57 property :overpass_url, String
58 property :google_auth_id, String
59 property :google_auth_secret, String
60 property :google_openid_realm, String
61 property :facebook_auth_id, String
62 property :facebook_auth_secret, String
63 property :windowslive_auth_id, String
64 property :windowslive_auth_secret, String
65 property :github_auth_id, String
66 property :github_auth_secret, String
67 property :wikipedia_auth_id, String
68 property :wikipedia_auth_secret, String
69 property :thunderforest_key, String
70 property :totp_key, String
71 property :csp_enforce, [true, false], :default => false
72 property :csp_report_url, String
73 property :piwik_configuration, Hash
74 property :storage_service, String, :default => "local"
75 property :storage_url, String
76 property :trace_use_job_queue, [true, false], :default => false
77 property :diary_feed_delay, Integer
78 property :storage_configuration, Hash, :default => {}
79 property :avatar_storage, String
80 property :trace_file_storage, String
81 property :trace_image_storage, String
82 property :trace_icon_storage, String
83 property :avatar_storage_url, String
84 property :trace_image_storage_url, String
85 property :trace_icon_storage_url, String
86 property :tile_cdn_url, String
90 ruby#{new_resource.ruby}
91 ruby#{new_resource.ruby}-dev
123 gem_package "bundler#{new_resource.ruby}" do
124 package_name "bundler"
126 gem_binary "gem#{new_resource.ruby}"
127 options "--format-executable"
130 gem_package "bundler#{new_resource.ruby}" do
131 package_name "pkg-config"
132 gem_binary "gem#{new_resource.ruby}"
135 declare_resource :directory, rails_directory do
136 owner new_resource.user
137 group new_resource.group
141 git rails_directory do
143 repository new_resource.repository
144 revision new_resource.revision
146 user new_resource.user
147 group new_resource.group
150 declare_resource :directory, "#{rails_directory}/tmp" do
151 owner new_resource.user
152 group new_resource.group
155 file "#{rails_directory}/config/environment.rb" do
156 owner new_resource.user
157 group new_resource.group
160 template "#{rails_directory}/config/database.yml" do
162 source "database.yml.erb"
163 owner new_resource.user
164 group new_resource.group
166 variables :host => new_resource.database_host,
167 :port => new_resource.database_port,
168 :name => new_resource.database_name,
169 :username => new_resource.database_username,
170 :password => new_resource.database_password
173 application_yml = edit_file "#{rails_directory}/config/example.application.yml" do |line|
174 line.gsub!(/^( *)server_protocol:.*$/, "\\1server_protocol: \"https\"")
175 line.gsub!(/^( *)server_url:.*$/, "\\1server_url: \"#{new_resource.site}\"")
177 line.gsub!(/^( *)support_email:.*$/, "\\1support_email: \"support@openstreetmap.org\"")
179 if new_resource.email_from
180 line.gsub!(/^( *)email_from:.*$/, "\\1email_from: \"#{new_resource.email_from}\"")
183 line.gsub!(/^( *)email_return_path:.*$/, "\\1email_return_path: \"bounces@openstreetmap.org\"")
185 line.gsub!(/^( *)status:.*$/, "\\1status: :#{new_resource.status}")
187 if new_resource.messages_domain
188 line.gsub!(/^( *)#messages_domain:.*$/, "\\1messages_domain: \"#{new_resource.messages_domain}\"")
191 line.gsub!(/^( *)#geonames_username:.*$/, "\\1geonames_username: \"openstreetmap\"")
193 line.gsub!(/^( *)#maxmind_database:.*$/, "\\1maxmind_database: \"/usr/share/GeoIP/GeoLite2-Country.mmdb\"")
195 if new_resource.gpx_dir
196 line.gsub!(/^( *)gpx_trace_dir:.*$/, "\\1gpx_trace_dir: \"#{new_resource.gpx_dir}/traces\"")
197 line.gsub!(/^( *)gpx_image_dir:.*$/, "\\1gpx_image_dir: \"#{new_resource.gpx_dir}/images\"")
200 if new_resource.attachments_dir
201 line.gsub!(/^( *)attachments_dir:.*$/, "\\1attachments_dir: \"#{new_resource.attachments_dir}\"")
204 if new_resource.log_path
205 line.gsub!(/^( *)#log_path:.*$/, "\\1log_path: \"#{new_resource.log_path}\"")
208 if new_resource.logstash_path
209 line.gsub!(/^( *)#logstash_path:.*$/, "\\1logstash_path: \"#{new_resource.logstash_path}\"")
212 if new_resource.memcache_servers
213 line.gsub!(/^( *)#memcache_servers:.*$/, "\\1memcache_servers: [ \"#{new_resource.memcache_servers.join('", "')}\" ]")
216 if new_resource.potlatch2_key
217 line.gsub!(/^( *)#potlatch2_key:.*$/, "\\1potlatch2_key: \"#{new_resource.potlatch2_key}\"")
220 if new_resource.id_key
221 line.gsub!(/^( *)#id_key:.*$/, "\\1id_key: \"#{new_resource.id_key}\"")
224 if new_resource.oauth_key
225 line.gsub!(/^( *)#oauth_key:.*$/, "\\1oauth_key: \"#{new_resource.oauth_key}\"")
228 if new_resource.oauth_application
229 line.gsub!(/^( *)#oauth_application:.*$/, "\\1oauth_application: \"#{new_resource.oauth_application}\"")
232 if new_resource.nominatim_url
233 line.gsub!(/^( *)nominatim_url:.*$/, "\\1nominatim_url: \"#{new_resource.nominatim_url}\"")
236 if new_resource.overpass_url
237 line.gsub!(/^( *)overpass_url:.*$/, "\\1overpass_url: \"#{new_resource.overpass_url}\"")
240 if new_resource.google_auth_id
241 line.gsub!(/^( *)#google_auth_id:.*$/, "\\1google_auth_id: \"#{new_resource.google_auth_id}\"")
242 line.gsub!(/^( *)#google_auth_secret:.*$/, "\\1google_auth_secret: \"#{new_resource.google_auth_secret}\"")
243 line.gsub!(/^( *)#google_openid_realm:.*$/, "\\1google_openid_realm: \"#{new_resource.google_openid_realm}\"")
246 if new_resource.facebook_auth_id
247 line.gsub!(/^( *)#facebook_auth_id:.*$/, "\\1facebook_auth_id: \"#{new_resource.facebook_auth_id}\"")
248 line.gsub!(/^( *)#facebook_auth_secret:.*$/, "\\1facebook_auth_secret: \"#{new_resource.facebook_auth_secret}\"")
251 if new_resource.windowslive_auth_id
252 line.gsub!(/^( *)#windowslive_auth_id:.*$/, "\\1windowslive_auth_id: \"#{new_resource.windowslive_auth_id}\"")
253 line.gsub!(/^( *)#windowslive_auth_secret:.*$/, "\\1windowslive_auth_secret: \"#{new_resource.windowslive_auth_secret}\"")
256 if new_resource.github_auth_id
257 line.gsub!(/^( *)#github_auth_id:.*$/, "\\1github_auth_id: \"#{new_resource.github_auth_id}\"")
258 line.gsub!(/^( *)#github_auth_secret:.*$/, "\\1github_auth_secret: \"#{new_resource.github_auth_secret}\"")
261 if new_resource.wikipedia_auth_id
262 line.gsub!(/^( *)#wikipedia_auth_id:.*$/, "\\1wikipedia_auth_id: \"#{new_resource.wikipedia_auth_id}\"")
263 line.gsub!(/^( *)#wikipedia_auth_secret:.*$/, "\\1wikipedia_auth_secret: \"#{new_resource.wikipedia_auth_secret}\"")
266 if new_resource.thunderforest_key
267 line.gsub!(/^( *)#thunderforest_key:.*$/, "\\1thunderforest_key: \"#{new_resource.thunderforest_key}\"")
270 if new_resource.totp_key
271 line.gsub!(/^( *)#totp_key:.*$/, "\\1totp_key: \"#{new_resource.totp_key}\"")
274 if new_resource.csp_enforce
275 line.gsub!(/^( *)csp_enforce:.*$/, "\\1csp_enforce: \"#{new_resource.csp_enforce}\"")
278 if new_resource.csp_report_url
279 line.gsub!(/^( *)#csp_report_url:.*$/, "\\1csp_report_url: \"#{new_resource.csp_report_url}\"")
282 line.gsub!(/^( *)require_terms_seen:.*$/, "\\1require_terms_seen: true")
283 line.gsub!(/^( *)require_terms_agreed:.*$/, "\\1require_terms_agreed: true")
284 line.gsub!(/^( *)trace_use_job_queue:.*$/, "\\1trace_use_job_queue: false")
289 file "create:#{rails_directory}/config/application.yml" do
290 path "#{rails_directory}/config/application.yml"
291 owner new_resource.user
292 group new_resource.group
294 content application_yml
295 only_if { ::File.exist?("#{rails_directory}/config/example.application.yml") }
298 file "delete:#{rails_directory}/config/application.yml" do
299 path "#{rails_directory}/config/application.yml"
301 not_if { ::File.exist?("#{rails_directory}/config/example.application.yml") }
304 settings = new_resource.to_hash.transform_keys(&:to_s).slice(
318 "google_auth_secret",
319 "google_openid_realm",
321 "facebook_auth_secret",
322 "windowslive_auth_id",
323 "windowslive_auth_secret",
325 "github_auth_secret",
327 "wikipedia_auth_secret",
332 "trace_use_job_queue",
337 "trace_file_storage",
338 "trace_image_storage",
339 "trace_icon_storage",
340 "avatar_storage_url",
341 "trace_image_storage_url",
342 "trace_icon_storage_url",
345 "server_protocol" => "https",
346 "server_url" => new_resource.site,
347 "support_email" => "support@openstreetmap.org",
348 "email_return_path" => "bounces@openstreetmap.org",
349 "geonames_username" => "openstreetmap",
350 "maxmind_database" => "/usr/share/GeoIP/GeoLite2-Country.mmdb",
351 "max_request_area" => node[:web][:max_request_area],
352 "max_number_of_nodes" => node[:web][:max_number_of_nodes],
353 "max_number_of_way_nodes" => node[:web][:max_number_of_way_nodes],
354 "max_number_of_relation_members" => node[:web][:max_number_of_relation_members]
357 if new_resource.memcache_servers
358 settings["memcache_servers"] = new_resource.memcache_servers.to_a
361 if new_resource.gpx_dir
362 settings["gpx_trace_dir"] = "#{new_resource.gpx_dir}/traces"
363 settings["gpx_image_dir"] = "#{new_resource.gpx_dir}/images"
366 file "#{rails_directory}/config/settings.local.yml" do
367 owner new_resource.user
368 group new_resource.group
370 content YAML.dump(settings)
371 only_if { ::File.exist?("#{rails_directory}/config/settings.yml") }
374 storage_configuration = new_resource.storage_configuration.merge(
377 "root" => "#{rails_directory}/storage"
381 file "#{rails_directory}/config/storage.yml" do
382 owner new_resource.user
383 group new_resource.group
385 content YAML.dump(storage_configuration)
388 if new_resource.piwik_configuration
389 file "#{rails_directory}/config/piwik.yml" do
390 owner new_resource.user
391 group new_resource.group
393 content YAML.dump(new_resource.piwik_configuration)
396 file "#{rails_directory}/config/piwik.yml" do
401 execute "#{rails_directory}/Gemfile" do
403 command "bundle#{new_resource.ruby} install"
407 environment "NOKOGIRI_USE_SYSTEM_LIBRARIES" => "yes"
408 subscribes :run, "gem_package[bundler#{new_resource.ruby}]"
409 subscribes :run, "git[#{rails_directory}]"
412 execute "#{rails_directory}/db/migrate" do
414 command "bundle#{new_resource.ruby} exec rake db:migrate"
416 user new_resource.user
417 group new_resource.group
418 subscribes :run, "git[#{rails_directory}]"
419 only_if { new_resource.run_migrations }
423 only_if { new_resource.build_assets }
426 execute "#{rails_directory}/package.json" do
428 command "bundle#{new_resource.ruby} exec rake yarn:install"
429 environment "HOME" => rails_directory,
430 "RAILS_ENV" => "production"
432 user new_resource.user
433 group new_resource.group
434 subscribes :run, "git[#{rails_directory}]"
435 only_if { new_resource.build_assets }
438 execute "#{rails_directory}/app/assets/javascripts/i18n" do
440 command "bundle#{new_resource.ruby} exec rake i18n:js:export"
441 environment "HOME" => rails_directory,
442 "RAILS_ENV" => "production"
444 user new_resource.user
445 group new_resource.group
446 subscribes :run, "git[#{rails_directory}]"
447 only_if { new_resource.build_assets }
450 execute "#{rails_directory}/public/assets" do
452 command "bundle#{new_resource.ruby} exec rake assets:precompile"
453 environment "HOME" => rails_directory,
454 "RAILS_ENV" => "production"
456 user new_resource.user
457 group new_resource.group
458 subscribes :run, "git[#{rails_directory}]"
459 subscribes :run, "file[create:#{rails_directory}/config/application.yml]"
460 subscribes :run, "file[#{rails_directory}/config/settings.local.yml]"
461 subscribes :run, "file[#{rails_directory}/config/storage.yml]"
462 subscribes :run, "file[#{rails_directory}/config/piwik.yml]"
463 subscribes :run, "execute[#{rails_directory}/package.json]"
464 subscribes :run, "execute[#{rails_directory}/app/assets/javascripts/i18n]"
465 only_if { new_resource.build_assets }
468 file "#{rails_directory}/public/export/embed.html" do
470 subscribes :delete, "git[#{rails_directory}]"
471 subscribes :delete, "file[#{rails_directory}/config/settings.local.yml]"
474 passenger_application rails_directory do
476 subscribes :restart, "git[#{rails_directory}]"
477 subscribes :restart, "file[#{rails_directory}/config/database.yml]"
478 subscribes :restart, "file[create:#{rails_directory}/config/application.yml]"
479 subscribes :restart, "file[#{rails_directory}/config/settings.local.yml]"
480 subscribes :restart, "file[#{rails_directory}/config/storage.yml]"
481 subscribes :restart, "file[#{rails_directory}/config/piwik.yml]"
482 subscribes :restart, "execute[#{rails_directory}/Gemfile]"
483 subscribes :restart, "execute[#{rails_directory}/db/migrate]"
484 subscribes :restart, "execute[#{rails_directory}/package.json]"
485 subscribes :restart, "execute[#{rails_directory}/app/assets/javascripts/i18n]"
486 subscribes :restart, "execute[#{rails_directory}/public/assets]"
487 only_if { ::File.exist?("/usr/bin/passenger-config") }
490 template "/etc/cron.daily/rails-#{new_resource.site.tr('.', '-')}" do
492 source "rails.cron.erb"
496 variables :directory => rails_directory
501 passenger_application rails_directory do
507 include Chef::Mixin::EditFile
510 new_resource.directory || "/srv/#{new_resource.site}"