trabajo-afectivo/lib/search_index_backend.rb

252 lines
5.2 KiB
Ruby
Raw Normal View History

# Copyright (C) 2012-2013 Zammad Foundation, http://zammad-foundation.org/
class SearchIndexBackend
=begin
create/update/delete index
SearchIndexBackend.index(
:action => 'create', # create/update/delete
:data => {
:mappings => {
:Ticket => {
:properties => {
:articles_all => {
:type => 'nested',
:properties => {
'attachments' => { :type => 'attachment' }
2014-04-28 15:30:06 +00:00
}
}
2014-04-28 15:30:06 +00:00
}
}
}
}
)
SearchIndexBackend.index(
:action => 'delete', # create/update/delete
:name => 'Ticket', # optional
)
SearchIndexBackend.index(
:action => 'delete', # create/update/delete
)
=end
def self.index(data)
url = build_url( data[:name] )
return if !url
if data[:action] && data[:action] == 'delete'
return SearchIndexBackend.remove( data[:name] )
end
puts "# curl -X PUT \"#{url}\" -d '#{data[:data].to_json}'"
conn = connection( url )
response = conn.put do |req|
req.url url
req.headers['Content-Type'] = 'application/json'
req.body = data[:data].to_json
end
puts "# #{response.status.to_s}"
return true if response.success?
data = JSON.parse( response.body )
raise data.inspect
end
=begin
add new object to search index
SearchIndexBackend.add( 'Ticket', some_data_object )
=end
def self.add(type, data)
url = build_url( type, data['id'] )
return if !url
puts "# curl -X POST \"#{url}\" -d '#{data.to_json}'"
conn = connection( url )
response = conn.post do |req|
req.url url
req.headers['Content-Type'] = 'application/json'
req.body = data.to_json
end
puts "# #{response.status.to_s}"
return true if response.success?
data = JSON.parse( response.body )
2014-02-03 18:26:22 +00:00
raise data.inspect
end
=begin
remove whole data from index
SearchIndexBackend.remove( 'Ticket', 123 )
SearchIndexBackend.remove( 'Ticket' )
=end
def self.remove( type, o_id = nil )
url = build_url( type, o_id )
return if !url
puts "# curl -X DELETE \"#{url}\""
conn = connection( url )
response = conn.delete( url )
puts "# #{response.status.to_s}"
2014-02-03 18:26:22 +00:00
return false if !response.success?
data = JSON.parse( response.body )
2014-02-03 18:26:22 +00:00
# raise data.inspect
return { :data => data, :response => response }
end
=begin
2014-01-29 23:51:55 +00:00
return search result
2014-09-19 21:35:40 +00:00
result = SearchIndexBackend.search( 'search query', limit, ['User', 'Organization'] )
2014-01-29 23:51:55 +00:00
result = SearchIndexBackend.search( 'search query', limit, 'User' )
2014-09-19 21:35:40 +00:00
result = [
{
:id => 123,
:type => 'User',
},
{
:id => 125,
:type => 'User',
},
{
:id => 15,
:type => 'Organization',
}
]
=end
2014-02-02 18:58:31 +00:00
def self.search( query, limit = 10, index = nil, query_extention = {} )
2014-01-29 23:51:55 +00:00
return [] if !query
url = build_url()
return if !url
2014-04-28 15:30:06 +00:00
if index
2014-09-19 21:35:40 +00:00
if index.class == Array
url += "/#{index.join(',')}/_search"
else
url += "/#{index}/_search"
end
2014-01-29 23:51:55 +00:00
else
url += '/_search'
end
data = {}
data['from'] = 0
data['size'] = 10
2014-04-28 15:30:06 +00:00
data['sort'] =
2014-02-02 18:58:31 +00:00
[
{
:updated_at => {
:order => 'desc'
2014-02-02 18:58:31 +00:00
}
},
"_score"
]
2014-02-02 18:58:31 +00:00
data['query'] = query_extention || {}
if !data['query']['bool']
data['query']['bool'] = {}
end
if !data['query']['bool']['must']
data['query']['bool']['must'] = []
end
2014-01-29 23:51:55 +00:00
# real search condition
2014-02-02 18:58:31 +00:00
condition = {
'query_string' => {
'query' => query
}
}
data['query']['bool']['must'].push condition
2014-01-29 23:51:55 +00:00
puts "# curl -X POST \"#{url}\" -d '#{data.to_json}'"
conn = connection( url )
response = conn.get do |req|
req.headers['Content-Type'] = 'application/json'
req.body = data.to_json
end
puts "# #{response.status.to_s}"
data = JSON.parse( response.body )
2014-02-03 18:26:22 +00:00
if !response.success?
return []
# raise data.inspect
2014-02-03 18:26:22 +00:00
end
2014-01-29 23:51:55 +00:00
ids = []
return ids if !data
return ids if !data['hits']
return ids if !data['hits']['hits']
data['hits']['hits'].each { |item|
puts "... #{item['_type'].to_s} #{item['_id'].to_s}"
2014-09-19 21:35:40 +00:00
data = {
:id => item['_id'],
:type => item['_type'],
}
ids.push data
2014-01-29 23:51:55 +00:00
}
2014-02-03 18:26:22 +00:00
ids
end
2014-02-02 18:58:31 +00:00
=begin
2014-04-28 15:30:06 +00:00
return true if backend is configured
2014-02-02 18:58:31 +00:00
result = SearchIndexBackend.enabled?
=end
def self.enabled?
return if !Setting.get('es_url')
return if Setting.get('es_url').empty?
true
end
private
2014-01-29 23:51:55 +00:00
def self.build_url( type = nil, o_id = nil )
2014-02-02 18:58:31 +00:00
return if !SearchIndexBackend.enabled?
2014-01-28 10:02:31 +00:00
index = Setting.get('es_index').to_s + "_#{Rails.env}"
url = Setting.get('es_url')
2014-01-29 23:51:55 +00:00
if type
if o_id
url = "#{url}/#{index}/#{type}/#{o_id}"
else
url = "#{url}/#{index}/#{type}"
end
else
2014-01-29 23:51:55 +00:00
url = "#{url}/#{index}"
end
url
end
def self.connection( url )
2014-12-27 20:38:13 +00:00
conn = Faraday.new( :url => url, :request => { :open_timeout => 5, :timeout => 10 } )
user = Setting.get('es_user')
pw = Setting.get('es_password')
if user && !user.empty? && pw && !pw.empty?
conn.basic_auth( user, pw )
end
conn
end
2014-01-29 23:51:55 +00:00
end