Sha256: 7c04766348ba11f0c064763c989286dc71ddcf304fc3ca0c593698cbf72ba6ef

Contents?: true

Size: 1.27 KB

Versions: 14

Compression:

Stored size: 1.27 KB

Contents

module ForestLiana
  class BaseController < ::ActionController::Base
    skip_before_action :verify_authenticity_token, raise: false
    wrap_parameters false
    before_action :reject_unauthorized_ip

    def route_not_found
      head :not_found
    end

    private

    def reject_unauthorized_ip
      begin
        ip = request.remote_ip

        if !ForestLiana::IpWhitelist.is_ip_whitelist_retrieved || !ForestLiana::IpWhitelist.is_ip_valid(ip)
          unless ForestLiana::IpWhitelist.retrieve
            raise ForestLiana::Errors::HTTP403Error.new("IP whitelist not retrieved")
          end

          unless ForestLiana::IpWhitelist.is_ip_valid(ip)
            raise ForestLiana::Errors::HTTP403Error.new("IP address rejected (#{ip})")
          end
        end
      rescue ForestLiana::Errors::ExpectedError => exception
        error_data = ForestAdmin::JSONAPI::Serializer.serialize_errors([{
          status: exception.error_code,
          detail: exception.message
        }])
        render(serializer: nil, json: error_data, status: exception.status)
      rescue => exception
        FOREST_LOGGER.error(exception)
        FOREST_LOGGER.error(exception.backtrace.join("\n"))
        render(serializer: nil, json: nil, status: :internal_server_error)
      end
    end
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
forest_liana-7.3.0 app/controllers/forest_liana/base_controller.rb
forest_liana-7.2.2 app/controllers/forest_liana/base_controller.rb
forest_liana-7.2.1 app/controllers/forest_liana/base_controller.rb
forest_liana-7.2.0 app/controllers/forest_liana/base_controller.rb
forest_liana-7.1.0 app/controllers/forest_liana/base_controller.rb
forest_liana-7.0.2 app/controllers/forest_liana/base_controller.rb
forest_liana-7.0.1 app/controllers/forest_liana/base_controller.rb
forest_liana-7.0.0 app/controllers/forest_liana/base_controller.rb
forest_liana-7.0.0.beta.6 app/controllers/forest_liana/base_controller.rb
forest_liana-7.0.0.beta.5 app/controllers/forest_liana/base_controller.rb
forest_liana-7.0.0.beta.4 app/controllers/forest_liana/base_controller.rb
forest_liana-7.0.0.beta.3 app/controllers/forest_liana/base_controller.rb
forest_liana-7.0.0.beta.2 app/controllers/forest_liana/base_controller.rb
forest_liana-7.0.0.beta.1 app/controllers/forest_liana/base_controller.rb