Sha256: 0ed47c1b95d62c713afb05afaea686d22afed1016ed2dc88b9bea1b717d7c9e7
Contents?: true
Size: 1.78 KB
Versions: 8
Compression:
Stored size: 1.78 KB
Contents
module ShopifyAPI module Limits def self.included(klass) klass.send(:extend, ClassMethods) end module ClassMethods # Takes form num_requests_executed/max_requests # Eg: 101/3000 CREDIT_LIMIT_HEADER_PARAM = { :shop => 'http_x_shopify_shop_api_call_limit' } ## # How many more API calls can I make? # @return {Integer} # def credit_left credit_limit(:shop) - credit_used(:shop) end alias_method :available_calls, :credit_left ## # Have I reached my API call limit? # @return {Boolean} # def credit_maxed? credit_left <= 0 end alias_method :maxed?, :credit_maxed? ## # How many total API calls can I make? # NOTE: subtracting 1 from credit_limit because I think ShopifyAPI cuts off at 299 or shop limits. # @param {Symbol} scope [:shop] # @return {Integer} # def credit_limit(scope=:shop) @api_credit_limit ||= {} @api_credit_limit[scope] ||= api_credit_limit_param(scope).pop.to_i - 1 end alias_method :call_limit, :credit_limit ## # How many API calls have I made? # @param {Symbol} scope [:shop] # @return {Integer} # def credit_used(scope=:shop) api_credit_limit_param(scope).shift.to_i end alias_method :call_count, :credit_used ## # @return {HTTPResonse} # def response Shop.current unless ShopifyAPI::Base.connection.response ShopifyAPI::Base.connection.response end private ## # @return {Array} # def api_credit_limit_param(scope) response[CREDIT_LIMIT_HEADER_PARAM[scope]].split('/') end end end end
Version data entries
8 entries across 8 versions & 1 rubygems