backend/app/search/services/search.py

207 lines
7.6 KiB
Python
Raw Normal View History

import string
2022-10-22 18:20:58 +03:00
from django.db.models import QuerySet
from search.models import (
Product,
Characteristic,
ProductCharacteristic,
ProductUnitCharacteristic,
UnitCharacteristic,
2022-10-22 18:20:58 +03:00
Category,
)
2022-10-21 23:22:14 +03:00
from typing import List
2022-10-21 22:36:36 +03:00
from search.services.hints import get_hints
from search.services.spell_check import spell_check
from search.services.translate import translate_en_ru, translate_ru_en
def process_unit_operation(unit: ProductUnitCharacteristic.objects, operation: str):
if operation.startswith("<=") or operation.startswith("=<"):
return unit.filter(
characteristic__numeric_value_max__lte=int(float(operation[2:]))
)
elif operation.startswith("=>") or operation.startswith(">="):
return unit.filter(
characteristic__numeric_value_min__gte=int(float(operation[2:]))
)
elif operation.startswith(">"):
return unit.filter(
characteristic__numeric_value_min__gt=int(float(operation[1:]))
)
elif operation.startswith("<"):
return unit.filter(
characteristic__numeric_value_max__lt=int(float(operation[1:]))
)
elif operation.startswith("="):
return unit.filter(
characteristic__numeric_value_min__gte=int(float(operation[1:])),
characteristic__numeric_value_max__lte=int(float(operation[1:])),
)
return unit
2022-10-21 22:36:36 +03:00
2022-10-22 18:20:58 +03:00
def _clean_text(text: str) -> List[str]:
2022-10-22 12:52:23 +03:00
for st in [".", ",", "!", "?"]:
text = text.replace(st, " ")
text = text.split()
2022-10-22 18:20:58 +03:00
return text
def apply_qs_search(qs: Product.objects, text: str):
text = _clean_text(text)
words = Product.objects.none()
2022-10-22 12:52:23 +03:00
for word in text:
2022-10-22 18:20:58 +03:00
words = (
words
| Product.objects.filter(name__unaccent__trigram_similar=word)
| Product.objects.filter(name__unaccent__icontains=word)
)
2022-10-22 18:20:58 +03:00
print(words)
qs = qs | words
print(qs)
2022-10-22 12:52:23 +03:00
return qs
2022-10-22 18:20:58 +03:00
def apply_all_qs_search(orig_qs, text: str):
# words
qs = apply_qs_search(Product.objects.none(), text)
text = _clean_text(text)
# categories
cats = Category.objects.none()
for word in text:
cats = cats | cats.filter(name__icontains=word)
qs = qs | Product.objects.filter(category__in=cats)
# characteristics
chars = Characteristic.objects.none()
for word in text:
chars = chars | chars.filter(
value__icontains=word,
)
qs = qs | Product.objects.filter(characteristics__characteristic__in=chars)
# print(qs)
return qs & orig_qs
2022-10-22 11:20:24 +03:00
def process_search(data: List[dict], limit=5, offset=0) -> List[dict]:
2022-10-22 05:07:25 +03:00
prep_data = []
prep_dict = {}
prep_dict_char_type = {}
# --------------------------------------- prepare filters -------------------------------------------------------- #
2022-10-22 05:07:25 +03:00
for x in data:
dat = dict(x)
2022-10-22 18:20:58 +03:00
if x["type"] in ["Name", "Category", "Characteristic", "All"]:
prep_data.append(
{
"type": dat["type"],
"value": spell_check(
dat["value"],
),
}
)
elif x["type"] == "Unknown":
type = get_hints(dat["value"])
prep_data.append(
{
"type": type,
"value": spell_check(
dat["value"],
),
}
)
2022-10-22 05:07:25 +03:00
else:
val = spell_check(
dat["value"],
)
2022-10-22 05:07:25 +03:00
if x["type"] in list(prep_dict.keys()):
if x["type"].startswith("*"):
unit = ProductUnitCharacteristic.objects.filter(
characteristic__in=prep_dict_char_type[x["type"]],
)
prep_dict[x["type"]] = prep_dict[
x["type"]
] | process_unit_operation(unit, x["value"])
else:
2022-10-22 18:20:58 +03:00
prep_dict[x["type"]] = (
prep_dict[x["type"]]
| ProductCharacteristic.objects.filter(
characteristic__in=prep_dict_char_type[x["type"]],
characteristic__value__unaccent__trigram_similar=val,
)
| ProductCharacteristic.objects.filter(
characteristic__in=prep_dict_char_type[x["type"]],
characteristic__value__icontains=val,
)
)
2022-10-22 05:07:25 +03:00
else:
if x["type"].startswith("*"):
prep_dict_char_type[x["type"]] = UnitCharacteristic.objects.filter(
name__unaccent__trigram_similar=x["type"]
2022-10-22 18:20:58 +03:00
) | UnitCharacteristic.objects.filter(name__icontains=x["type"])
unit = ProductUnitCharacteristic.objects.filter(
characteristic__in=prep_dict_char_type[x["type"]],
)
prep_dict[x["type"]] = process_unit_operation(unit, x["value"])
else:
prep_dict_char_type[x["type"]] = Characteristic.objects.filter(
name__unaccent__trigram_similar=x["type"]
2022-10-22 18:20:58 +03:00
) | Characteristic.objects.filter(name__icontains=x["type"])
prep_dict[x["type"]] = ProductCharacteristic.objects.filter(
characteristic__in=prep_dict_char_type[x["type"]],
characteristic__value__unaccent__trigram_similar=val,
2022-10-22 18:20:58 +03:00
) | ProductCharacteristic.objects.filter(
characteristic__in=prep_dict_char_type[x["type"]],
characteristic__value__icontains=val,
)
2022-10-22 05:07:25 +03:00
for el, val in prep_dict.items():
prep_data.append({"type": el, "value": val})
2022-10-22 11:20:24 +03:00
# ----------------------------------- apply filters on QuerySet -------------------------------------------------- #
2022-10-22 05:07:25 +03:00
qs = Product.objects.filter()
for x in prep_data:
typ = x["type"]
val = x["value"]
if typ == "Name":
2022-10-22 12:52:23 +03:00
qs = apply_qs_search(qs, val)
2022-10-22 18:20:58 +03:00
elif typ == "All":
qs = apply_all_qs_search(qs, val)
2022-10-22 05:07:25 +03:00
elif typ == "Category":
2022-10-22 18:20:58 +03:00
qs = qs.filter(category__name__unaccent__trigram_similar=val) | qs.filter(
category__name__icontains=val
)
elif typ == "Characteristic":
char = ProductCharacteristic.objects.filter(product__in=qs)
char = char.filter(characteristic__value__icontains=val) | char.filter(
characteristic__value__unaccent__trigram_similar=val
)
qs = qs.filter(characteristics__in=char)
2022-10-22 05:07:25 +03:00
elif typ == "Unknown":
2022-10-22 11:20:24 +03:00
if val[0] in string.printable:
val = "".join(translate_en_ru(val))
else:
val = "".join(translate_ru_en(val))
type = get_hints(val)
if type == "Name":
2022-10-22 12:52:23 +03:00
qs = apply_qs_search(qs, val)
2022-10-22 11:20:24 +03:00
elif type == "Category":
qs = qs.filter(category__name__unaccent__trigram_similar=val)
elif type == "Unknown":
continue
else:
qs = qs.filter(
characteristics__characteristic__name__unaccent__trigram_similar=val
)
2022-10-22 05:07:25 +03:00
continue
else:
2022-10-22 11:06:49 +03:00
if typ.startswith("*"):
qs = qs.filter(unit_characteristics__in=val)
else:
qs = qs.filter(characteristics__in=val)
2022-10-22 18:20:58 +03:00
return [
x.serialize_self()
for x in qs.distinct().order_by("-score")[offset : offset + limit]
]