Class: Contentful::Request

Inherits:
Object
  • Object
show all
Defined in:
lib/contentful/request.rb

Overview

This object represents a request that is to be made. It gets initialized by the client with domain specific logic. The client later uses the Request’s #url and #query methods to execute the HTTP request.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(client, endpoint, query = {}, id = nil) ⇒ Request

Returns a new instance of Request.



8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# File 'lib/contentful/request.rb', line 8

def initialize(client, endpoint, query = {}, id = nil)
  @client = client
  @endpoint = endpoint

  @query = (normalize_query(query) if query && !query.empty?)

  if id
    @type = :single
    # Given the deprecation of `URI::escape` and `URI::encode`
    # it is needed to replace it with `URI::encode_www_form_component`.
    # This method, does replace spaces with `+` instead of `%20`.
    # Therefore, to keep backwards compatibility, we're replacing the resulting `+`
    # back with `%20`.
    @id = URI.encode_www_form_component(id).gsub('+', '%20')
  else
    @type = :multi
    @id = nil
  end
end

Instance Attribute Details

#clientObject (readonly)

Returns the value of attribute client.



6
7
8
# File 'lib/contentful/request.rb', line 6

def client
  @client
end

#endpointObject (readonly)

Returns the value of attribute endpoint.



6
7
8
# File 'lib/contentful/request.rb', line 6

def endpoint
  @endpoint
end

#idObject (readonly)

Returns the value of attribute id.



6
7
8
# File 'lib/contentful/request.rb', line 6

def id
  @id
end

#queryObject (readonly)

Returns the value of attribute query.



6
7
8
# File 'lib/contentful/request.rb', line 6

def query
  @query
end

#typeObject (readonly)

Returns the value of attribute type.



6
7
8
# File 'lib/contentful/request.rb', line 6

def type
  @type
end

Instance Method Details

#absolute?Boolean

Returns true if endpoint is an absolute url

Returns:

  • (Boolean)


39
40
41
# File 'lib/contentful/request.rb', line 39

def absolute?
  @endpoint.start_with?('http')
end

#copyObject

Returns a new Request object with the same data



44
45
46
# File 'lib/contentful/request.rb', line 44

def copy
  Marshal.load(Marshal.dump(self))
end

#getObject

Delegates the actual HTTP work to the client



34
35
36
# File 'lib/contentful/request.rb', line 34

def get
  client.get(self)
end

#urlObject

Returns the final URL, relative to a contentful space



29
30
31
# File 'lib/contentful/request.rb', line 29

def url
  "#{@endpoint}#{@type == :single ? "/#{id}" : ''}"
end