Class: OctocatalogDiff::API::V1::CatalogCompile

Inherits:
Object
  • Object
show all
Defined in:
lib/octocatalog-diff/api/v1/catalog-compile.rb

Overview

This class allows octocatalog-diff to be used to compile catalogs.

Class Method Summary collapse

Class Method Details

.catalog(options = nil) ⇒ OctocatalogDiff::Catalog

Public: Compile a catalog given the options provided.

Parameters are to be passed in a hash. Other catalog building parameters are also accepted

Parameters:

  • :logger (Logger)

    Logger object (be sure to configure log level)

  • :node (String)

    Node name (FQDN)

Returns:



20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# File 'lib/octocatalog-diff/api/v1/catalog-compile.rb', line 20

def self.catalog(options = nil)
  # Validate the required options.
  unless options.is_a?(Hash)
    raise ArgumentError, 'Usage: #catalog(options_hash)'
  end

  pass_opts, logger = OctocatalogDiff::API::V1::Common.logger_from_options(options)
  logger.debug "Compiling catalog for #{options[:node]}"

  # Compile catalog
  catalog_opts = pass_opts.merge(
    from_catalog: '-', # Prevents a compile
    to_catalog: nil, # Forces a compile
  )
  cat_obj = OctocatalogDiff::Util::Catalogs.new(catalog_opts, logger)
  OctocatalogDiff::API::V1::Catalog.new(cat_obj.catalogs[:to])
end