Class: NetDNARWS::NetDNA
- Inherits:
-
Object
- Object
- NetDNARWS::NetDNA
- Defined in:
- lib/netdnarws.rb
Instance Attribute Summary collapse
-
#client ⇒ Object
Returns the value of attribute client.
Instance Method Summary collapse
- #_connection_type ⇒ Object
- #_encode_params(values) ⇒ Object
- #_get_url(uri, attributes) ⇒ Object
- #_response_as_json(method, uri, options = {}, *attributes) ⇒ Object
- #delete(uri, data = {}, options = {}) ⇒ Object
- #get(uri, data = {}, options = {}) ⇒ Object
-
#initialize(company_alias, key, secret, server = 'rws.netdna.com', secure_connection = true, *options) ⇒ NetDNA
constructor
A new instance of NetDNA.
- #post(uri, data = {}, options = {}) ⇒ Object
- #purge(zone_id, file_or_files = nil, options = {}) ⇒ Object
- #put(uri, data = {}, options = {}) ⇒ Object
Constructor Details
#initialize(company_alias, key, secret, server = 'rws.netdna.com', secure_connection = true, *options) ⇒ NetDNA
Returns a new instance of NetDNA.
9 10 11 12 13 14 15 16 17 18 19 |
# File 'lib/netdnarws.rb', line 9 def initialize company_alias, key, secret, server='rws.netdna.com', secure_connection=true, * @company_alias = company_alias @server = server @secure_connection = secure_connection @request_signer = Signet::OAuth1::Client.new( :client_credential_key => key, :client_credential_secret => secret, :two_legged => true ) end |
Instance Attribute Details
#client ⇒ Object
Returns the value of attribute client.
8 9 10 |
# File 'lib/netdnarws.rb', line 8 def client @client end |
Instance Method Details
#_connection_type ⇒ Object
21 22 23 24 |
# File 'lib/netdnarws.rb', line 21 def _connection_type return "http" unless @secure_connection "https" end |
#_encode_params(values) ⇒ Object
26 27 28 29 30 |
# File 'lib/netdnarws.rb', line 26 def _encode_params values uri = Addressable::URI.new uri.query_values = values uri.query end |
#_get_url(uri, attributes) ⇒ Object
32 33 34 35 36 37 38 39 |
# File 'lib/netdnarws.rb', line 32 def _get_url uri, attributes url = "#{_connection_type}://#{@server}/#{@company_alias}#{uri}" if not attributes.empty? url += "?#{_encode_params(attributes[0])}" end url end |
#_response_as_json(method, uri, options = {}, *attributes) ⇒ Object
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 |
# File 'lib/netdnarws.rb', line 41 def _response_as_json method, uri, ={}, *attributes if .delete(:debug) puts "Making #{method.upcase} request to #{_get_url uri}" end = { :uri => _get_url(uri, attributes), :method => method } [:body] = _encode_params(attributes[0]) if [:body] request = @request_signer.generate_authenticated_request() request.headers["User-Agent"] = "Ruby NetDNA API Client" begin = {} [:url] = _get_url(uri, attributes) [:headers] = request.headers if not [:body] response = CurbFu.send method, else response = CurbFu.send method, , request.body end return response if [:debug_request] response_json = JSON.load(response.body) return response_json if [:debug_json] if not (response.success? or response.redirect?) = response_json['error']['message'] raise Exception.new("#{response.status}: #{error_message}") end rescue TypeError raise Exception.new( "#{response.status}: No information supplied by the server" ) end response_json end |
#delete(uri, data = {}, options = {}) ⇒ Object
100 101 102 103 |
# File 'lib/netdnarws.rb', line 100 def delete uri, data={}, ={} [:body] = false self._response_as_json 'delete', uri, , data end |
#get(uri, data = {}, options = {}) ⇒ Object
85 86 87 88 |
# File 'lib/netdnarws.rb', line 85 def get uri, data={}, ={} [:body] = false self._response_as_json 'get', uri, , data end |
#post(uri, data = {}, options = {}) ⇒ Object
90 91 92 93 |
# File 'lib/netdnarws.rb', line 90 def post uri, data={}, ={} [:body] = true self._response_as_json 'post', uri, , data end |
#purge(zone_id, file_or_files = nil, options = {}) ⇒ Object
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 |
# File 'lib/netdnarws.rb', line 105 def purge zone_id, file_or_files=nil, ={} if file_or_files.respond_to? :each [:debug_json] = true if [:debug_json].nil? responses = Hash.new file_or_files.each { |e| responses[e] = self.delete( "/zones/pull.json/#{zone_id}/cache", {'file' => e}, ) } return responses end unless file_or_files.nil? return self.delete( "/zones/pull.json/#{zone_id}/cache", {'file' => file_or_files}, ) end self.delete("/zones/pull.json/#{zone_id}/cache", {}, ) end |
#put(uri, data = {}, options = {}) ⇒ Object
95 96 97 98 |
# File 'lib/netdnarws.rb', line 95 def put uri, data={}, ={} [:body] = true self._response_as_json 'put', uri, , data end |