2019-08-08 06:57:28 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
# Provides a way to check a CSRF token outside of a controller
|
|
|
|
class CSRFTokenVerifier
|
2019-08-12 05:55:02 -04:00
|
|
|
class InvalidCSRFToken < StandardError; end
|
|
|
|
|
2019-08-08 06:57:28 -04:00
|
|
|
include ActiveSupport::Configurable
|
|
|
|
include ActionController::RequestForgeryProtection
|
|
|
|
|
|
|
|
# Use config from ActionController::Base
|
|
|
|
config.each_key do |configuration_name|
|
|
|
|
undef_method configuration_name
|
|
|
|
define_method configuration_name do
|
|
|
|
ActionController::Base.config[configuration_name]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def call(env)
|
|
|
|
@request = ActionDispatch::Request.new(env.dup)
|
|
|
|
|
|
|
|
unless verified_request?
|
2019-08-12 05:55:02 -04:00
|
|
|
raise InvalidCSRFToken
|
2019-08-08 06:57:28 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-08-12 20:13:08 -04:00
|
|
|
public :form_authenticity_token
|
|
|
|
|
2019-08-08 06:57:28 -04:00
|
|
|
private
|
|
|
|
|
|
|
|
attr_reader :request
|
|
|
|
delegate :params, :session, to: :request
|
|
|
|
end
|