Sha256: c34c6b492041b8fe1bae370d5ba8237d54ae5d8fd0ff15b848121b351a53eeff
Contents?: true
Size: 962 Bytes
Versions: 3
Compression:
Stored size: 962 Bytes
Contents
require 'rack/auth/basic' module Grape module Middleware module Auth class Base include Helpers attr_accessor :options, :app, :env def initialize(app, **options) @app = app @options = options end def call(env) dup._call(env) end def _call(env) self.env = env if options.key?(:type) auth_proc = options[:proc] auth_proc_context = context strategy_info = Grape::Middleware::Auth::Strategies[options[:type]] throw(:error, status: 401, message: 'API Authorization Failed.') unless strategy_info.present? strategy = strategy_info.create(@app, options) do |*args| auth_proc_context.instance_exec(*args, &auth_proc) end strategy.call(env) else app.call(env) end end end end end end
Version data entries
3 entries across 3 versions & 2 rubygems