diff --git a/search_tools/person_search.py b/search_tools/person_search.py index 1a9037b1792bd928bd89d8c670882f3ce13ffb29..de62c29c17d8063879f8743f5ffe2c09a75d447a 100644 --- a/search_tools/person_search.py +++ b/search_tools/person_search.py @@ -5,6 +5,7 @@ from greg.models import Identity, Person def person_by_string_query(request): search = request.query_params["q"] + number_of_hits = 20 if "gregui" in request.version: id_field_name = "pid" else: @@ -13,7 +14,7 @@ def person_by_string_query(request): split_search = search.lower().split() search_regex = "(.*)".join(split_search) reversed_search_regex = "(.*)".join(list(reversed(split_search))) - print(split_search, search_regex) + hits = [] # First look for hits on name and birth date persons = Person.objects.annotate( @@ -25,9 +26,9 @@ def person_by_string_query(request): | Q(full_name__iregex=reversed_search_regex) | Q(date_of_birth__iregex=search_regex) )[ - :20 + :number_of_hits ] - print(persons) + included_persons = [] for person in persons: hits.append( @@ -40,7 +41,7 @@ def person_by_string_query(request): ) included_persons.append(person.id) - if len(hits) == 20: + if len(hits) == number_of_hits: # Max number of hits, no need to search more return hits @@ -51,7 +52,7 @@ def person_by_string_query(request): Identity.IdentityType.PRIVATE_EMAIL, Identity.IdentityType.PRIVATE_MOBILE_NUMBER, ], - )[: (20 - len(hits))] + )[: (number_of_hits - len(hits))] for identity in identities: if identity.person_id in included_persons: