Class: Isomorfeus::Puppetmaster::Server::ExecutorMiddleware
- Inherits:
-
Object
- Object
- Isomorfeus::Puppetmaster::Server::ExecutorMiddleware
- Defined in:
- lib/isomorfeus/puppetmaster/server/executor_middleware.rb
Constant Summary collapse
- @@request_key =
nil
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app) ⇒ ExecutorMiddleware
constructor
A new instance of ExecutorMiddleware.
Constructor Details
#initialize(app) ⇒ ExecutorMiddleware
Returns a new instance of ExecutorMiddleware.
9 10 11 12 |
# File 'lib/isomorfeus/puppetmaster/server/executor_middleware.rb', line 9 def initialize(app) raise '@@request_key not set!' unless @@request_key @app = app end |
Instance Method Details
#call(env) ⇒ Object
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 |
# File 'lib/isomorfeus/puppetmaster/server/executor_middleware.rb', line 14 def call(env) if env['PATH_INFO'] == '/__executor__' && env['REQUEST_METHOD'] == 'POST' request = Rack::Request.new(env) response = nil unless request.body.nil? request_hash = Oj.load(request.body.read, mode: :strict) if request_hash['key'] != @@request_key response = Rack::Response.new(Oj.dump({ 'error' => 'wrong key given, execution denied' }), 401, 'Content-Type' => 'application/json') else begin result = TOPLEVEL_BINDING.eval('self').instance_eval(request_hash['code']) if request_hash['code'] response = Rack::Response.new(Oj.dump({ 'result' => result }), 200, 'Content-Type' => 'application/json') rescue Exception => e response = Rack::Response.new(Oj.dump({ 'error' => "#{e.class}: #{e.}", 'backtrace' => e.backtrace.join("\n") }), 200, 'Content-Type' => 'application/json') end end end response.finish else @app.call(env) end end |