# encoding: UTF-8
module RailsConnector
# Provides an enumerator for iterating over obj search results and retrieving obj instances.
# This is done using the {http://ruby-doc.org/core-1.8.7/Enumerable.html Enumerable
mixin},
# which provides methods such as map
, select
or take
.
#
# This enumerator is lazy. If for example you are looking for Objs with the ObjClass "Publication",
# and there are 93 objs in total, than enum.take(10)
will fetch the first 10 objs only,
# ignoring the other 83 objs.
# This also means, that iterating multiple times over this enumerator causes the search results and objs to be fetched again.
# If you want to get all objs at once, use enum.to_a
.
#
# To start searching use one of the {Obj} methods that returns an {ObjSearchEnumerator}. The preferred way is to start with {Obj.where}.
#
# == Currently available fields and their values
#
# [+:*+] Searches all fields.
# This is only possible with the operators +contais+ or +starts_with+.
# [+:id+] Id of an {Obj}. This is a +string+ field.
# [+:_path+] Path of an {Obj}. This is a +string+ field.
# [+:_name+] Name of an {Obj}. This is a +string+ field.
# [+:title+] Title of an {Obj}. This is a +string+ field.
# [+:body+] Body of an {Obj}. This is an +html+ field. Thus, only the +contains+ and
# +contains_prefix+ operators can be applied to this field.
# [+:_obj_class+] ObjClass of an {Obj}. This is a +string+ field.
# [+:_permalink+] Permalink of an {Obj}. This is a +string+ field.
# [+:_valid_from+] The valid-from date of an {Obj}.
# [+:_valid_until+] The valid-until date of an {Obj}.
# [+:_last_changed+] Date of last change of an {Obj}.
# [every :custom_attribute
] Custom attribute of an {Obj}. Note that
# depending on the attribute type (e.g. an
# +html+ field), some operators can not be applied.
#
# All values are stored as strings.
#
# Date values are stored in the format YYYYMMDDHHMMSS in UTC. For example, 2000-01-01 00:00:00 UTC is stored as "20000101000000
".
# This is relevant for string comparisons using the +is_less_than+ and +is_greater_than+ operators.
#
# == Currently available operators
#
# For +:contains+ and +:contains_prefix+, the examples are based on the following field value:
# "Behind every cloud is another cloud."
#
# [+:contains+] Searches for one or more whole words. Each word needs to be present.
#
# Example subquery values:
#
# ✔ "behind cloud" (case insensitive)
#
# ✘ "behi clo" (not whole words)
#
# ✘ "behind everything" (second word does not match)
# [+:contains_prefix+] Searches for one prefix. A whole word is also a prefix.
#
# Example subquery values:
#
# ✔ "Clou" (case insensitive)
#
# ✔ "Every" (case insensitive)
#
# For +:equals+ and +:starts_with+, the examples are based on the following field value:
# "Some content."
#
# [+:equals+] The +field+ value needs to be identical to the +value+ of this subquery.
#
# Only applicable to +string+, +enum+, +multienum+ and +date+ fields.
#
# Example subquery values:
#
# ✔ "Some content." (exact value)
#
# ✘ "Some" (not exact value)
#
# [+:starts_with+] The +field+ value needs to start exactly with the +value+ of this subquery.
#
# Only applicable to +string+, +enum+, +multienum+ and +date+ fields.
#
# Example subquery values:
#
# ✔ "Som" (prefix of the value)
#
# ✘ "som" (incorrect case of prefix)
#
# ✘ "content" (not prefix of the whole value)
#
# For +:is_less_than+ and +:is_greater_than+, the examples are based on the following field value (date string):
# "20000101000000"
#
# [+:is_less_than+] Matches if the field string value is less than the subquery string value.
#
# Only applicable to +string+, +enum+, +multienum+ and +date+ fields.
#
# Example subquery values:
#
# ✔ "19991231235959" (is less than "20000101000000")
#
# ✘ "20000101000000" (equal, not less than)
#
# [+:is_greater_than+] Matches if the field string value is greater than the subquery string value.
#
# Only applicable to +string+, +enum+, +multienum+ and +date+ fields.
#
# Example subquery values:
#
# ✔ "20000101000001" (is greater than "20000101000000")
#
# ✘ "20000101000000" (equal, not greater than)
#
# @api public
class ObjSearchEnumerator
include Enumerable
attr_reader :query
attr_reader :options
attr_reader :initial_offset
# For all possible query
's and options
have a look at the cms api documentation about objs/search.
# There is one exception: To adjust how many search results should be fetch with one chunk, use the option :batch_size
. The default is 10
. The :size
option will be silently ignored.
#
# @example All objs, which are Publications
# enum = ObjSearchEnumerator([{:field => '_obj_class', :operator => 'equal', :value => 'Publication'}])
# enum.each { |obj| puts obj.path }
#
# @param [Array] query
# @param [Hash] options
# @param [Integer] initial_offset
def initialize(query, options = {}, initial_offset = 0)
@query = query
@options = options.symbolize_keys
@initial_offset = initial_offset
end
# @group Chainable methods
# Adds this additional AND subquery to this {ObjSearchEnumerator}.
#
# Compares the +field(s)+ with the +value(s)+ using the +operator+ of this subquery.
# All objs to which this criterion applies remain in the result set.
#
# @param [Symbol, String, Array] field Name(s) of the field(s) to be searched.
# For arrays, the subquery matches, if one or more of these fields meet this criterion.
# @param [Symbol, String] operator See "Currently available operators" at the top.
# @param [String, Array] value The value(s) with which the field value(s) are compared using the +operator+ of this subquery.
# For arrays, the subquery matches, if the condition is met for one or more of the array elements.
# @param [Hash] boost A hash where the keys are field names and their values are boosting factors.
# Boosting factors must be in the range from 1 to 10.
# Boosting can only be applied to subqueries in which the +contains+ or +contains_prefix+ operator is used.
# @return [ObjSearchEnumerator]
# @api public
def and(field, operator, value, boost = nil)
real_operator = operator_mapping(operator)
subquery = {:field => field, :operator => real_operator, :value => convert_value(value)}
if boost.present?
valid_boost_operators = [:contains, :contains_prefix]
if valid_boost_operators.include?(operator.to_sym)
subquery[:boost] = boost
else
raise "Boost is not allowed with operator '#{operator}'. " +
"Valid operators are: #{valid_boost_operators.join(', ')}"
end
end
@query = (query || []) + [subquery]
self
end
# Adds this additional negated AND subquery to this {ObjSearchEnumerator}.
#
# Compares the +field(s)+ with the +value(s)+ using the negated +operator+ of this subquery.
# All objs to which this criterion applies are removed from the result set.
#
# @param [Symbol, String, Array] field Name(s) of the field(s) to be searched.
# For arrays, the subquery matches, if one or more of these fields meet this criterion.
# @param [Symbol, String] operator Only applicable to subqueries in which the +equals+,
# +starts_with+, +is_greater_than+ and +is_less_than+ operator is used
# (See "Currently available operators" at the top).
# @param [String, Array] value The value(s) with which the field value(s) are compared using the +operator+ of this subquery.
# For arrays, the subquery matches, if the condition is met for one or more of the array elements.
# @return [ObjSearchEnumerator]
# @api public
def and_not(field, operator, value)
real_operator = operator_mapping(operator)
valid_negated_operators = [:equals, :starts_with, :is_greater_than, :is_less_than]
unless valid_negated_operators.include?(operator.to_sym)
raise "Negating operator '#{operator}' is not valid."
end
subquery = {:field => field, :operator => real_operator, :value => convert_value(value),
:negate => true}
@query = (query || []) + [subquery]
self
end
# Orders the results by +field_name+.
# @param [Symbol, String] field_name This parameter determines by which field the hits are sorted (e.g. +:_path+).
# @return [ObjSearchEnumerator]
# @api public
def order(field_name)
@options[:sort_by] = field_name.to_sym
self
end
# Reverses the order of the results.
# @return [ObjSearchEnumerator]
# @api public
def reverse_order
@options[:sort_order] = case options[:sort_order]
when :asc
:desc
when :desc
:asc
else
options[:sort_by].present? ? :desc : :asc
end
self
end
# Sets the internal batch_size to +size+.
# The default is +10+, the maximum is +100+.
# @param [Integer] size A value in the range from +1+ to +100+.
# @return [ObjSearchEnumerator]
# @api public
def batch_size(size)
@options[:size] = size
self
end
# Omits the first +amount+ number of {Obj}s from the results. The default is +0+.
# @param [Integer] amount
# @return [ObjSearchEnumerator]
# @api public
def offset(amount)
@initial_offset += amount
self
end
# @!endgroup
# Iterates over the search result.
# @yield [Obj]
# @return [void]
# @api public
def each
offset = @initial_offset
current_batch, total = fetch_next_batch(offset)
loop do
if current_batch.size == 0
if offset < total
current_batch, total = fetch_next_batch(offset)
else
raise StopIteration
end
end
offset += 1
hit = current_batch.shift
yield Obj.find(hit['id'])
end
end
# The total number of hits.
# @return [Integer]
# @api public
def size
@size ||= CmsRestApi.get(resource_path, {:query => query, :size => 0})['total'].to_i
end
# @api public
alias_method :length, :size
# @api public
alias_method :count, :size
private
def convert_value(value)
if value.kind_of?(Array)
value.map{ |v| convert_single_value(v) }
else
convert_single_value(value)
end
end
def convert_single_value(value)
if value.kind_of?(Time)
value.to_iso
else
value
end
end
def operator_mapping(operator)
case operator.to_sym
when :contains
:search
when :contains_prefix
:prefix_search
when :equals
:equal
when :starts_with
:prefix
when :is_greater_than
:greater_than
when :is_less_than
:less_than
else
raise "Operator '#{operator}'' is not valid!"
end
end
def fetch_next_batch(offset)
request_result = CmsRestApi.get(resource_path, search_dsl(offset))
[request_result['results'], request_result['total'].to_i]
end
def resource_path
"revisions/#{Workspace.current.revision_id}/objs/search"
end
def search_dsl(offset)
options.merge({
:offset => offset,
:query => query,
})
end
end
end