class ConstantContact::Services::BaseService
Attributes
access_token[RW]
api_key[RW]
Public Class Methods
build_url(url, params = nil)
click to toggle source
Build a url from the base url and query parameters hash. Query parameters should not be URL encoded because this method will handle that @param [String] url - The base url @param [Hash] params - A hash with query parameters @return [String] - the url with query parameters hash
# File lib/constantcontact/services/base_service.rb, line 18 def build_url(url, params = nil) if params.respond_to? :each params.each do |key, value| # Convert dates to CC date format if value.respond_to? :iso8601 params[key] = value.iso8601 end if key.to_s == 'next' && value.match(/^.*?next=(.*)$/) params[key] = $1 end end else params ||= {} end params['api_key'] = BaseService.api_key url += '?' + Util::Helpers.http_build_query(params) end
get_headers(content_type = 'application/json')
click to toggle source
Return required headers for making an http request with Constant Contact @param [String] content_type - The MIME type of the body of the request, default is ‘application/json’ @return [Hash] - authorization headers
# File lib/constantcontact/services/base_service.rb, line 41 def get_headers(content_type = 'application/json') { :content_type => content_type, :accept => 'application/json', :authorization => "Bearer #{BaseService.access_token}", :user_agent => "AppConnect Ruby SDK v#{ConstantContact::SDK::VERSION} (#{RUBY_DESCRIPTION})", :x_ctct_request_source => "sdk.ruby.#{ConstantContact::SDK::VERSION}" } end
Protected Class Methods
get_id_for(obj)
click to toggle source
returns the id of a ConstantContact
component
# File lib/constantcontact/services/base_service.rb, line 55 def get_id_for(obj) if obj.kind_of? ConstantContact::Components::Component obj.id elsif obj.kind_of? Hash obj["id"] else obj end end