Class: FinAppsCore::REST::Resources

Inherits:
Object
  • Object
show all
Includes:
Utils::Loggeable, Utils::Validatable
Defined in:
lib/finapps_core/rest/resources.rb

Overview

:nodoc:

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Utils::Validatable

#nil_or_empty?, #not_blank

Methods included from Utils::Loggeable

#logger

Constructor Details

#initialize(client) ⇒ FinAppsCore::REST::Resources

Parameters:

  • client (FinAppsCore::REST::Client)


17
18
19
20
21
# File 'lib/finapps_core/rest/resources.rb', line 17

def initialize(client)
  not_blank(client, :client)
  @client = client
  @logger = client.logger if client.respond_to?(:logger)
end

Instance Attribute Details

#clientObject (readonly)

Returns the value of attribute client.



13
14
15
# File 'lib/finapps_core/rest/resources.rb', line 13

def client
  @client
end

Instance Method Details

#create(params = {}, path = nil) ⇒ Object



32
33
34
# File 'lib/finapps_core/rest/resources.rb', line 32

def create(params = {}, path = nil)
  send_request path, :post, params
end

#destroy(id = nil, path = nil) ⇒ Object



40
41
42
# File 'lib/finapps_core/rest/resources.rb', line 40

def destroy(id = nil, path = nil)
  send_request_for_id path, :delete, id
end

#list(path = nil) ⇒ Object



23
24
25
26
# File 'lib/finapps_core/rest/resources.rb', line 23

def list(path = nil)
  path = end_point.to_s if path.nil?
  send_request path, :get
end

#show(id = nil, path = nil) ⇒ Object



28
29
30
# File 'lib/finapps_core/rest/resources.rb', line 28

def show(id = nil, path = nil)
  send_request_for_id path, :get, id
end

#update(params = {}, path = nil) ⇒ Object



36
37
38
# File 'lib/finapps_core/rest/resources.rb', line 36

def update(params = {}, path = nil)
  send_request path, :put, params
end