summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Hain <shain@getchef.com>2014-07-01 14:01:26 -0700
committerScott Hain <shain@getchef.com>2014-07-01 14:01:26 -0700
commit9bee980f0d34a40dba803ce135d61173c763395a (patch)
treed08bcd380106695b75c8fea58be9b3a246bb8342
parent6b1a93e5cce3d327ca7ae899be0997a7aed26fd1 (diff)
downloadchef-9bee980f0d34a40dba803ce135d61173c763395a.tar.gz
Last round of life improvement
-rw-r--r--lib/chef/search/query.rb19
1 files changed, 9 insertions, 10 deletions
diff --git a/lib/chef/search/query.rb b/lib/chef/search/query.rb
index ad176f6940..6501d24656 100644
--- a/lib/chef/search/query.rb
+++ b/lib/chef/search/query.rb
@@ -61,17 +61,17 @@ class Chef
scrubbed_args = Hash.new
# argify everything
- if not args[0].kind_of?(Hash)
+ if args[0].kind_of?(Hash)
+ scrubbed_args = args[0]
+ else
# This api will be deprecated in a future release
scrubbed_args = { :sort => args[0], :start => args[1], :rows => args[2] }
- else
- scrubbed_args = args[0]
end
# set defaults, if they haven't been set yet.
- scrubbed_args[:sort] = 'X_CHEF_id_CHEF_X asc' if scrubbed_args[:sort].nil?
- scrubbed_args[:start] = 0 if scrubbed_args[:start].nil?
- scrubbed_args[:rows] = 1000 if scrubbed_args[:rows].nil?
+ scrubbed_args[:sort] ||= 'X_CHEF_id_CHEF_X asc'
+ scrubbed_args[:start] ||= 0
+ scrubbed_args[:rows] ||= 1000
do_search(type, query, scrubbed_args, &block)
end
@@ -86,15 +86,14 @@ class Chef
end
# new search api that allows for a cleaner implementation of things like return filters
- # (formerly known as 'partial search'). A passthrough to either the old style ("full search")
- # or the new 'filtered' search
+ # (formerly known as 'partial search').
def do_search(type, query="*:*", args, &block)
raise ArgumentError, "Type must be a string or a symbol!" unless (type.kind_of?(String) || type.kind_of?(Symbol))
query_string = create_query_string(type, query, args)
response = call_rest_service(query_string, args)
- if block
- response["rows"].each { |o| block.call(o) unless o.nil?}
+ unless block.nil?
+ response["rows"].each { |rowset| block.call(rowset) unless rowset.nil?}
unless (response["start"] + response["rows"].length) >= response["total"]
args[:start] = response["start"] + args[:rows]
do_search(type, query, args, &block)