-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
search.rb
410 lines (364 loc) · 13.5 KB
/
search.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
require 'grape'
require 'grape-entity'
module Srch
class Search < Grape::API
include Skylight::Helpers
# we are using a group of reusable parameters using a shared params helper
# see /app/api/srch/shared_params.rb
helpers SharedParams
include Grape::Rails::Cache
# Endpoint definitions
# Basic implementation from classic plots2 SearchController
resource :srch do
# Request URL should be /api/srch/all?query=QRY
desc 'Perform a search of all available resources', hidden: false,
is_array: false,
nickname: 'search_all'
params do
use :common
end
get :all do
search_request = SearchRequest.from_request(params)
results = Search.execute(:all, params)
results_list = []
if results.present?
results_list << results[:profiles].map do |model|
DocResult.new(
doc_type: 'USERS',
doc_url: '/profile/' + model.name,
doc_title: model.username
)
end
results_list << results[:notes].map do |model|
DocResult.new(
doc_id: model.nid,
doc_type: 'NOTES',
doc_url: model.path,
doc_title: model.title
)
end
results_list << results[:wikis].map do |model|
DocResult.new(
doc_id: model.nid,
doc_type: 'WIKIS',
doc_url: model.path,
doc_title: model.title
)
end
results_list << results[:tags].map do |model|
DocResult.new(
doc_id: model.nid,
doc_type: 'TAGS',
doc_url: model.path,
doc_title: model.title
)
end
results_list << results[:maps].map do |model|
DocResult.new(
doc_id: model.nid,
doc_type: 'PLACES',
doc_url: model.path,
doc_title: model.title
)
end
results_list << results[:questions].map do |model|
DocResult.new(
doc_id: model.nid,
doc_type: 'QUESTIONS',
doc_url: model.path(:question),
doc_title: model.title,
score: model.answers.length
)
end
DocList.new(results_list.flatten, search_request)
else
DocList.new('', search_request)
end
end
# Request URL should be /api/srch/profiles?query=QRY[&sort_by=recent&order_direction=desc&field=username]
desc 'Perform a search of profiles', hidden: false,
is_array: false,
nickname: 'search_profiles'
params do
use :common, :sorting, :ordering, :field
end
get :profiles do
search_request = SearchRequest.from_request(params)
# TODO: evaluate if disabling this caching action actually speeds things up?
cache(key: "api:profiles:#{params[:query]}:#{params[:limit]}:#{params[:sort_by]}:#{params[:order_direction]}:#{params[:field]}", expires_in: 2.day) do
results = Search.execute(:profiles, params)
if results.present?
docs = results.map do |model|
DocResult.new(
doc_type: 'USERS',
doc_url: '/profile/' + model.name,
doc_title: model.username,
latitude: model.lat,
longitude: model.lon,
blurred: model.blurred?
)
end
DocList.new(docs, search_request)
else
DocList.new('', search_request)
end
end
end
# Request URL should be /api/srch/notes?query=QRY
desc 'Perform a search of research notes', hidden: false,
is_array: false,
nickname: 'search_notes'
params do
use :common
end
get :notes do
search_request = SearchRequest.from_request(params)
results = Search.execute(:notes, params)
if results.present?
docs = results.map do |model|
DocResult.new(
doc_id: model.nid,
doc_type: 'NOTES',
doc_url: model.path,
doc_title: model.title
)
end
DocList.new(docs, search_request)
else
DocList.new('', search_request)
end
end
# Request URL should be /api/srch/content?query=QRY
desc 'Perform a search of nodes and tags', hidden: false,
is_array: false,
nickname: 'search_content'
params do
use :common
end
get :content do
search_request = SearchRequest.from_request(params)
results = Search.execute(:content, params)
results_list = []
if results.present?
results_list << results[:tags].map do |tagname|
DocResult.new(
doc_id: tagname,
doc_type: 'TAGS',
doc_url: "/tag/#{tagname}",
doc_title: tagname
)
end
results_list << results[:notes].map do |model|
DocResult.new(
doc_id: model.nid,
doc_type: 'NOTES',
doc_url: model.path,
doc_title: model.title
)
end
DocList.new(results_list.flatten, search_request)
else
DocList.new('', search_request)
end
end
# Request URL should be /api/srch/nodes?query=QRY
desc 'Perform a search of nodes', hidden: false,
is_array: false,
nickname: 'search_content'
params do
use :common
end
get :nodes do
search_request = SearchRequest.from_request(params)
results = Search.execute(:nodes, params)
if results.present?
docs = results.map do |model|
DocResult.new(
doc_id: model.nid,
doc_type: 'NODES',
doc_url: model.path,
doc_title: model.title
)
end
DocList.new(docs, search_request)
else
DocList.new('', search_request)
end
end
# Request URL should be /api/srch/wikis?query=QRY
desc 'Perform a search of wikis pages', hidden: false,
is_array: false,
nickname: 'search_wikis'
params do
use :common
end
get :wikis do
search_request = SearchRequest.from_request(params)
results = Search.execute(:wikis, params)
if results.present?
docs = results.map do |model|
DocResult.new(
doc_id: model.nid,
doc_type: 'WIKIS',
doc_url: model.path,
doc_title: model.title
)
end
DocList.new(docs, search_request)
else
DocList.new('', search_request)
end
end
# Request URL should be /api/srch/questions?query=QRY
desc 'Perform a search of questions tables', hidden: false,
is_array: false,
nickname: 'search_questions'
params do
use :common, :sorting, :ordering
end
get :questions do
search_request = SearchRequest.from_request(params)
results = Search.execute(:questions, params)
if results.present?
docs = results.map do |model|
DocResult.new(
doc_id: model.nid,
doc_type: 'QUESTIONS',
doc_url: model.path(:question),
doc_title: model.title,
score: model.answers.length
)
end
DocList.new(docs, search_request)
else
DocList.new('', search_request)
end
end
# Request URL should be /api/srch/tags?query=QRY
desc 'Perform a search of documents associated with tags within the system', hidden: false,
is_array: false,
nickname: 'search_tags'
params do
use :common
end
get :tags do
Skylight.instrument title: "Tags search" do
search_request = SearchRequest.from_request(params)
results = Search.execute(:tags, params)
if results.present?
docs = results.map do |model|
DocResult.new(
doc_id: model.nid,
doc_type: 'TAGS',
doc_url: model.path,
doc_title: model.title
)
end
DocList.new(docs, search_request)
else
DocList.new('', search_request)
end
end
end
# Request URL should be /api/srch/taglocations?nwlat=200.0&selat=0.0&nwlng=0.0&selng=200.0[&tag=awesome]
desc 'Perform a search of documents having nearby latitude and longitude tag values', hidden: false,
is_array: false,
nickname: 'search_tag_locations'
params do
use :geographical, :additional, :period, :sorting, :ordering
end
get :taglocations do
search_request = SearchRequest.from_request(params)
results = Search.execute(:taglocations, params)
if results.present?
docs = results.map do |model|
doctype = model.has_power_tag('question') ? 'QUESTION' : 'NOTE'
doctype = 'WIKI' if model.type == 'page'
DocResult.new(
doc_id: model.nid,
doc_type: doctype,
doc_url: model.path(:items),
doc_title: model.title,
doc_author: model.user.username,
doc_image_url: !model.images.empty? ? model.images.first.path : 0,
score: model.answers.length,
latitude: model.lat,
longitude: model.lon,
blurred: model.blurred?,
place_name: model.has_power_tag('place') ? model.power_tag('place') : '',
created_at: model.created_at,
# time_since: distance_of_time_in_words(model.created_at, Time.current, { include_seconds: false, scope: 'datetime.time_ago_in_words' }), # works, but really slows down the search results
# comment_count: model.comments_viewable_by(current_user).length # causes an error because of current_user?
)
end
DocList.new(docs, search_request)
else
DocList.new('', search_request)
end
end
# Request URL should be /api/srch/nearbyPeople?nwlat=200.0&selat=0.0&nwlng=0.0&selng=200.0[&tag=awesome&sort_by=recent]
desc 'Perform a search to show people nearby a given location', hidden: false,
is_array: false,
nickname: 'search_nearby_people'
params do
use :geographical, :additional, :field, :period, :sorting, :ordering
end
get :nearbyPeople do
search_request = SearchRequest.from_request(params)
results = Search.execute(:nearbyPeople, params)
if results.present?
docs = results.map do |model|
DocResult.new(
doc_id: model.id,
doc_type: 'PLACES',
doc_url: model.path,
doc_title: model.username,
latitude: model.lat,
longitude: model.lon,
blurred: model.blurred?,
created_at: model.created_at,
doc_image_url: model.profile_image ? model.profile_image : ""
)
end
DocList.new(docs, search_request)
else
DocList.new('', search_request)
end
end
# Request URL should be /api/srch/places?query=QRY
desc 'Perform a search of places', hidden: false,
is_array: false,
nickname: 'search_places'
params do
use :common
end
get :places do
search_request = SearchRequest.from_request(params)
results = Search.execute(:places, params)
if results.present?
docs = results.map do |model|
DocResult.new(
doc_id: model.nid,
doc_type: 'PLACES',
doc_url: model.path,
doc_title: model.title
)
end
DocList.new(docs, search_request)
else
DocList.new('', search_request)
end
end
end
def self.execute(endpoint, params)
search_type = endpoint
search_criteria = SearchCriteria.new(params)
search_criteria.validate_period_from_to
if search_criteria.valid?
ExecuteSearch.new.by(search_type, search_criteria)
else
[]
end
end
end
end