mirror of
https://github.com/tubearchivist/tubearchivist-frontend.git
synced 2024-11-04 19:30:13 +00:00
extend IndexPaginate to optionally return _source key
This commit is contained in:
parent
fb4c11bd38
commit
8d1d09e698
@ -93,11 +93,12 @@ class IndexPaginate:
|
|||||||
|
|
||||||
DEFAULT_SIZE = 500
|
DEFAULT_SIZE = 500
|
||||||
|
|
||||||
def __init__(self, index_name, data, size=False):
|
def __init__(self, index_name, data, size=False, keep_source=False):
|
||||||
self.index_name = index_name
|
self.index_name = index_name
|
||||||
self.data = data
|
self.data = data
|
||||||
self.pit_id = False
|
self.pit_id = False
|
||||||
self.size = size
|
self.size = size
|
||||||
|
self.keep_source = keep_source
|
||||||
|
|
||||||
def get_results(self):
|
def get_results(self):
|
||||||
"""get all results"""
|
"""get all results"""
|
||||||
@ -132,7 +133,10 @@ class IndexPaginate:
|
|||||||
all_hits = response["hits"]["hits"]
|
all_hits = response["hits"]["hits"]
|
||||||
if all_hits:
|
if all_hits:
|
||||||
for hit in all_hits:
|
for hit in all_hits:
|
||||||
source = hit["_source"]
|
if self.keep_source:
|
||||||
|
source = hit
|
||||||
|
else:
|
||||||
|
source = hit["_source"]
|
||||||
search_after = hit["sort"]
|
search_after = hit["sort"]
|
||||||
all_results.append(source)
|
all_results.append(source)
|
||||||
# update search_after with last hit data
|
# update search_after with last hit data
|
||||||
|
Loading…
Reference in New Issue
Block a user