module Elasticsearch module API module Actions # Return a specified document's `_source`. # # The response contains just the original document, as passed to Elasticsearch during indexing. # # @example Get a document `_source` # # client.get_source index: 'myindex', type: 'mytype', id: '1' # # @option arguments [String] :id The document ID (*Required*) # @option arguments [Number,List] :ignore The list of HTTP errors to ignore; only `404` supported at the moment # @option arguments [String] :index The name of the index (*Required*) # @option arguments [String] :type The type of the document; use `_all` to fetch the first document # matching the ID across all types) (*Required*) # @option arguments [List] :fields A comma-separated list of fields to return in the response # @option arguments [String] :parent The ID of the parent document # @option arguments [String] :preference Specify the node or shard the operation should be performed on # (default: random) # @option arguments [Boolean] :realtime Specify whether to perform the operation in realtime or search mode # @option arguments [Boolean] :refresh Refresh the shard containing the document before performing the operation # @option arguments [String] :routing Specific routing value # # @since 0.90.1 # def get_source(arguments={}) raise ArgumentError, "Required argument 'index' missing" unless arguments[:index] raise ArgumentError, "Required argument 'id' missing" unless arguments[:id] arguments[:type] ||= '_all' method = 'GET' path = Utils.__pathify( arguments[:index], arguments[:type], arguments[:id], '_source' ) params = arguments.select do |k,v| [ :fields, :parent, :preference, :realtime, :refresh, :routing ].include?(k) end # Normalize Ruby 1.8 and Ruby 1.9 Hash#select behaviour params = Hash[params] unless params.is_a?(Hash) body = nil params[:fields] = Utils.__listify(params[:fields]) if params[:fields] perform_request(method, path, params, body).body rescue Exception => e # NOTE: Use exception name, not full class in Elasticsearch::Client to allow client plugability if arguments[:ignore] == 404 && e.class.to_s =~ /NotFound/; false else raise(e) end end end end end