summaryrefslogtreecommitdiff
path: root/lib/chef_server/controllers/search.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef_server/controllers/search.rb')
-rw-r--r--lib/chef_server/controllers/search.rb71
1 files changed, 0 insertions, 71 deletions
diff --git a/lib/chef_server/controllers/search.rb b/lib/chef_server/controllers/search.rb
deleted file mode 100644
index 0abbf352b8..0000000000
--- a/lib/chef_server/controllers/search.rb
+++ /dev/null
@@ -1,71 +0,0 @@
-#
-# Author:: Adam Jacob (<adam@hjksolutions.com>)
-# Copyright:: Copyright (c) 2008 HJK Solutions, LLC
-# License:: Apache License, Version 2.0
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-class Search < Application
-
- provides :html, :json
-
- def index
- @s = Chef::Search.new
- @search_indexes = @s.list_indexes
- display @search_indexes
- end
-
- def show
- @s = Chef::Search.new
- @results = nil
- if params[:q]
- @results = @s.search(params[:id], params[:q] == "" ? "?*" : params[:q])
- else
- @results = @s.search(params[:id], "?*")
- end
- # Boy, this should move to the search function
- if params[:a]
- attributes = params[:a].split(",").collect { |a| a.to_sym }
- unless attributes.length == 0
- @results = @results.collect do |r|
- nr = Hash.new
- nr[:index_name] = r[:index_name]
- nr[:id] = r[:id]
- attributes.each do |attrib|
- if r.has_key?(attrib)
- nr[attrib] = r[attrib]
- end
- end
- nr
- end
- end
- end
- display @results
- end
-
- def destroy
- @s = Chef::Search.new
- @entries = @s.search(params[:id], "?*")
- @entries.each do |entry|
- Chef::Queue.send_msg(:queue, :remove, entry)
- end
- @status = 202
- if content_type == :html
- redirect url(:search)
- else
- display @entries
- end
- end
-
-end