Class: ProxES::Request::Search

Inherits:
ProxES::Request show all
Defined in:
lib/proxes/request/search.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from ProxES::Request

from_env, #initialize

Constructor Details

This class inherits a constructor from ProxES::Request

Instance Attribute Details

#indexObject

Returns the value of attribute index.



9
10
11
# File 'lib/proxes/request/search.rb', line 9

def index
  @index
end

#typeObject (readonly)

Returns the value of attribute type.



9
10
11
# File 'lib/proxes/request/search.rb', line 9

def type
  @type
end

Instance Method Details

#endpointObject



18
19
20
# File 'lib/proxes/request/search.rb', line 18

def endpoint
  '_search'
end

#idObject



28
29
30
# File 'lib/proxes/request/search.rb', line 28

def id
  @id == [] ? nil : @id
end

#indices?Boolean

Returns:

  • (Boolean)


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

def indices?
  type != ['scroll']
end

#parseObject



22
23
24
25
26
# File 'lib/proxes/request/search.rb', line 22

def parse
  @index ||= check_part(path_parts[0])
  @type  ||= check_part(path_parts[1])
  @id    ||= check_part(path_parts[2])
end