Skip to content

Commit

Permalink
Run app:update on rails 7.2
Browse files Browse the repository at this point in the history
Signed-off-by: Samuel Giddins <[email protected]>
  • Loading branch information
segiddins committed Sep 30, 2024
1 parent e31dd4b commit a6ab21c
Show file tree
Hide file tree
Showing 11 changed files with 182 additions and 123 deletions.
24 changes: 2 additions & 22 deletions bin/brakeman
Original file line number Diff line number Diff line change
@@ -1,27 +1,7 @@
#!/usr/bin/env ruby
# frozen_string_literal: true

#
# This file was generated by Bundler.
#
# The application 'brakeman' is installed as part of a gem, and
# this file is here to facilitate running it.
#

ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)

bundle_binstub = File.expand_path("bundle", __dir__)

if File.file?(bundle_binstub)
if File.read(bundle_binstub, 300).include?("This file was generated by Bundler")
load(bundle_binstub)
else
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
end
end

require "rubygems"
require "bundler/setup"

ARGV.unshift("--ensure-latest")

load Gem.bin_path("brakeman", "brakeman")
25 changes: 3 additions & 22 deletions bin/rubocop
Original file line number Diff line number Diff line change
@@ -1,27 +1,8 @@
#!/usr/bin/env ruby
# frozen_string_literal: true

#
# This file was generated by Bundler.
#
# The application 'rubocop' is installed as part of a gem, and
# this file is here to facilitate running it.
#

ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)

bundle_binstub = File.expand_path("bundle", __dir__)

if File.file?(bundle_binstub)
if File.read(bundle_binstub, 300).include?("This file was generated by Bundler")
load(bundle_binstub)
else
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
end
end

require "rubygems"
require "bundler/setup"

# explicit rubocop config increases performance slightly while avoiding config confusion.
ARGV.unshift("--config", File.expand_path("../.rubocop.yml", __dir__))

load Gem.bin_path("rubocop", "rubocop")
6 changes: 5 additions & 1 deletion bin/setup
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/usr/bin/env ruby
require "fileutils"

# path to your application root.
APP_ROOT = File.expand_path("..", __dir__)
APP_NAME = "gemcutter"

def system!(*args)
system(*args, exception: true)
Expand Down Expand Up @@ -36,4 +36,8 @@ FileUtils.chdir APP_ROOT do

puts "\n== Restarting application server =="
system! "bin/rails restart"

# puts "\n== Configuring puma-dev =="
# system "ln -nfs #{APP_ROOT} ~/.puma-dev/#{APP_NAME}"
# system "curl -Is https://#{APP_NAME}.test/up | head -n 1"
end
18 changes: 11 additions & 7 deletions config/environments/development.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
require_relative "../../lib/gemcutter/middleware/hostess"
require "active_support/core_ext/integer/time"

Rails.application.configure do
Expand All @@ -15,7 +14,7 @@
# Show full error reports.
config.consider_all_requests_local = true

# Enable server timing
# Enable server timing.
config.server_timing = true

# Enable/disable caching. By default caching is disabled.
Expand All @@ -26,9 +25,7 @@

config.cache_store = :mem_cache_store,
{ compress: true, compression_min_size: 524_288 }
config.public_file_server.headers = {
"Cache-Control" => "public, max-age=#{2.days.to_i}"
}
config.public_file_server.headers = { "Cache-Control" => "public, max-age=#{2.days.to_i}" }
else
config.action_controller.perform_caching = false

Expand All @@ -40,6 +37,8 @@

config.action_mailer.raise_delivery_errors = true

# Disable caching for Action Mailer templates even if Action Controller
# caching is enabled.
config.action_mailer.perform_caching = false

