1 Commits

Author SHA1 Message Date
Dan Milne
70cdeef9ac Switch to using strings, rather than symbols for serach parameters 2024-02-05 23:16:37 +11:00
3 changed files with 46 additions and 40 deletions

View File

@@ -9,7 +9,7 @@ module Paapi
class Error < StandardError; end
class NotImplemented < StandardError; end
SEARCH_PARAMS = %i[Keywords Actor Artist Author Brand Title].freeze
SEARCH_PARAMS = %w[Keywords Actor Artist Author Brand Title].freeze
DEFAULT_PARTNER_TYPE = "Associates"
DEFAULT_MARKET = :us
DEFAULT_CONDITION = "Any"

View File

@@ -1,12 +1,13 @@
require 'net/http/persistent'
require 'aws-sigv4'
require "net/http/persistent"
require "aws-sigv4"
module Paapi
class Client
attr_accessor :partner_tag, :marketplace, :resources, :condition
attr_reader :partner_type, :access_key, :secret_key, :market, :http
def initialize(access_key: Paapi.access_key,
def initialize(
access_key: Paapi.access_key,
secret_key: Paapi.secret_key,
partner_tag: Paapi.partner_tag,
market: Paapi.market || DEFAULT_MARKET,
@@ -14,7 +15,7 @@ module Paapi
resources: Paapi.resources || DEFAULT_RESOURCES,
partner_type: DEFAULT_PARTNER_TYPE
)
raise ArgumentError unless MARKETPLACES.keys.include?(market.to_sym)
raise ArgumentError unless MARKETPLACES.key?(market.to_sym)
@access_key = access_key
@secret_key = secret_key
@@ -24,7 +25,11 @@ module Paapi
self.market = market
@partner_tag = partner_tag if !partner_tag.nil?
@http = Net::HTTP::Persistent.new name: 'paapi'
@http = Net::HTTP::Persistent.new(name: "paapi").tap do |c|
c.open_timeout = 2
c.read_timeout = 5
c.write_timeout = 5
end
end
def market=(a_market)
@@ -36,7 +41,7 @@ module Paapi
end
def get_items(item_ids:, **options)
payload = { PartnerTag: partner_tag, PartnerType: 'Associates', ItemIds: Array(item_ids), Resources: @resources }.merge(options)
payload = {PartnerTag: partner_tag, PartnerType: "Associates", ItemIds: Array(item_ids), Resources: @resources}.merge(options)
request(op: :get_items, payload: payload)
end
@@ -47,11 +52,12 @@ module Paapi
# TODO: Currently we assume Keywords, but we need one of the following: [Keywords Actor Artist Author Brand Title ]
def search_items(**options)
options.transform_keys!(&:to_s)
raise ArgumentError.new("Missing keywords") unless (options.keys & SEARCH_PARAMS).length.positive?
search_index = options.dig(:SearchIndex) ||'All'
search_index = options.dig(:SearchIndex) || "All"
payload = { PartnerTag: partner_tag, PartnerType: 'Associates', Resources: @resources, ItemCount: 10, ItemPage: 1, SearchIndex: search_index }.merge(options)
payload = {"PartnerTag" => partner_tag, "PartnerType" => "Associates", "Resources" => @resources, "ItemCount" => 10, "ItemPage" => 1, "SearchIndex" => search_index}.merge(options)
request(op: :search_items, payload: payload)
end
@@ -64,20 +70,20 @@ module Paapi
private
def request(op:, payload:)
raise ArguemntError unless Paapi::OPERATIONS.keys.include?(op)
raise ArguemntError unless Paapi::OPERATIONS.key?(op)
operation = OPERATIONS[op]
headers = {
'X-Amz-Target' => "com.amazon.paapi5.v1.ProductAdvertisingAPIv1.#{operation.target_name}",
'Content-Encoding' => 'amz-1.0',
"X-Amz-Target" => "com.amazon.paapi5.v1.ProductAdvertisingAPIv1.#{operation.target_name}",
"Content-Encoding" => "amz-1.0"
}
default_payload = {
'Condition' => condition,
'PartnerTag' => partner_tag,
'PartnerType' => partner_type,
'Marketplace' => marketplace.site
"Condition" => condition,
"PartnerTag" => partner_tag,
"PartnerType" => partner_type,
"Marketplace" => marketplace.site
}
payload = default_payload.merge(payload)
@@ -95,11 +101,11 @@ module Paapi
signature = signer.sign_request(http_method: operation.http_method, url: endpoint, headers: headers, body: payload.to_json)
headers['Host'] = marketplace.host
headers['X-Amz-Date'] = signature.headers['x-amz-date']
headers['X-Amz-Content-Sha256']= signature.headers['x-amz-content-sha256']
headers['Authorization'] = signature.headers['authorization']
headers['Content-Type'] = 'application/json; charset=utf-8'
headers["Host"] = marketplace.host
headers["X-Amz-Date"] = signature.headers["x-amz-date"]
headers["X-Amz-Content-Sha256"] = signature.headers["x-amz-content-sha256"]
headers["Authorization"] = signature.headers["authorization"]
headers["Content-Type"] = "application/json; charset=utf-8"
Response.new(post(url: endpoint, body: payload, headers: headers))
end
@@ -108,7 +114,7 @@ module Paapi
uri = URI.parse(url)
post_request = Net::HTTP::Post.new(uri.path)
post_request.content_type = 'application/json; charset=UTF-8'
post_request.content_type = "application/json; charset=UTF-8"
headers.each { |k, v| post_request[k] = v }
post_request.body = body.to_json

View File

@@ -1,3 +1,3 @@
module Paapi
VERSION = '0.1.9'
VERSION = '0.1.10'
end