Sha256: 8274883eff3f209d4883a421658a7fec59dc08f249fab19ddbf1e31451d798b6

Contents?: true

Size: 1.07 KB

Versions: 11

Compression:

Stored size: 1.07 KB

Contents

# frozen_string_literal: true

module Grape
  module Jwt
    # The Grape JWT authentication concern.
    module Authentication
      # Specifies which configuration keys are shared between keyless
      # and grape-jwt-authentication, so that we can easily pass through
      # our configuration to keyless.
      KEYLESS_CONFIGURATION = %i[
        authenticator rsa_public_key_url rsa_public_key_caching
        rsa_public_key_expiration jwt_issuer jwt_beholder jwt_options
        jwt_verification_key
      ].freeze

      # (Re)configure our gem dependencies. We take care of setting up
      # +Keyless+, which has been extracted from this gem.
      def self.configure_dependencies
        configure_keyless
      end

      # Configure the +Keyless+ gem with our configuration.
      def self.configure_keyless
        configuration = Grape::Jwt::Authentication.configuration

        Keyless.configure do |keyless|
          KEYLESS_CONFIGURATION.each do |option|
            keyless.send("#{option}=", configuration.send(option))
          end
        end
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
grape-jwt-authentication-2.5.0 lib/grape/jwt/authentication/dependencies.rb
grape-jwt-authentication-2.4.5 lib/grape/jwt/authentication/dependencies.rb
grape-jwt-authentication-2.4.4 lib/grape/jwt/authentication/dependencies.rb
grape-jwt-authentication-2.4.3 lib/grape/jwt/authentication/dependencies.rb
grape-jwt-authentication-2.4.2 lib/grape/jwt/authentication/dependencies.rb
grape-jwt-authentication-2.4.1 lib/grape/jwt/authentication/dependencies.rb
grape-jwt-authentication-2.4.0 lib/grape/jwt/authentication/dependencies.rb
grape-jwt-authentication-2.3.0 lib/grape/jwt/authentication/dependencies.rb
grape-jwt-authentication-2.2.0 lib/grape/jwt/authentication/dependencies.rb
grape-jwt-authentication-2.1.0 lib/grape/jwt/authentication/dependencies.rb
grape-jwt-authentication-2.0.4 lib/grape/jwt/authentication/dependencies.rb