Sha256: 67e2cbe263e46906a29b7e4d93a87f4d120e425a53bd36f4c398b5e833ce9542

Contents?: true

Size: 1.15 KB

Versions: 87

Compression:

Stored size: 1.15 KB

Contents

require "chef/chef_fs/data_handler/data_handler_base"

class Chef
  module ChefFS
    module DataHandler
      class ContainerDataHandler < DataHandlerBase
        def normalize(container, entry)
          normalize_hash(container, {
            "containername" => remove_dot_json(entry.name),
            "containerpath" => remove_dot_json(entry.name),
          })
        end

        def preserve_key?(key)
          key == "containername"
        end

        # Verify that the JSON hash for this type has a key that matches its name.
        #
        # @param object [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, entry)
          base_name = remove_dot_json(entry.name)
          if object["containername"] != base_name
            yield("Name in #{entry.path_for_printing} must be '#{base_name}' (is '#{object['containername']}')")
          end
        end

        # There is no chef_class for users, nor does to_ruby work.
      end
    end
  end
end

Version data entries

87 entries across 87 versions & 1 rubygems

Version Path
chef-14.15.6 lib/chef/chef_fs/data_handler/container_data_handler.rb
chef-14.15.6-universal-mingw32 lib/chef/chef_fs/data_handler/container_data_handler.rb
chef-14.14.29 lib/chef/chef_fs/data_handler/container_data_handler.rb
chef-14.14.29-universal-mingw32 lib/chef/chef_fs/data_handler/container_data_handler.rb
chef-14.14.25-universal-mingw32 lib/chef/chef_fs/data_handler/container_data_handler.rb
chef-14.14.25 lib/chef/chef_fs/data_handler/container_data_handler.rb
chef-14.14.14-universal-mingw32 lib/chef/chef_fs/data_handler/container_data_handler.rb
chef-14.14.14 lib/chef/chef_fs/data_handler/container_data_handler.rb
chef-14.13.11 lib/chef/chef_fs/data_handler/container_data_handler.rb
chef-14.12.9 lib/chef/chef_fs/data_handler/container_data_handler.rb
chef-14.12.3 lib/chef/chef_fs/data_handler/container_data_handler.rb
chef-13.12.14 lib/chef/chef_fs/data_handler/container_data_handler.rb
chef-14.11.21 lib/chef/chef_fs/data_handler/container_data_handler.rb
chef-14.10.9 lib/chef/chef_fs/data_handler/container_data_handler.rb
chef-14.9.13 lib/chef/chef_fs/data_handler/container_data_handler.rb
chef-14.8.12 lib/chef/chef_fs/data_handler/container_data_handler.rb
chef-14.7.17 lib/chef/chef_fs/data_handler/container_data_handler.rb
chef-13.12.3 lib/chef/chef_fs/data_handler/container_data_handler.rb
chef-14.6.47 lib/chef/chef_fs/data_handler/container_data_handler.rb
chef-13.11.3 lib/chef/chef_fs/data_handler/container_data_handler.rb