Class: SknUtils::CommandJSONPost

Inherits:
Object
  • Object
show all
Defined in:
lib/skn_utils/job_commands.rb

Overview

#################################################

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.call(options) ⇒ Object

full_url:,username:,userpass:,payload:,headers:



51
52
53
# File 'lib/skn_utils/job_commands.rb', line 51

def self.call(options)  # {full_url:,username:,userpass:,payload:,headers:}
  new(options)
end

Instance Method Details

#json?Boolean

Returns:

  • (Boolean)


55
56
57
# File 'lib/skn_utils/job_commands.rb', line 55

def json?
  true
end

#requestObject



63
64
65
66
67
68
69
# File 'lib/skn_utils/job_commands.rb', line 63

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/json'
  req.body = formatted_data
  req
end

#uriObject



59
60
61
# File 'lib/skn_utils/job_commands.rb', line 59

def uri
  @_uri
end