Module: HTTParty::Icebox
- Included in:
- TMDBParty::Base
- Defined in:
- lib/tmdb_party/httparty_icebox.rb
Defined Under Namespace
Modules: ClassMethods, Store Classes: Cache
Class Method Summary collapse
-
.included(receiver) ⇒ Object
When included, extend class with
cache
method and redefineget
method to use cache.
Class Method Details
.included(receiver) ⇒ Object
When included, extend class with cache
method and redefine get
method to use cache
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 |
# File 'lib/tmdb_party/httparty_icebox.rb', line 70 def self.included(receiver) #:nodoc: receiver.extend ClassMethods receiver.class_eval do # Get reponse from network # TODO: Why alias :new :old is not working here? Returns NoMethodError # def self.get_without_caching(path, ={}) perform_request Net::HTTP::Get, path, end # Get response from cache, if available # def self.get_with_caching(path, ={}) key = path.clone key << [:query].to_s if defined? [:query] if cache.exists?(key) and not cache.stale?(key) Cache.logger.debug "CACHE -- GET #{path}#{[:query]}" return cache.get(key) else Cache.logger.debug "/!\\ NETWORK -- GET #{path}#{[:query]}" response = get_without_caching(path, ) cache.set(key, response) if response.code == 200 return response end end # Redefine original HTTParty +get+ method to use cache # def self.get(path, ={}) self.get_with_caching(path, ) end end end |