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
# File 'lib/contentful/request.rb', line 8

def initialize(client, endpoint, query = {}, id = nil)
  @client = client
  @endpoint = endpoint
  @absolute = true if @endpoint.start_with?('http')

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

  if id
    @type = :single
    @id = URI.escape(id)
  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

#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)


37
38
39
# File 'lib/contentful/request.rb', line 37

def absolute?
  !! @absolute
end

#copyObject

Returns a new Request object with the same data



42
43
44
# File 'lib/contentful/request.rb', line 42

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

#getObject

Delegates the actual HTTP work to the client



32
33
34
# File 'lib/contentful/request.rb', line 32

def get
  client.get(self)
end

#urlObject

Returns the final URL, relative to a contentful space



27
28
29
# File 'lib/contentful/request.rb', line 27

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