我正在尝试构建一个机架中间件 GEM ,它使用机架中间件本身(RackWired)。
我有一个现有的应用程序,其config.ru使用Rack :: Builder。在那个块(Rack :: Builder)中,我想指定我的中间件,当它被调用时,在我自己的内部使用第三方中间件(rack-cors)做一些事情。让我感到困惑。
问题是Rack :: Builder的上下文在config.ru中,因此我的中间件(RackWired)无法访问它以“使用”第三方中间件(rack-cors)。
我的努力意图是here
有没有办法在中间件中使用中间件?
谢谢
答案 0 :(得分:1)
是的,我不完全确定你要做什么。但你可以这样做
class CorsWired
def initialize(app)
@app = app
end
def call(env)
cors = Rack::Cors.new(@app, {}) do
allow do
origins '*'
resource '*', :headers => :any, :methods => [:get, :post, :put, :options, :delete], :credentials => false
end
end
cors.call(env)
end
end
你的config.ru应该有use CorsWired
,而不是use CorsWired.new
这就是我想你在问什么,但我认为你错过了中间件。你应该改变你的config.ru
以在中间件之前/之后使用rack-cors,具体取决于你想要做什么。
require 'rack'
require 'rack/cors'
require './cors_wired'
app = Rack::Builder.new do
use Rack::Cors do
allow do
origins '*'
resource '*', :headers => :any, :methods => [:get, :post, :put, :options, :delete], :credentials => false
end
end
use CorsWired
run lambda { |env| [200, {'Content-Type' => 'text/plain'}, ['OK']] }
end
run app