]> git.openstreetmap.org Git - osqa.git/blobdiff - forum_modules/pgfulltext/handlers.py
Fixes some problems with urlquoting on seraches.
[osqa.git] / forum_modules / pgfulltext / handlers.py
index 2b57e96efe699bca3b6f45a81dfb5b44c1ab7541..196790bfedc964b14fe43cb22c058fb631e96056 100644 (file)
@@ -1,16 +1,27 @@
-from forum.models import Question
+import re
+from django.db.models import Q
+from forum.models.question import Question, QuestionManager
 from forum.modules.decorators import decorate
-from forum.views.readers import do_question_search
 
-@decorate(do_question_search, needs_origin=False)
-def question_search(keywords):
-    return Question.objects.all().extra(
-                    tables=['forum_rootnode_doc'],
+@decorate(QuestionManager.search, needs_origin=False)
+def question_search(self, keywords):
+    repl_re = re.compile(r"[^\'\-_\s\w]", re.UNICODE)
+    tsquery = " | ".join([k for k in repl_re.sub('', keywords).split(' ') if k])
+    ilike = keywords + u"%%"
+
+    return self.extra(
+                    tables = ['forum_rootnode_doc'],
                     select={
-                        'ranking': 'ts_rank_cd("forum_rootnode_doc"."document", plainto_tsquery(\'english\', %s), 32)',
+                        'ranking': """
+                                rank_exact_matches(ts_rank_cd('{0.1, 0.2, 0.8, 1.0}'::float4[], "forum_rootnode_doc"."document", to_tsquery('english', %s), 32))
+                                """,
                     },
-                    where=['"forum_rootnode_doc"."node_id" = "forum_node"."id"', '"forum_rootnode_doc"."document" @@ plainto_tsquery(\'english\', %s)'],
-                    params=[keywords],
-                    select_params=[keywords],
+                    where=["""
+                           "forum_rootnode_doc"."node_id" = "forum_node"."id" AND ("forum_rootnode_doc"."document" @@ to_tsquery('english', %s) OR
+                           "forum_node"."title" ILIKE %s)
+                           """],
+                    params=[tsquery, ilike],
+                    select_params=[tsquery],
                     order_by=['-ranking']
-                )
\ No newline at end of file
+                )
+