Sha256: 9054e98d53ff3acb09e6ce5cd9ed4601df4937b85e0cc4543dec1dd4d3a9c79b

Contents?: true

Size: 1.18 KB

Versions: 114

Compression:

Stored size: 1.18 KB

Contents

require 'rack'
require 'rack/request'
require 'rack/response'

require 'puppet/network/http'
require 'puppet/network/http/rack/rest'

# An rack application, for running the Puppet HTTP Server.
class Puppet::Network::HTTP::Rack
  # The real rack application (which needs to respond to call).
  # The work we need to do, roughly is:
  # * Read request (from env) and prepare a response
  # * Route the request to the correct handler
  # * Return the response (in rack-format) to our caller.
  def call(env)
    request = Rack::Request.new(env)
    response = Rack::Response.new
    Puppet.debug 'Handling request: %s %s' % [request.request_method, request.fullpath]

    begin
      Puppet::Network::HTTP::RackREST.new.process(request, response)
    rescue => detail
      # Send a Status 500 Error on unhandled exceptions.
      response.status = 500
      response['Content-Type'] = 'text/plain'
      response.write _("Internal Server Error: \"%{message}\"") % { message: detail.message }
      # log what happened
      Puppet.log_exception(detail, _("Puppet Server (Rack): Internal Server Error: Unhandled Exception: \"%{message}\"") % { message: detail.message })
    end
    response.finish
  end
end

Version data entries

114 entries across 114 versions & 2 rubygems

Version Path
puppet-5.5.22 lib/puppet/network/http/rack.rb
puppet-5.5.22-x86-mingw32 lib/puppet/network/http/rack.rb
puppet-5.5.22-x64-mingw32 lib/puppet/network/http/rack.rb
puppet-5.5.22-universal-darwin lib/puppet/network/http/rack.rb
puppet-5.5.21 lib/puppet/network/http/rack.rb
puppet-5.5.21-x86-mingw32 lib/puppet/network/http/rack.rb
puppet-5.5.21-x64-mingw32 lib/puppet/network/http/rack.rb
puppet-5.5.21-universal-darwin lib/puppet/network/http/rack.rb
puppet-5.5.20 lib/puppet/network/http/rack.rb
puppet-5.5.20-x86-mingw32 lib/puppet/network/http/rack.rb
puppet-5.5.20-x64-mingw32 lib/puppet/network/http/rack.rb
puppet-5.5.20-universal-darwin lib/puppet/network/http/rack.rb
puppet-5.5.19 lib/puppet/network/http/rack.rb
puppet-5.5.19-x86-mingw32 lib/puppet/network/http/rack.rb
puppet-5.5.19-x64-mingw32 lib/puppet/network/http/rack.rb
puppet-5.5.19-universal-darwin lib/puppet/network/http/rack.rb
puppet-5.5.18 lib/puppet/network/http/rack.rb
puppet-5.5.18-x86-mingw32 lib/puppet/network/http/rack.rb
puppet-5.5.18-x64-mingw32 lib/puppet/network/http/rack.rb
puppet-5.5.18-universal-darwin lib/puppet/network/http/rack.rb