Class: ProxES::Request::Search

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

Constant Summary

Constants inherited from ProxES::Request

ID_ENDPOINTS, WRITE_METHODS

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from ProxES::Request

#detail, #duration, from_env, #html?, #initialize, path_endpoint, #user, #user_id

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]) unless path_parts[0] == endpoint
  @type  ||= check_part(path_parts[1]) unless path_parts[1] == endpoint
  @id    ||= check_part(path_parts[2]) unless path_parts[2] == endpoint
end