File Manager

Path: /opt/chef/embedded/lib/ruby/gems/2.7.0/gems/cheffish-16.0.2/lib/chef/resource/

Viewing File: chef_container.rb

require_relative "../../cheffish"
require_relative "../../cheffish/base_resource"
require "chef/chef_fs/data_handler/container_data_handler"

class Chef
  class Resource
    class ChefContainer < Cheffish::BaseResource
      provides :chef_container

      property :chef_container_name, Cheffish::NAME_REGEX, name_property: true

      action :create do
        unless @current_exists
          converge_by "create container #{new_resource.chef_container_name} at #{rest.url}" do
            rest.post("containers", normalize_for_post(new_json))
          end
        end
      end

      action :delete do
        if @current_exists
          converge_by "delete container #{new_resource.chef_container_name} at #{rest.url}" do
            rest.delete("containers/#{new_resource.chef_container_name}")
          end
        end
      end

      action_class do
        def load_current_resource
          @current_exists = rest.get("containers/#{new_resource.chef_container_name}")
        rescue Net::HTTPClientException => e
          if e.response.code == "404"
            @current_exists = false
          else
            raise
          end
        end

        def new_json
          {}
        end

        def data_handler
          Chef::ChefFS::DataHandler::ContainerDataHandler.new
        end

        def keys
          { "containername" => :chef_container_name, "containerpath" => :chef_container_name }
        end
      end
    end
  end
end