class NovaPoshtaApi::Base

Public Class Methods

class_attr_accessor(*names) click to toggle source
# File lib/nova_poshta_api/base.rb, line 3
def self.class_attr_accessor(*names)
  names.each do |name|
    define_singleton_method("#{name.to_s}=".to_sym){ |attr| class_variable_set("@@#{name}", attr) }
    define_singleton_method(name.to_sym){ class_variable_get("@@#{name}") }
  end
end
make_body(model, meth, options={}) click to toggle source
# File lib/nova_poshta_api/base.rb, line 21
def make_body(model, meth, options={})
  {
    'modelName'         => model,
    'calledMethod'      => meth,
    'methodProperties'  => options,
    'apiKey'            => api_key
  }
end
post_request(body) click to toggle source
# File lib/nova_poshta_api/base.rb, line 13
def post_request(body)
  response = perform_request body
  format_response response
rescue => e
  puts e
  {}
end

Private Class Methods

format_request!(request, body) click to toggle source
# File lib/nova_poshta_api/base.rb, line 32
def format_request!(request, body)
  if format.to_sym == :json
    request.content_type = 'application/json'
    request.body         = body.to_json
  elsif format.to_sym == :xml
    request.content_type = 'text/xml'
    request.body         = body.to_xml.gsub(/\n/, '').gsub(/>\s+</, '><')
  else
    raise 'Bad format'
  end
end
format_response(response) click to toggle source
# File lib/nova_poshta_api/base.rb, line 44
def format_response(response)
  if format.to_sym == :json
    JSON.parse(response.body)
  elsif format.to_sym == :xml
    Nokogiri::XML(response.body)
  else
    raise 'Bad format'
  end
end
perform_request(body) click to toggle source
# File lib/nova_poshta_api/base.rb, line 54
def perform_request body
  uri      = URI url.gsub(/\{format\}/, "#{format}")
  request  = Net::HTTP::Post.new uri
  format_request! request, body
  Net::HTTP.start(uri.host, uri.port, use_ssl: uri.scheme == 'https') do |http|
    http.request request
  end
rescue => e
  puts e
end