mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
24 lines
642 B
Ruby
24 lines
642 B
Ruby
if GlobalSetting.enable_cors && GlobalSetting.cors_origin.present?
|
|
|
|
class Discourse::Cors
|
|
def initialize(app, options = nil)
|
|
@app = app
|
|
@origins = GlobalSetting.cors_origin.split(',').map(&:strip)
|
|
end
|
|
|
|
def call(env)
|
|
status, headers, body = @app.call(env)
|
|
origin = nil
|
|
|
|
if origin = env['HTTP_ORIGIN']
|
|
origin = nil unless @origins.include? origin
|
|
end
|
|
|
|
headers['Access-Control-Allow-Origin'] = origin || @origins[0]
|
|
headers['Access-Control-Allow-Credentials'] = "true"
|
|
[status,headers,body]
|
|
end
|
|
end
|
|
|
|
Rails.configuration.middleware.insert 0, Discourse::Cors
|
|
end
|