]> git.openstreetmap.org Git - osqa.git/blob - forum_modules/pgfulltext/handlers.py
Fixes some errors that showed up in the logs.
[osqa.git] / forum_modules / pgfulltext / handlers.py
1 import re
2 from django.db.models import Q
3 from forum.models.question import Question, QuestionManager
4 from forum.modules.decorators import decorate
5
6 @decorate(QuestionManager.search, needs_origin=False)
7 def question_search(self, keywords):
8     repl_re = re.compile(r'[^\'-_\s\w]')
9     tsquery = " | ".join([k for k in repl_re.sub('', keywords).split(' ') if k])
10
11     return self.extra(
12                     tables = ['forum_rootnode_doc'],
13                     select={
14                         'ranking': """
15                                 rank_exact_matches(ts_rank_cd('{0.1, 0.2, 0.8, 1.0}'::float4[], "forum_rootnode_doc"."document", to_tsquery('english', %s), 32))
16                                 """,
17                     },
18                     where=["""
19                            "forum_rootnode_doc"."node_id" = "forum_node"."id" AND ("forum_rootnode_doc"."document" @@ to_tsquery('english', %s) OR
20                            "forum_node"."title" ILIKE '""" + keywords.replace("'",r"\'") + """%%')
21                            """],
22                     params=[tsquery],
23                     select_params=[tsquery],
24                     order_by=['-ranking']
25                 )
26