Class: Puppet::FileBucketFile::Rest

Inherits:
Indirector::REST show all
Defined in:
lib/puppet/indirector/file_bucket_file/rest.rb

Constant Summary

Constants inherited from Indirector::REST

Indirector::REST::EXCLUDED_FORMATS, Indirector::REST::IndirectedRoutes, Indirector::REST::MAJOR_VERSION_JSON_DEFAULT

Constants included from Util

Util::AbsolutePathPosix, Util::AbsolutePathWindows, Util::DEFAULT_POSIX_MODE, Util::DEFAULT_WINDOWS_MODE, Util::PUPPET_STACK_INSERTION_FRAME, Util::RFC_3986_URI_REGEX

Constants included from Util::POSIX

Util::POSIX::LOCALE_ENV_VARS, Util::POSIX::USER_ENV_VARS

Constants included from Util::SymbolicFileMode

Util::SymbolicFileMode::SetGIDBit, Util::SymbolicFileMode::SetUIDBit, Util::SymbolicFileMode::StickyBit, Util::SymbolicFileMode::SymbolicMode, Util::SymbolicFileMode::SymbolicSpecialToBit

Constants included from Util::Docs

Util::Docs::HEADER_LEVELS

Instance Attribute Summary

Attributes included from Util::Docs

#doc, #nodoc

Instance Method Summary collapse

Methods inherited from Indirector::REST

#add_profiling_header, #destroy, #do_request, #handle_response, #headers, #http_delete, #http_get, #http_head, #http_post, #http_put, #http_request, #network, port, #search, server, srv_service, #use_http_client?, use_port_setting, use_server_setting, use_srv_service, #validate_key

Methods inherited from Indirector::Terminus

abstract_terminus?, #allow_remote_requests?, const2name, #indirection, indirection_name, inherited, #initialize, mark_as_abstract_terminus, model, #model, #name, name2const, register_terminus_class, terminus_class, terminus_classes, #terminus_type, #validate, #validate_key, #validate_model

Methods included from Util::InstanceLoader

#instance_hash, #instance_load, #instance_loader, #instance_loading?, #loaded_instance, #loaded_instances

Methods included from Util

absolute_path?, benchmark, chuser, clear_environment, default_env, deterministic_rand, deterministic_rand_int, exit_on_fail, format_backtrace_array, format_puppetstack_frame, get_env, get_environment, logmethods, merge_environment, path_to_uri, pretty_backtrace, replace_file, resolve_stackframe, safe_posix_fork, set_env, symbolizehash, thinmark, uri_encode, uri_query_encode, uri_to_path, which, withenv, withumask

Methods included from Util::POSIX

#get_posix_field, #gid, groups_of, #idfield, #methodbyid, #methodbyname, #search_posix_field, #uid

Methods included from Util::SymbolicFileMode

#normalize_symbolic_mode, #symbolic_mode_to_int, #valid_symbolic_mode?

Methods included from Util::Docs

#desc, #dochook, #doctable, #markdown_definitionlist, #markdown_header, #nodoc?, #pad, scrub

Constructor Details

This class inherits a constructor from Puppet::Indirector::Terminus

Instance Method Details

#find(request) ⇒ Object



23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# File 'lib/puppet/indirector/file_bucket_file/rest.rb', line 23

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

#head(request) ⇒ Object



8
9
10
11
12
13
14
15
16
17
18
19
20
21
# File 'lib/puppet/indirector/file_bucket_file/rest.rb', line 8

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

#save(request) ⇒ Object



42
43
44
45
46
47
48
49
50
51
52
53
54
# File 'lib/puppet/indirector/file_bucket_file/rest.rb', line 42

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