Class: Chef::Provider::HttpRequest
- Inherits:
-
Chef::Provider
- Object
- Chef::Provider
- Chef::Provider::HttpRequest
- Defined in:
- lib/chef/provider/http_request.rb
Instance Attribute Summary collapse
-
#http ⇒ Object
Returns the value of attribute http.
Attributes inherited from Chef::Provider
#action, #current_resource, #logger, #new_resource, #recipe_name, #run_context
Instance Method Summary collapse
-
#action_delete ⇒ Object
Send a DELETE request to new_resource.url.
-
#action_get ⇒ Object
Send a GET request to new_resource.url.
-
#action_head ⇒ Object
Send a HEAD request to new_resource.url.
-
#action_patch ⇒ Object
Send a PATCH request to new_resource.url, with the message as the payload.
-
#action_post ⇒ Object
Send a POST request to new_resource.url, with the message as the payload.
-
#action_put ⇒ Object
Send a PUT request to new_resource.url, with the message as the payload.
- #load_current_resource ⇒ Object
Methods inherited from Chef::Provider
action, #action_nothing, #check_resource_semantics!, #cleanup_after_converge, #compile_and_converge_action, #converge_by, #converge_if_changed, #cookbook_name, #define_resource_requirements, #description, #events, include_resource_dsl?, include_resource_dsl_module, #initialize, #introduced, #node, #process_resource_requirements, provides, provides?, #requirements, #resource_collection, #resource_updated?, #run_action, #set_updated_status, supports?, use_inline_resources, #whyrun_mode?, #whyrun_supported?
Methods included from Mixin::Provides
#provided_as, #provides, #provides?
Methods included from Mixin::DescendantsTracker
#descendants, descendants, direct_descendants, #direct_descendants, find_descendants_by_name, #find_descendants_by_name, #inherited, store_inherited
Methods included from Mixin::LazyModuleInclude
#descendants, #include, #included
Methods included from Mixin::NotifyingBlock
#notifying_block, #subcontext_block
Methods included from DSL::DeclareResource
#build_resource, #declare_resource, #delete_resource, #delete_resource!, #edit_resource, #edit_resource!, #find_resource, #find_resource!, #with_run_context
Methods included from Mixin::ShellOut
#a_to_s, #clean_array, #shell_out, #shell_out!, #shell_out_compact, #shell_out_compact!, #shell_out_compact_timeout, #shell_out_compact_timeout!, #shell_out_with_systems_locale, #shell_out_with_systems_locale!
Methods included from Mixin::PathSanity
#enforce_path_sanity, #sanitized_path
Methods included from Mixin::PowershellOut
#powershell_out, #powershell_out!
Methods included from Mixin::WindowsArchitectureHelper
#assert_valid_windows_architecture!, #disable_wow64_file_redirection, #forced_32bit_override_required?, #is_i386_process_on_x86_64_windows?, #node_supports_windows_architecture?, #node_windows_architecture, #restore_wow64_file_redirection, #valid_windows_architecture?, #with_os_architecture, #wow64_architecture_override_required?, #wow64_directory
Methods included from Mixin::PowershellExec
Methods included from DSL::PlatformIntrospection
#docker?, #platform?, #platform_family?, #value_for_platform, #value_for_platform_family
Constructor Details
This class inherits a constructor from Chef::Provider
Instance Attribute Details
#http ⇒ Object
Returns the value of attribute http.
28 29 30 |
# File 'lib/chef/provider/http_request.rb', line 28 def http @http end |
Instance Method Details
#action_delete ⇒ Object
Send a DELETE request to new_resource.url
108 109 110 111 112 113 114 115 116 117 118 |
# File 'lib/chef/provider/http_request.rb', line 108 def action_delete converge_by("#{new_resource} DELETE to #{new_resource.url}") do body = @http.delete( "#{new_resource.url}", new_resource.headers ) new_resource.updated_by_last_action(true) logger.info("#{new_resource} DELETE to #{new_resource.url} successful") logger.trace("#{new_resource} DELETE request response: #{body}") end end |
#action_get ⇒ Object
Send a GET request to new_resource.url
52 53 54 55 56 57 58 59 60 61 62 63 |
# File 'lib/chef/provider/http_request.rb', line 52 def action_get converge_by("#{new_resource} GET to #{new_resource.url}") do = (new_resource.) body = @http.get( "#{new_resource.url}", new_resource.headers ) logger.info("#{new_resource} GET to #{new_resource.url} successful") logger.trace("#{new_resource} GET request response: #{body}") end end |
#action_head ⇒ Object
Send a HEAD request to new_resource.url
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
# File 'lib/chef/provider/http_request.rb', line 35 def action_head = (new_resource.) # CHEF-4762: we expect a nil return value from Chef::HTTP for a "200 Success" response # and false for a "304 Not Modified" response modified = @http.head( "#{new_resource.url}", new_resource.headers ) logger.info("#{new_resource} HEAD to #{new_resource.url} successful") logger.trace("#{new_resource} HEAD request response: #{modified}") # :head is usually used to trigger notifications, which converge_by now does if modified != false converge_by("#{new_resource} HEAD to #{new_resource.url} returned modified, trigger notifications") {} end end |
#action_patch ⇒ Object
Send a PATCH request to new_resource.url, with the message as the payload
66 67 68 69 70 71 72 73 74 75 76 77 |
# File 'lib/chef/provider/http_request.rb', line 66 def action_patch converge_by("#{new_resource} PATCH to #{new_resource.url}") do = (new_resource.) body = @http.patch( "#{new_resource.url}", , new_resource.headers ) logger.info("#{new_resource} PATCH to #{new_resource.url} successful") logger.trace("#{new_resource} PATCH request response: #{body}") end end |
#action_post ⇒ Object
Send a POST request to new_resource.url, with the message as the payload
94 95 96 97 98 99 100 101 102 103 104 105 |
# File 'lib/chef/provider/http_request.rb', line 94 def action_post converge_by("#{new_resource} POST to #{new_resource.url}") do = (new_resource.) body = @http.post( "#{new_resource.url}", , new_resource.headers ) logger.info("#{new_resource} POST to #{new_resource.url} message: #{message.inspect} successful") logger.trace("#{new_resource} POST request response: #{body}") end end |
#action_put ⇒ Object
Send a PUT request to new_resource.url, with the message as the payload
80 81 82 83 84 85 86 87 88 89 90 91 |
# File 'lib/chef/provider/http_request.rb', line 80 def action_put converge_by("#{new_resource} PUT to #{new_resource.url}") do = (new_resource.) body = @http.put( "#{new_resource.url}", , new_resource.headers ) logger.info("#{new_resource} PUT to #{new_resource.url} successful") logger.trace("#{new_resource} PUT request response: #{body}") end end |
#load_current_resource ⇒ Object
30 31 32 |
# File 'lib/chef/provider/http_request.rb', line 30 def load_current_resource @http = Chef::HTTP::Simple.new(new_resource.url) end |