config.action_mailer.default_url_options = { host: Gemcutter::HOST,
Expand Down Expand Up @@ -75,13 +74,18 @@
# Raises error for missing translations.
# config.i18n.raise_on_missing_translations = true

require_relative "../../lib/gemcutter/middleware/hostess"
config.middleware.use Gemcutter::Middleware::Hostess

# Annotate rendered view with file names.
# config.action_view.annotate_rendered_view_with_filenames = true
config.action_view.annotate_rendered_view_with_filenames = true

# Raise error when a before_action's only/except options reference missing actions
# Raise error when a before_action's only/except options reference missing actions.
config.action_controller.raise_on_missing_callback_actions = true

# Apply autocorrection by RuboCop to files generated by `bin/rails generate`.
config.generators.apply_rubocop_autocorrect_after_generate!

# Use an evented file watcher to asynchronously detect changes in source code,
# routes, locales, etc. This feature depends on the listen gem.
config.file_watcher = ActiveSupport::EventedFileUpdateChecker
Expand Down
18 changes: 11 additions & 7 deletions config/environments/production.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
require Rails.root.join("config", "secret") if Rails.root.join("config", "secret.rb").file?
require_relative "../../lib/gemcutter/middleware/redirector"
require "active_support/core_ext/integer/time"

Rails.application.configure do
Expand All @@ -22,8 +20,7 @@
# key such as config/credentials/production.key. This key is used to decrypt credentials (and other encrypted files).
# config.require_master_key = true

# Disable serving static files from the `/public` folder by default since
# Apache or NGINX already handles this.
# Disable serving static files from `public/`, relying on NGINX/Apache to do so instead.
config.public_file_server.enabled = ENV["RAILS_SERVE_STATIC_FILES"].present?
config.public_file_server.headers = {
'Cache-Control' => 'max-age=315360000, public',
Expand All @@ -36,7 +33,7 @@
# Compress CSS using a preprocessor.
config.assets.css_compressor = :sass

# Do not fallback to assets pipeline if a precompiled asset is missed.
# Do not fall back to assets pipeline if a precompiled asset is missed.
config.assets.compile = false

# Enable serving of images, stylesheets, and JavaScripts from an asset server.
Expand All @@ -62,7 +59,6 @@
# Include generic and useful information about system operation, but avoid logging too much
# information to avoid inadvertent exposure of personally identifiable information (PII).
$stdout.sync = true
config.log_level = :info
config.rails_semantic_logger.format = :json
config.rails_semantic_logger.semantic = true
config.rails_semantic_logger.add_file_appender = false
Expand All @@ -71,13 +67,20 @@
# Prepend all log lines with the following tags.
# config.log_tags = [ :request_id ]

# "info" includes generic and useful information about system operation, but avoids logging too much
# information to avoid inadvertent exposure of personally identifiable information (PII). If you
# want to log everything, set the level to "debug".
config.log_level = ENV.fetch("RAILS_LOG_LEVEL", "info")

# Use a different cache store in production.
# config.cache_store = :mem_cache_store

# Use a real queuing backend for Active Job (and separate queues per environment).
# config.active_job.queue_adapter = :resque
# config.active_job.queue_adapter = :resque
# config.active_job.queue_name_prefix = "gemcutter_production"

# Disable caching for Action Mailer templates even if Action Controller
# caching is enabled.
config.action_mailer.perform_caching = false

# Ignore bad email addresses and do not raise email delivery errors.
Expand Down Expand Up @@ -122,5 +125,6 @@
value_max_bytes: 2_097_152 # 2MB
}

require_relative "../../lib/gemcutter/middleware/redirector"
config.middleware.use Gemcutter::Middleware::Redirector
end
10 changes: 7 additions & 3 deletions config/environments/test.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
require_relative "../../lib/gemcutter/middleware/redirector"
require "active_support/core_ext/integer/time"

# The test environment is used exclusively to run your application's
Expand Down Expand Up @@ -35,20 +34,25 @@
# Disable request forgery protection in test environment.
config.action_controller.allow_forgery_protection = false

# Disable caching for Action Mailer templates even if Action Controller
# caching is enabled.
config.action_mailer.perform_caching = false

# Tell Action Mailer not to deliver emails to the real world.
# The :test delivery method accumulates sent emails in the
# ActionMailer::Base.deliveries array.
config.action_mailer.delivery_method = :test

# Unlike controllers, the mailer instance doesn't have any context about the
# incoming request so you'll need to provide the :host parameter yourself.
config.action_mailer.default_url_options = { host: Gemcutter::HOST,
port: "31337",
protocol: Gemcutter::PROTOCOL }

# Print deprecation notices to the stderr.
config.active_support.deprecation = :stderr

require 'clearance_backdoor'
require_relative "../../lib/clearance_backdoor"
config.middleware.use ClearanceBackdoor

# Raise exceptions for disallowed deprecations.
Expand All @@ -65,7 +69,7 @@
# Annotate rendered view with file names.
# config.action_view.annotate_rendered_view_with_filenames = true

# Raise error when a before_action's only/except options reference missing actions
# Raise error when a before_action's only/except options reference missing actions.
config.action_controller.raise_on_missing_callback_actions = true

BCrypt::Engine.cost = BCrypt::Engine::MIN_COST
Expand Down
90 changes: 44 additions & 46 deletions config/initializers/content_security_policy.rb
Original file line number Diff line number Diff line change
@@ -1,49 +1,51 @@
# Be sure to restart your server when you modify this file.

# Define an application-wide content security policy
# For further information see the following documentation
# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy
# Define an application-wide content security policy.
# See the Securing Rails Applications Guide for more information:
# https://guides.rubyonrails.org/security.html#content-security-policy-header

Rails.application.config.content_security_policy do |policy|
policy.default_src :self
policy.font_src :self, "https://fonts.gstatic.com"
policy.img_src :self, "https://secure.gaug.es", "https://gravatar.com", "https://www.gravatar.com", "https://secure.gravatar.com",
"https://*.fastly-insights.com", "https://avatars.githubusercontent.com"
policy.object_src :none
# NOTE: This scirpt_src is overridden for all requests in ApplicationController
# This is the baseline in case the override is ever skipped
policy.script_src :self, "https://secure.gaug.es", "https://www.fastly-insights.com"
policy.style_src :self, "https://fonts.googleapis.com"
policy.connect_src :self, "https://s3-us-west-2.amazonaws.com/rubygems-dumps/", "https://*.fastly-insights.com", "https://fastly-insights.com",
"https://api.github.com", "http://localhost:*"
policy.form_action :self, "https://github.com/login/oauth/authorize"
policy.frame_ancestors :self
policy.base_uri :self
Rails.application.configure do
config.content_security_policy do |policy|
policy.default_src :self
policy.font_src :self, "https://fonts.gstatic.com"
policy.img_src :self, "https://secure.gaug.es", "https://gravatar.com", "https://www.gravatar.com", "https://secure.gravatar.com",
"https://*.fastly-insights.com", "https://avatars.githubusercontent.com"
policy.object_src :none
# NOTE: This scirpt_src is overridden for all requests in ApplicationController
# This is the baseline in case the override is ever skipped
policy.script_src :self, "https://secure.gaug.es", "https://www.fastly-insights.com"
policy.style_src :self, "https://fonts.googleapis.com"
policy.connect_src :self, "https://s3-us-west-2.amazonaws.com/rubygems-dumps/", "https://*.fastly-insights.com", "https://fastly-insights.com",
"https://api.github.com", "http://localhost:*"
policy.form_action :self, "https://github.com/login/oauth/authorize"
policy.frame_ancestors :self
policy.base_uri :self

# Specify URI for violation reports
policy.report_uri lambda {
dd_api_key = ENV['DATADOG_CSP_API_KEY'].presence
url = ActionDispatch::Http::URL.url_for(
protocol: 'https',
host: 'csp-report.browser-intake-datadoghq.com',
path: '/api/v2/logs',
params: {
"dd-api-key": dd_api_key,
"dd-evp-origin": 'content-security-policy',
ddsource: 'csp-report',
ddtags: {
service: "rubygems.org",
version: AppRevision.version,
env: Rails.env,
trace_id: Datadog::Tracing.correlation&.trace_id,
"gemcutter.user.id": (current_user.id if respond_to?(:signed_in?) && signed_in?)
}.compact.map { |k, v| "#{k}:#{v}" }.join(',')
}
)
# ensure we compute the URL on development/test,
# but onlu return it if the API key is configures
url if dd_api_key
}
# Specify URI for violation reports
policy.report_uri lambda {
dd_api_key = ENV['DATADOG_CSP_API_KEY'].presence
url = ActionDispatch::Http::URL.url_for(
protocol: 'https',
host: 'csp-report.browser-intake-datadoghq.com',
path: '/api/v2/logs',
params: {
"dd-api-key": dd_api_key,
"dd-evp-origin": 'content-security-policy',
ddsource: 'csp-report',
ddtags: {
service: "rubygems.org",
version: AppRevision.version,
env: Rails.env,
trace_id: Datadog::Tracing.correlation&.trace_id,
"gemcutter.user.id": (current_user.id if respond_to?(:signed_in?) && signed_in?)
}.compact.map { |k, v| "#{k}:#{v}" }.join(',')
}
)
# ensure we compute the URL on development/test,
# but onlu return it if the API key is configures
url if dd_api_key
}
end
end

# Generate session nonces for permitted importmap, inline scripts, and inline styles.
Expand All @@ -54,7 +56,3 @@
request.session.id.to_s.presence || SecureRandom.base64(16)
}
Rails.application.config.content_security_policy_nonce_directives = %w[script-src style-src]

# Report CSP violations to a specified URI. See:
# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy-Report-Only
# config.content_security_policy_report_only = truepoint
6 changes: 3 additions & 3 deletions config/initializers/filter_parameter_logging.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Configure parameters to be partially matched (e.g. passw matches password) and filtered from the log file.
# Use this to limit dissemination of sensitive information.
# See the ActiveSupport::ParameterFilter documentation for supported notations and behaviors.
Rails.application.config.filter_parameters += %I[
password passw secret token _key crypt salt certificate otp ssn api_key recovery_codes seed
jwt
Rails.application.config.filter_parameters += %i[
passw email secret token _key crypt salt certificate otp ssn
api_key recovery_codes seed jwt password
]
Loading

0 comments on commit a6ab21c

Please sign in to comment.