X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/bc650c626ea81b4856682888bb059f7f18cb4bb2..d058d9fb0695302bf5f79630bdf1f465f8ed1da0:/cookbooks/web/resources/rails_port.rb diff --git a/cookbooks/web/resources/rails_port.rb b/cookbooks/web/resources/rails_port.rb index f01884805..ba3f06aaa 100644 --- a/cookbooks/web/resources/rails_port.rb +++ b/cookbooks/web/resources/rails_port.rb @@ -32,6 +32,7 @@ property :group, String property :repository, String, :default => "https://git.openstreetmap.org/public/rails.git" property :revision, String, :default => "live" property :run_migrations, [true, false], :default => false +property :build_assets, [true, false], :default => true property :email_from, String, :default => "OpenStreetMap " property :status, String, :default => "online" property :database_host, String @@ -72,6 +73,7 @@ property :diary_feed_delay, Integer property :storage_configuration, Hash, :default => {} property :storage_service, String, :default => "local" property :storage_url, String +property :tile_cdn_url, String action :create do package %W[ @@ -79,12 +81,12 @@ action :create do ruby#{new_resource.ruby}-dev imagemagick nodejs - geoip-database tzdata ] package %w[ g++ + make pkg-config libpq-dev libsasl2-dev @@ -133,10 +135,6 @@ action :create do depth 1 user new_resource.user group new_resource.group - notifies :run, "execute[#{rails_directory}/Gemfile]" - notifies :run, "execute[#{rails_directory}/app/assets/javascripts/i18n]" - notifies :run, "execute[#{rails_directory}/public/assets]" - notifies :delete, "file[#{rails_directory}/public/export/embed.html]" notifies :restart, "passenger_application[#{rails_directory}]" end @@ -184,7 +182,6 @@ action :create do line.gsub!(/^( *)#geonames_username:.*$/, "\\1geonames_username: \"openstreetmap\"") - line.gsub!(/^( *)#geoip_database:.*$/, "\\1geoip_database: \"/usr/share/GeoIP/GeoIPv6.dat\"") line.gsub!(/^( *)#maxmind_database:.*$/, "\\1maxmind_database: \"/usr/share/GeoIP/GeoLite2-Country.mmdb\"") if new_resource.gpx_dir @@ -283,7 +280,7 @@ action :create do group new_resource.group mode "664" content application_yml - notifies :run, "execute[#{rails_directory}/public/assets]" + notifies :restart, "passenger_application[#{rails_directory}]" only_if { ::File.exist?("#{rails_directory}/config/example.application.yml") } end @@ -323,14 +320,14 @@ action :create do "trace_use_job_queue", "diary_feed_delay", "storage_service", - "storage_url" + "storage_url", + "tile_cdn_url" ).reject { |_k, v| v.nil? }.merge( "server_protocol" => "https", "server_url" => new_resource.site, "support_email" => "support@openstreetmap.org", "email_return_path" => "bounces@openstreetmap.org", "geonames_username" => "openstreetmap", - "geoip_database" => "/usr/share/GeoIP/GeoIPv6.dat", "maxmind_database" => "/usr/share/GeoIP/GeoLite2-Country.mmdb" ) @@ -348,7 +345,6 @@ action :create do group new_resource.group mode "664" content YAML.dump(settings) - notifies :run, "execute[#{rails_directory}/public/assets]" only_if { ::File.exist?("#{rails_directory}/config/settings.yml") } end @@ -364,7 +360,6 @@ action :create do group new_resource.group mode "664" content YAML.dump(storage_configuration) - notifies :run, "execute[#{rails_directory}/public/assets]" end if new_resource.piwik_configuration @@ -373,12 +368,10 @@ action :create do group new_resource.group mode "664" content YAML.dump(new_resource.piwik_configuration) - notifies :run, "execute[#{rails_directory}/public/assets]" end else file "#{rails_directory}/config/piwik.yml" do action :delete - notifies :run, "execute[#{rails_directory}/public/assets]" end end @@ -390,6 +383,7 @@ action :create do group "root" environment "NOKOGIRI_USE_SYSTEM_LIBRARIES" => "yes" subscribes :run, "gem_package[bundler#{new_resource.ruby}]" + subscribes :run, "git[#{rails_directory}]" notifies :restart, "passenger_application[#{rails_directory}]" end @@ -404,28 +398,56 @@ action :create do only_if { new_resource.run_migrations } end + package "yarnpkg" do + only_if { new_resource.build_assets } + end + + execute "#{rails_directory}/package.json" do + action :nothing + command "bundle#{new_resource.ruby} exec rake yarn:install" + environment "HOME" => rails_directory, + "RAILS_ENV" => "production" + cwd rails_directory + user new_resource.user + group new_resource.group + subscribes :run, "git[#{rails_directory}]" + only_if { new_resource.build_assets } + end + execute "#{rails_directory}/app/assets/javascripts/i18n" do action :nothing command "bundle#{new_resource.ruby} exec rake i18n:js:export" - environment "RAILS_ENV" => "production" + environment "HOME" => rails_directory, + "RAILS_ENV" => "production" cwd rails_directory user new_resource.user group new_resource.group - notifies :run, "execute[#{rails_directory}/public/assets]" + subscribes :run, "git[#{rails_directory}]" + only_if { new_resource.build_assets } end execute "#{rails_directory}/public/assets" do action :nothing command "bundle#{new_resource.ruby} exec rake assets:precompile" - environment "RAILS_ENV" => "production" + environment "HOME" => rails_directory, + "RAILS_ENV" => "production" cwd rails_directory user new_resource.user group new_resource.group + subscribes :run, "git[#{rails_directory}]" + subscribes :run, "file[create:#{rails_directory}/config/application.yml]" + subscribes :run, "file[#{rails_directory}/config/settings.local.yml]" + subscribes :run, "file[#{rails_directory}/config/storage.yml]" + subscribes :run, "file[#{rails_directory}/config/piwik.yml]" + subscribes :run, "execute[#{rails_directory}/package.json]" + subscribes :run, "execute[#{rails_directory}/app/assets/javascripts/i18n]" notifies :restart, "passenger_application[#{rails_directory}]" + only_if { new_resource.build_assets } end file "#{rails_directory}/public/export/embed.html" do action :nothing + subscribes :delete, "git[#{rails_directory}]" end passenger_application rails_directory do