summaryrefslogtreecommitdiff
path: root/lib/chef/chef_fs/data_handler/organization_data_handler.rb
blob: d9f97b29ac9209cd682fca1c3c81006a2ce8aa06 (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
require "chef/chef_fs/data_handler/data_handler_base"

class Chef
  module ChefFS
    module DataHandler
      class OrganizationDataHandler < DataHandlerBase
        def normalize(organization, entry)
          result = normalize_hash(organization, {
            "name" => entry.org,
            "full_name" => entry.org,
            "org_type" => "Business",
            "clientname" => "#{entry.org}-validator",
            "billing_plan" => "platform-free",
          },)
          result
        end

        def preserve_key?(key)
          return key == "name"
        end

        def verify_integrity(object, entry, &on_error)
          if entry.org != object["name"]
            on_error.call("Name must be '#{entry.org}' (is '#{object['name']}')")
          end
        end
      end
    end
  end
end