Sha256: 5c21612af2096a35f8ae68f5023bb58017f75f1001030815c55782467615021b

Contents?: true

Size: 1.57 KB

Versions: 29

Compression:

Stored size: 1.57 KB

Contents

require "chef/chef_fs/data_handler/data_handler_base"

class Chef
  module ChefFS
    module DataHandler
      class PolicyDataHandler < DataHandlerBase
        def name_and_revision(name)
          # foo-1.0.0 = foo, 1.0.0
          name = remove_dot_json(name)
          if name =~ /^(.*)-([^-]*)$/
            name, revision_id = $1, $2
          end
          revision_id ||= "0.0.0"
          [ name, revision_id ]
        end

        def normalize(policy, entry)
          # foo-1.0.0 = foo, 1.0.0
          name, revision_id = name_and_revision(entry.name)
          defaults = {
            "name" => name,
            "revision_id" => revision_id,
            "run_list" => [],
            "cookbook_locks" => {},
          }
          normalize_hash(policy, defaults)
        end

        # Verify that the JSON hash for this type has a key that matches its name.
        #
        # @param object_data [Object] JSON hash of the object
        # @param entry [Chef::ChefFS::FileSystem::BaseFSObject] filesystem object we are verifying
        # @yield  [s] callback to handle errors
        # @yieldparam [s<string>] error message
        def verify_integrity(object_data, entry)
          name, revision = name_and_revision(entry.name)
          if object_data["name"] != name
            yield("Object name '#{object_data['name']}' doesn't match entry '#{name}'.")
          end

          if object_data["revision_id"] != revision
            yield("Object revision ID '#{object_data['revision_id']}' doesn't match entry '#{revision}'.")
          end
        end
      end
    end
  end
end

Version data entries

29 entries across 29 versions & 1 rubygems

Version Path
chef-14.15.6 lib/chef/chef_fs/data_handler/policy_data_handler.rb
chef-14.15.6-universal-mingw32 lib/chef/chef_fs/data_handler/policy_data_handler.rb
chef-14.14.29 lib/chef/chef_fs/data_handler/policy_data_handler.rb
chef-14.14.29-universal-mingw32 lib/chef/chef_fs/data_handler/policy_data_handler.rb
chef-14.14.25-universal-mingw32 lib/chef/chef_fs/data_handler/policy_data_handler.rb
chef-14.14.25 lib/chef/chef_fs/data_handler/policy_data_handler.rb
chef-14.14.14-universal-mingw32 lib/chef/chef_fs/data_handler/policy_data_handler.rb
chef-14.14.14 lib/chef/chef_fs/data_handler/policy_data_handler.rb
chef-14.13.11 lib/chef/chef_fs/data_handler/policy_data_handler.rb
chef-14.12.9 lib/chef/chef_fs/data_handler/policy_data_handler.rb
chef-14.12.3 lib/chef/chef_fs/data_handler/policy_data_handler.rb
chef-14.11.21 lib/chef/chef_fs/data_handler/policy_data_handler.rb
chef-14.10.9 lib/chef/chef_fs/data_handler/policy_data_handler.rb
chef-14.9.13 lib/chef/chef_fs/data_handler/policy_data_handler.rb
chef-14.8.12 lib/chef/chef_fs/data_handler/policy_data_handler.rb
chef-14.7.17 lib/chef/chef_fs/data_handler/policy_data_handler.rb
chef-14.6.47 lib/chef/chef_fs/data_handler/policy_data_handler.rb
chef-14.5.33 lib/chef/chef_fs/data_handler/policy_data_handler.rb
chef-14.5.27 lib/chef/chef_fs/data_handler/policy_data_handler.rb
chef-14.5.27-universal-mingw32 lib/chef/chef_fs/data_handler/policy_data_handler.rb