discourse/lib/hijack.rb

104 lines
3.3 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
require_dependency 'method_profiler'
# This module allows us to hijack a request and send it to the client in the deferred job queue
# For cases where we are making remote calls like onebox or proxying files and so on this helps
# free up a unicorn worker while the remote IO is happening
module Hijack
2017-11-26 22:50:57 -05:00
def hijack(&blk)
controller_class = self.class
if hijack = request.env['rack.hijack']
2017-11-28 00:47:20 -05:00
request.env['discourse.request_tracker.skip'] = true
request_tracker = request.env['discourse.request_tracker']
# in the past unicorn would recycle env, this is not longer the case
env = request.env
request_copy = ActionDispatch::Request.new(env)
2017-11-28 00:47:20 -05:00
transfer_timings = MethodProfiler.transfer
2017-11-28 00:47:20 -05:00
io = hijack.call
Scheduler::Defer.later("hijack #{params["controller"]} #{params["action"]}") do
MethodProfiler.start(transfer_timings)
begin
Thread.current[Logster::Logger::LOGSTER_ENV] = env
# do this first to confirm we have a working connection
# before doing any work
io.write "HTTP/1.1 "
# this trick avoids double render, also avoids any litter that the controller hooks
# place on the response
instance = controller_class.new
response = ActionDispatch::Response.new
instance.response = response
instance.request = request_copy
begin
instance.instance_eval(&blk)
rescue => e
# TODO we need to reuse our exception handling in ApplicationController
Discourse.warn_exception(e, message: "Failed to process hijacked response correctly", env: env)
end
unless instance.response_body || response.committed?
instance.status = 500
end
response.commit!
body = response.body
headers = response.headers
2017-12-06 18:30:50 -05:00
# add cors if needed
if cors_origins = env[Discourse::Cors::ORIGINS_ENV]
Discourse::Cors.apply_headers(cors_origins, env, headers)
2017-12-06 18:30:50 -05:00
end
headers['Content-Length'] = body.bytesize
headers['Content-Type'] = response.content_type || "text/plain"
2017-11-26 22:50:57 -05:00
headers['Connection'] = "close"
status_string = Rack::Utils::HTTP_STATUS_CODES[response.status.to_i] || "Unknown"
io.write "#{response.status} #{status_string}\r\n"
2017-11-26 22:50:57 -05:00
headers.each do |name, val|
io.write "#{name}: #{val}\r\n"
end
timings = MethodProfiler.stop
if timings && duration = timings[:total_duration]
io.write "X-Runtime: #{"%0.6f" % duration}\r\n"
end
io.write "\r\n"
io.write body
rescue Errno::EPIPE, IOError
# happens if client terminated before we responded, ignore
2017-11-28 19:54:20 -05:00
io = nil
2017-11-28 00:47:20 -05:00
ensure
MethodProfiler.clear
Thread.current[Logster::Logger::LOGSTER_ENV] = nil
2017-11-28 19:54:20 -05:00
io.close if io rescue nil
2017-11-28 00:47:20 -05:00
if request_tracker
status = response.status rescue 500
request_tracker.log_request_info(env, [status, headers || {}, []], timings)
2017-11-28 00:47:20 -05:00
end
end
end
# not leaked out, we use 418 ... I am a teapot to denote that we are hijacked
render plain: "", status: 418
else
blk.call
end
end
end