Class: SknUtils::CommandFORMPost
- Defined in:
- lib/skn_utils/job_commands.rb
Overview
#################################################
Class Method Summary collapse
-
.call(options) ⇒ Object
full_url:,username:,userpass:,payload:,headers:.
Instance Method Summary collapse
Class Method Details
.call(options) ⇒ Object
full_url:,username:,userpass:,payload:,headers:
94 95 96 |
# File 'lib/skn_utils/job_commands.rb', line 94 def self.call() # {full_url:,username:,userpass:,payload:,headers:} new() end |
Instance Method Details
#json? ⇒ Boolean
98 99 100 |
# File 'lib/skn_utils/job_commands.rb', line 98 def json? false end |
#request ⇒ Object
106 107 108 109 110 111 112 |
# File 'lib/skn_utils/job_commands.rb', line 106 def request req = @_headers.nil? ? Net::HTTP::Post.new(uri.path) : Net::HTTP::Post.new(uri.path, @_headers) # Generate HTTPRequest object req.basic_auth(@_username, @_userpass) if credentials? req.content_type = 'application/x-www-form-urlencoded' req.set_form_data(formatted_data) req end |
#uri ⇒ Object
102 103 104 |
# File 'lib/skn_utils/job_commands.rb', line 102 def uri @_uri end |