Class: Authify::Middleware::JWTAuth
- Inherits:
-
Object
- Object
- Authify::Middleware::JWTAuth
- Includes:
- Core::Helpers::JWTSSL
- Defined in:
- lib/authify/middleware/jwt_auth.rb
Overview
Auth Middleware
Instance Method Summary collapse
-
#call(env) ⇒ Object
rubocop:disable Metrics/MethodLength.
-
#initialize(app) ⇒ JWTAuth
constructor
A new instance of JWTAuth.
Constructor Details
#initialize(app) ⇒ JWTAuth
7 8 9 |
# File 'lib/authify/middleware/jwt_auth.rb', line 7 def initialize(app) @app = app end |
Instance Method Details
#call(env) ⇒ Object
rubocop:disable Metrics/MethodLength
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
# File 'lib/authify/middleware/jwt_auth.rb', line 12 def call(env) = { algorithm: 'ES256', iss: CONFIG[:jwt][:issuer] } bearer = env.fetch('HTTP_AUTHORIZATION', '').slice(7..-1) payload, _header = JWT.decode bearer, public_key, true, env[:scopes] = payload['scopes'] env[:user] = payload['user'] @app.call env rescue JWT::DecodeError [ 401, { 'Content-Type' => 'text/plain' }, ['A token must be passed.'] ] rescue JWT::ExpiredSignature [ 403, { 'Content-Type' => 'text/plain' }, ['The token has expired.'] ] rescue JWT::InvalidIssuerError [ 403, { 'Content-Type' => 'text/plain' }, ['The token does not have a valid issuer.'] ] rescue JWT::InvalidIatError [ 403, { 'Content-Type' => 'text/plain' }, ['The token does not have a valid "issued at" time.'] ] end |