Sha256: 5b9267575056b5de25b0e428a911d769b33e47c7296db72fd62b1530e25715b4
Contents?: true
Size: 1.39 KB
Versions: 1
Compression:
Stored size: 1.39 KB
Contents
module AffiliateWindow module Clients class ShopWindow include AffiliateWindow::Helpers::Client include AffiliateWindow::Helpers::Account include AffiliateWindow::Helpers::Csv attr :merchant_ids # This URL template only works for a selection of merchants by ID. # It ignores the compression setting in account. Valid options are zip or gzip. We use zip. URL_TEMPLATE = 'http://datafeed.api.productserve.com/datafeed/download/apikey/#{api_key}/mid/#{merchant_id_list}/columns/#{column_list}/format/#{format.downcase}/compression/zip/' DEFAULT_COLUMNS = %w{ merchant_id merchant_name aw_product_id merchant_product_id product_name description category_id category_name merchant_category aw_deep_link aw_image_url search_price delivery_cost merchant_deep_link merchant_image_url mpn rrp_price stock_quantity brand_id ean merchant_thumb_url brand_name in_stock model_number specifications upc } def initialize(options = {}) parse_options(options) end def url @url ||= eval(%Q|"#{URL_TEMPLATE}"|) end def columns @columns || DEFAULT_COLUMNS end private def column_list columns.join(',') end def merchant_id_list merchant_ids.join(',') end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
affiliate-window-0.2.1.pre1 | lib/affiliate-window/clients/shop_window.rb |