summaryrefslogtreecommitdiff
path: root/lib/chef_zero/endpoints/principal_endpoint.rb
blob: 2dcec1bc16b72e1e81bb841279b02b90a82a4eaf (plain)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
require 'ffi_yajl'
require 'chef_zero'
require 'chef_zero/rest_base'

module ChefZero
  module Endpoints
    # /principals/NAME
    class PrincipalEndpoint < RestBase
      DEFAULT_PUBLIC_KEY_NAME = "default"

      def get(request)
        name = request.rest_path[-1]
        data = get_principal_data(request, name)

        if data
          return json_response(200, data.merge(
            'authz_id' => '0'*32,
            'name' => name,
          ))
        end

        error(404, 'Principal not found')
      end

      private

      def get_principal_data(request, name)
        # If /organizations/ORG/users/NAME exists, use this user (only org members have precedence over clients).        hey are an org member.
        get_org_users_data(request, name) ||
          # If /organizations/ORG/clients/NAME exists, use the client.
          get_clients_data(request, name) ||
          # If there is no client with that name, check for a user (/users/NAME) and return that with
          # org_member = false.
          get_users_data(request, name)
      end

      def get_org_users_data(request, name)
        path = [ *request.rest_path[0..1], 'users', name ]
        return if get_data(request, path, :nil).nil?

        user_keys_json = get_data(request,
          [ 'user_keys', name, 'keys', DEFAULT_PUBLIC_KEY_NAME ],
          :data_store_exceptions
        )

        public_key = FFI_Yajl::Parser.parse(user_keys_json)['public_key']

        { "type" => "user",
          "org_member" => true,
          "public_key" => public_key
        }
      end

      def get_clients_data(request, name)
        path = [ *request.rest_path[0..1], 'clients', name ]
        json = get_data(request, path, :nil)
        return if json.nil?

        public_key = FFI_Yajl::Parser.parse(json)['public_key']

        { "type" => "client",
          "org_member" => true,
          "public_key" => public_key || PUBLIC_KEY
        }
      end

      def get_users_data(request, name)
        path = [ 'users', name ]
        return if get_data(request, path, :nil).nil?

        user_keys_json = get_data(request,
          [ 'user_keys', name, 'keys', DEFAULT_PUBLIC_KEY_NAME ],
          :data_store_exceptions
        )

        public_key = FFI_Yajl::Parser.parse(user_keys_json)['public_key']

        { "type" => "user",
          "org_member" => false,
          "public_key" => public_key
        }
      end
    end
  end
end