Class: Seatsio::HttpClient
- Inherits:
-
Object
- Object
- Seatsio::HttpClient
- Defined in:
- lib/seatsio/httpClient.rb
Instance Method Summary collapse
- #delete(endpoint) ⇒ Object
- #execute(*args) ⇒ Object
- #get(endpoint, params = {}) ⇒ Object
- #get_raw(endpoint, params = {}) ⇒ Object
-
#initialize(secret_key, workspace_key, base_url) ⇒ HttpClient
constructor
A new instance of HttpClient.
- #post(endpoint, payload = {}) ⇒ Object
Constructor Details
#initialize(secret_key, workspace_key, base_url) ⇒ HttpClient
Returns a new instance of HttpClient.
9 10 11 12 13 |
# File 'lib/seatsio/httpClient.rb', line 9 def initialize(secret_key, workspace_key, base_url) @secret_key = Base64.encode64(secret_key) @workspace_key = workspace_key @base_url = base_url end |
Instance Method Details
#delete(endpoint) ⇒ Object
71 72 73 |
# File 'lib/seatsio/httpClient.rb', line 71 def delete(endpoint) execute(:delete, endpoint, {}) end |
#execute(*args) ⇒ Object
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
# File 'lib/seatsio/httpClient.rb', line 15 def execute(*args) begin headers = {:Authorization => "Basic #{@secret_key}"} unless @workspace_key.nil? headers[:'X-Workspace-Key'] = @workspace_key end if args[2].include? :params headers[:params] = args[2][:params] end #if args[2] != nil || args[0] == :post # headers[:params] = args[2] #end url = "#{@base_url}/#{args[1]}" = {method: args[0], url: url, headers: headers} if args[0] == :post args[2].delete :params [:payload] = args[2].to_json end response = RestClient::Request.execute() # If RAW if args[3] return response end JSON.parse(response) unless response.empty? rescue RestClient::NotFound => e raise Exception::NotFoundException.new(e.response) rescue RestClient::ExceptionWithResponse => e if e.response.include? "there is no page after" || e.response.empty? raise Exception::NoMorePagesException end raise Exception::SeatsioException.new(e.response) rescue RestClient::Exceptions::Timeout raise Exception::SeatsioException.new("Timeout ERROR") rescue SocketError raise Exception::SeatsioException.new("Failed to connect to backend") end end |
#get(endpoint, params = {}) ⇒ Object
62 63 64 65 |
# File 'lib/seatsio/httpClient.rb', line 62 def get(endpoint, params = {}) payload = {:params => params} execute(:get, endpoint, payload) end |
#get_raw(endpoint, params = {}) ⇒ Object
58 59 60 |
# File 'lib/seatsio/httpClient.rb', line 58 def get_raw(endpoint, params = {}) execute(:get, endpoint, params, true) end |
#post(endpoint, payload = {}) ⇒ Object
67 68 69 |
# File 'lib/seatsio/httpClient.rb', line 67 def post(endpoint, payload = {}) execute(:post, endpoint, payload) end |