Sha256: 27f4c1d12bee3de0ca0902c5838859ea0b28d523deccbda66f546a3c5b5a0204

Contents?: true

Size: 1.7 KB

Versions: 72

Compression:

Stored size: 1.7 KB

Contents

require 'puppet/indirector/rest'
require 'puppet/file_bucket/file'

module Puppet::FileBucketFile
  class Rest < Puppet::Indirector::REST
    desc "This is a REST based mechanism to send/retrieve file to/from the filebucket"

    def head(request)
      return super unless use_http_client?

      session = Puppet.lookup(:http_session)
      api = session.route_to(:puppet)
      api.head_filebucket_file(
        request.key,
        environment: request.environment.to_s,
        bucket_path: request.options[:bucket_path],
      )
    rescue Puppet::HTTP::ResponseError => e
      return nil if e.response.code == 404
      raise convert_to_http_error(e.response.nethttp)
    end

    def find(request)
      return super unless use_http_client?

      session = Puppet.lookup(:http_session)
      api = session.route_to(:puppet)
      _, filebucket_file = api.get_filebucket_file(
        request.key,
        environment: request.environment.to_s,
        bucket_path: request.options[:bucket_path],
        diff_with: request.options[:diff_with],
        list_all: request.options[:list_all],
        fromdate: request.options[:fromdate],
        todate: request.options[:todate],
      )
      filebucket_file
    rescue Puppet::HTTP::ResponseError => e
      raise convert_to_http_error(e.response.nethttp)
    end

    def save(request)
      return super unless use_http_client?

      session = Puppet.lookup(:http_session)
      api = session.route_to(:puppet)
      api.put_filebucket_file(
        request.key,
        body: request.instance.render,
        environment: request.environment.to_s,
      )
    rescue Puppet::HTTP::ResponseError => e
      raise convert_to_http_error(e.response.nethttp)
    end
  end
end

Version data entries

72 entries across 72 versions & 1 rubygems

Version Path
puppet-6.29.0 lib/puppet/indirector/file_bucket_file/rest.rb
puppet-6.29.0-x86-mingw32 lib/puppet/indirector/file_bucket_file/rest.rb
puppet-6.29.0-x64-mingw32 lib/puppet/indirector/file_bucket_file/rest.rb
puppet-6.29.0-universal-darwin lib/puppet/indirector/file_bucket_file/rest.rb
puppet-6.28.0 lib/puppet/indirector/file_bucket_file/rest.rb
puppet-6.28.0-x86-mingw32 lib/puppet/indirector/file_bucket_file/rest.rb
puppet-6.28.0-x64-mingw32 lib/puppet/indirector/file_bucket_file/rest.rb
puppet-6.28.0-universal-darwin lib/puppet/indirector/file_bucket_file/rest.rb
puppet-6.27.0 lib/puppet/indirector/file_bucket_file/rest.rb
puppet-6.27.0-x86-mingw32 lib/puppet/indirector/file_bucket_file/rest.rb
puppet-6.27.0-x64-mingw32 lib/puppet/indirector/file_bucket_file/rest.rb
puppet-6.27.0-universal-darwin lib/puppet/indirector/file_bucket_file/rest.rb
puppet-6.26.0 lib/puppet/indirector/file_bucket_file/rest.rb
puppet-6.26.0-x86-mingw32 lib/puppet/indirector/file_bucket_file/rest.rb
puppet-6.26.0-x64-mingw32 lib/puppet/indirector/file_bucket_file/rest.rb
puppet-6.26.0-universal-darwin lib/puppet/indirector/file_bucket_file/rest.rb
puppet-6.25.1 lib/puppet/indirector/file_bucket_file/rest.rb
puppet-6.25.1-x86-mingw32 lib/puppet/indirector/file_bucket_file/rest.rb
puppet-6.25.1-x64-mingw32 lib/puppet/indirector/file_bucket_file/rest.rb
puppet-6.25.1-universal-darwin lib/puppet/indirector/file_bucket_file/rest.rb