Class: GdsApi::JsonClient
- Inherits:
-
Object
- Object
- GdsApi::JsonClient
- Includes:
- ExceptionHandling
- Defined in:
- lib/gds_api/json_client.rb
Constant Summary collapse
- DEFAULT_REQUEST_HEADERS =
{ 'Accept' => 'application/json', 'Content-Type' => 'application/json', 'User-Agent' => "GDS Api Client v. #{GdsApi::VERSION}" }
- DEFAULT_TIMEOUT_IN_SECONDS =
4- DEFAULT_CACHE_SIZE =
100- DEFAULT_CACHE_TTL =
15 minutes
15 * 60
Instance Attribute Summary collapse
-
#cache ⇒ Object
Returns the value of attribute cache.
-
#logger ⇒ Object
Returns the value of attribute logger.
-
#options ⇒ Object
Returns the value of attribute options.
Class Method Summary collapse
-
.cache(size = DEFAULT_CACHE_SIZE, ttl = DEFAULT_CACHE_TTL) ⇒ Object
Cache TTL will be overridden for a given request/response by the Expires header if it is included in the response.
- .cache=(c) ⇒ Object
Instance Method Summary collapse
- #delete_json!(url, params = nil, additional_headers = {}) ⇒ Object
- #get_json!(url, additional_headers = {}, &create_response) ⇒ Object
- #get_raw(url) ⇒ Object
- #get_raw!(url) ⇒ Object
-
#initialize(options = {}) ⇒ JsonClient
constructor
A new instance of JsonClient.
- #post_json!(url, params, additional_headers = {}) ⇒ Object
- #post_multipart(url, params) ⇒ Object
- #put_json!(url, params, additional_headers = {}) ⇒ Object
Methods included from ExceptionHandling
Constructor Details
#initialize(options = {}) ⇒ JsonClient
Returns a new instance of JsonClient.
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
# File 'lib/gds_api/json_client.rb', line 28 def initialize( = {}) if [:disable_timeout] or [:timeout].to_i < 0 raise "It is no longer possible to disable the timeout." end @logger = [:logger] || GdsApi::Base.logger if [:disable_cache] || ([:cache_size] == 0) @cache = NullCache.new else cache_size = [:cache_size] || DEFAULT_CACHE_SIZE cache_ttl = [:cache_ttl] || DEFAULT_CACHE_TTL @cache = JsonClient.cache(cache_size, cache_ttl) end = end |
Instance Attribute Details
#cache ⇒ Object
Returns the value of attribute cache.
26 27 28 |
# File 'lib/gds_api/json_client.rb', line 26 def cache @cache end |
#logger ⇒ Object
Returns the value of attribute logger.
26 27 28 |
# File 'lib/gds_api/json_client.rb', line 26 def logger @logger end |
#options ⇒ Object
Returns the value of attribute options.
26 27 28 |
# File 'lib/gds_api/json_client.rb', line 26 def end |
Class Method Details
.cache(size = DEFAULT_CACHE_SIZE, ttl = DEFAULT_CACHE_TTL) ⇒ Object
Cache TTL will be overridden for a given request/response by the Expires header if it is included in the response.
LRUCache doesn’t respect a cache size of 0, and instead effectively creates a cache with a size of 1.
18 19 20 |
# File 'lib/gds_api/json_client.rb', line 18 def self.cache(size=DEFAULT_CACHE_SIZE, ttl=DEFAULT_CACHE_TTL) @cache ||= LRUCache.new(max_size: size, ttl: ttl) end |
.cache=(c) ⇒ Object
22 23 24 |
# File 'lib/gds_api/json_client.rb', line 22 def self.cache=(c) @cache = c end |
Instance Method Details
#delete_json!(url, params = nil, additional_headers = {}) ⇒ Object
90 91 92 |
# File 'lib/gds_api/json_client.rb', line 90 def delete_json!(url, params = nil, additional_headers = {}) do_json_request(:delete, url, params, additional_headers) end |
#get_json!(url, additional_headers = {}, &create_response) ⇒ Object
78 79 80 |
# File 'lib/gds_api/json_client.rb', line 78 def get_json!(url, additional_headers = {}, &create_response) do_json_request(:get, url, nil, additional_headers, &create_response) end |
#get_raw(url) ⇒ Object
58 59 60 61 62 |
# File 'lib/gds_api/json_client.rb', line 58 def get_raw(url) ignoring GdsApi::HTTPNotFound do get_raw!(url) end end |
#get_raw!(url) ⇒ Object
54 55 56 |
# File 'lib/gds_api/json_client.rb', line 54 def get_raw!(url) do_raw_request(:get, url) end |
#post_json!(url, params, additional_headers = {}) ⇒ Object
82 83 84 |
# File 'lib/gds_api/json_client.rb', line 82 def post_json!(url, params, additional_headers = {}) do_json_request(:post, url, params, additional_headers) end |
#post_multipart(url, params) ⇒ Object
94 95 96 97 98 99 |
# File 'lib/gds_api/json_client.rb', line 94 def post_multipart(url, params) r = do_raw_request(:post, url, params.merge({ :multipart => true })) Response.new(r) end |
#put_json!(url, params, additional_headers = {}) ⇒ Object
86 87 88 |
# File 'lib/gds_api/json_client.rb', line 86 def put_json!(url, params, additional_headers = {}) do_json_request(:put, url, params, additional_headers) end |