Sha256: 894263c96136995f94c25719aede65cc2d979f11638949a64a600594daa48c65

Contents?: true

Size: 1.87 KB

Versions: 5

Compression:

Stored size: 1.87 KB

Contents

require 'puppet/network/http/handler'

class Puppet::Network::HTTP::WEBrickREST < WEBrick::HTTPServlet::AbstractServlet

    include Puppet::Network::HTTP::Handler

    def initialize(server, handler)
        raise ArgumentError, "server is required" unless server
        super(server)
        initialize_for_puppet(:server => server, :handler => handler)
    end

    # We had to expose this method for testing purposes.
    def params(request)
        result = request.query
        result.merge(client_information(request))
    end

    # WEBrick uses a service() method to respond to requests.  Simply delegate to the handler response() method.
    def service(request, response)
        process(request, response)
    end

  private

    def http_method(request)
        request.request_method
    end

    def path(request)
        # LAK:NOTE See http://snurl.com/21zf8  [groups_google_com] 
        x = '/' + request.path.split('/')[1]
    end

    def request_key(request)
        # LAK:NOTE See http://snurl.com/21zf8  [groups_google_com] 
        x = request.path.split('/')[2]
    end

    def body(request)
        request.body
    end

    def encode_result(request, response, result, status = 200)
        response.status = status
        response.body = result
    end

    # Retrieve node/cert/ip information from the request object.
    def client_information(request)
        result = {}
        if peer = request.peeraddr and ip = peer[3]
            result[:ip] = ip
        end

        # If they have a certificate (which will almost always be true)
        # then we get the hostname from the cert, instead of via IP
        # info
        result[:authenticated] = false
        if cert = request.client_cert and nameary = cert.subject.to_a.find { |ary| ary[0] == "CN" }
            result[:node] = nameary[1]
            result[:authenticated] = true
        end

        result
    end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
puppet-0.24.9 lib/puppet/network/http/webrick/rest.rb
puppet-0.24.7 lib/puppet/network/http/webrick/rest.rb
puppet-0.24.5 lib/puppet/network/http/webrick/rest.rb
puppet-0.24.6 lib/puppet/network/http/webrick/rest.rb
puppet-0.24.8 lib/puppet/network/http/webrick/rest.rb