]> git.openstreetmap.org Git - osqa.git/blobdiff - forum_modules/pgfulltext/handlers.py
Adds the hability to hard delete nodes in the bulk manager, and renames the tool.
[osqa.git] / forum_modules / pgfulltext / handlers.py
old mode 100755 (executable)
new mode 100644 (file)
index 17fb176..780bfa9
@@ -1,11 +1,38 @@
-from forum.models import Question\r
-\r
-def question_search(keywords, orderby):\r
-    return Question.objects.filter(deleted=False).extra(\r
-                    select={\r
-                        'ranking': "ts_rank_cd(tsv, plainto_tsquery(%s), 32)",\r
-                    },\r
-                    where=["tsv @@ plainto_tsquery(%s)"],\r
-                    params=[keywords],\r
-                    select_params=[keywords]\r
-                ).order_by(orderby, '-ranking')
\ No newline at end of file
+import re
+from django.db import connection, transaction
+from django.db.models import Q
+from forum.models.question import Question, QuestionManager
+from forum.models.node import Node
+from forum.modules import decorate
+
+word_re = re.compile(r'\w+', re.UNICODE)
+
+@decorate(QuestionManager.search, needs_origin=False)
+def question_search(self, keywords):
+    tsquery = " | ".join(word_re.findall(keywords))
+    ilike = keywords + u"%%"
+
+    return True, self.extra(
+            tables = ['forum_rootnode_doc'],
+            select={
+            '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" AND ("forum_rootnode_doc"."document" @@ to_tsquery('english', %s) OR
+                           "forum_node"."title" ILIKE %s)
+                           """],
+            params=[tsquery, ilike],
+            select_params=[tsquery],
+            )
+
+
+@decorate(Node.delete)
+def delete(origin, self, *args, **kwargs):
+    cursor = connection.cursor()
+    cursor.execute("DELETE FROM forum_rootnode_doc WHERE node_id = %s" % (self.id))
+    transaction.commit_unless_managed()
+    return origin(self, *args, **kwargs)
+
+