trabajo-afectivo/app/controllers/search_controller.rb

123 lines
2.9 KiB
Ruby
Raw Normal View History

2014-02-03 19:24:49 +00:00
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
2013-05-21 22:30:09 +00:00
class SearchController < ApplicationController
before_action :authentication_check
2013-05-21 22:30:09 +00:00
# GET|POST /api/v1/search/:objects
def search_generic
2014-09-19 21:35:40 +00:00
# enable search only for agents and admins
if !current_user.role?(Z_ROLENAME_AGENT) && !current_user.role?(Z_ROLENAME_ADMIN)
2014-09-19 21:35:40 +00:00
response_access_deny
return true
end
# get params
query = params[:query]
limit = params[:limit] || 10
# convert objects string into array of class names
# e.g. user-ticket-another_object = %w( User Ticket AnotherObject )
2015-08-05 09:48:21 +00:00
objects = params[:objects].split('-').map(&:camelize)
2014-09-19 21:35:40 +00:00
# try search index backend
assets = {}
result = []
if SearchIndexBackend.enabled?
items = SearchIndexBackend.search( query, limit, objects )
2014-09-19 21:35:40 +00:00
items.each { |item|
require item[:type].to_filename
record = Kernel.const_get( item[:type] ).find( item[:id] )
assets = record.assets(assets)
result.push item
}
else
# do query
objects.each { |object|
found_objects = object.constantize.search(
query: query,
limit: limit,
current_user: current_user,
)
found_objects.each do |found_object|
item = {
id: found_object.id,
type: found_object.class.to_s
}
result.push item
assets = found_object.assets(assets)
end
}
2014-09-19 21:35:40 +00:00
end
render json: {
assets: assets,
result: result,
2014-09-19 21:35:40 +00:00
}
end
# GET /api/v1/search
2013-05-21 22:30:09 +00:00
def search
assets = {}
result = []
objects = %w( Ticket User Organization )
if SearchIndexBackend.enabled?
2013-05-21 22:30:09 +00:00
found_objects = {}
items = SearchIndexBackend.search( params[:term], params[:limit], objects )
items.each { |item|
require item[:type].to_filename
record = Kernel.const_get( item[:type] ).find( item[:id] )
assets = record.assets(assets)
2013-05-21 22:30:09 +00:00
found_objects[ item[:type] ] ||= []
found_objects[ item[:type] ].push item[:id]
}
2013-05-22 01:40:24 +00:00
found_objects.each { |object, object_ids|
2013-05-21 22:30:09 +00:00
data = {
name: object,
ids: object_ids,
}
result.push data
2013-05-21 22:30:09 +00:00
}
else
objects.each { |object|
found_objects = object.constantize.search(
query: params[:term],
limit: params[:limit],
current_user: current_user,
)
object_ids = []
found_objects.each do |found_object|
object_ids.push found_object.id
assets = found_object.assets(assets)
end
next if object_ids.empty?
data = {
name: object,
ids: object_ids,
}
result.push data
2013-05-21 22:30:09 +00:00
}
end
# return result
render json: {
assets: assets,
result: result,
2013-05-21 22:30:09 +00:00
}
end
end