Sha256: 0d2d0890e6abd3838440cc57cb5c735ed0ac46d302dba34f342d8555e478ffb5

Contents?: true

Size: 1.14 KB

Versions: 8

Compression:

Stored size: 1.14 KB

Contents

# The `json_data` is a hiera 5 `data_hash` data provider function.
# See [the configuration guide documentation](https://docs.puppet.com/puppet/latest/hiera_config_yaml_5.html#configuring-a-hierarchy-level-built-in-backends) for
# how to use this function.
#
# @since 4.8.0
#
Puppet::Functions.create_function(:json_data) do
  dispatch :json_data do
    param 'Struct[{path=>String[1]}]', :options
    param 'Puppet::LookupContext', :context
  end

  argument_mismatch :missing_path do
    param 'Hash', :options
    param 'Puppet::LookupContext', :context
  end

  def json_data(options, context)
    path = options['path']
    context.cached_file_data(path) do |content|
      begin
        Puppet::Util::Json.load(content)
      rescue Puppet::Util::Json::ParseError => ex
        # Filename not included in message, so we add it here.
        raise Puppet::DataBinding::LookupError, "Unable to parse (%{path}): %{message}" % { path: path, message: ex.message }
      end
    end
  end

  def missing_path(options, context)
    "one of 'path', 'paths' 'glob', 'globs' or 'mapped_paths' must be declared in hiera.yaml when using this data_hash function"
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
puppet-5.5.1 lib/puppet/functions/json_data.rb
puppet-5.5.1-x86-mingw32 lib/puppet/functions/json_data.rb
puppet-5.5.1-x64-mingw32 lib/puppet/functions/json_data.rb
puppet-5.5.1-universal-darwin lib/puppet/functions/json_data.rb
puppet-5.5.0 lib/puppet/functions/json_data.rb
puppet-5.5.0-x86-mingw32 lib/puppet/functions/json_data.rb
puppet-5.5.0-x64-mingw32 lib/puppet/functions/json_data.rb
puppet-5.5.0-universal-darwin lib/puppet/functions/json_data.rb