File: v3.rb

package info (click to toggle)
puppet-agent 8.10.0-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 27,404 kB
  • sloc: ruby: 286,820; sh: 492; xml: 116; makefile: 88; cs: 68
file content (40 lines) | stat: -rw-r--r-- 1,240 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
# frozen_string_literal: true

require_relative 'v3/environments'
require_relative '../../../../../puppet/network/http/api/indirected_routes'

module Puppet
  module Network
    module HTTP
      class API
        module Server
          class V3
            def self.wrap(&block)
              lambda do |request, response|
                Puppet::Network::Authorization
                  .check_external_authorization(request.method,
                                                request.path)

                block.call.call(request, response)
              end
            end

            INDIRECTED = Puppet::Network::HTTP::Route
                         .path(/.*/)
                         .any(wrap { Puppet::Network::HTTP::API::IndirectedRoutes.new })

            ENVIRONMENTS = Puppet::Network::HTTP::Route
                           .path(%r{^/environments$})
                           .get(wrap { Environments.new(Puppet.lookup(:environments)) })

            def self.routes
              Puppet::Network::HTTP::Route.path(/v3/)
                                          .any
                                          .chain(ENVIRONMENTS, INDIRECTED)
            end
          end
        end
      end
    end
  end
end