]> git.openstreetmap.org Git - osqa.git/commitdiff
Fixes OSQA 346, Error 500 when using a single quote (') in the search field or in...
authorhernani <hernani@0cfe37f9-358a-4d5e-be75-b63607b5c754>
Wed, 9 Jun 2010 10:55:33 +0000 (10:55 +0000)
committerhernani <hernani@0cfe37f9-358a-4d5e-be75-b63607b5c754>
Wed, 9 Jun 2010 10:55:33 +0000 (10:55 +0000)
git-svn-id: http://svn.osqa.net/svnroot/osqa/trunk@397 0cfe37f9-358a-4d5e-be75-b63607b5c754

forum_modules/pgfulltext/handlers.py

index 196790bfedc964b14fe43cb22c058fb631e96056..18a23e3d2c88b75721eb7b3e0b3c6ddb72eaa076 100644 (file)
@@ -3,25 +3,27 @@ from django.db.models import Q
 from forum.models.question import Question, QuestionManager
 from forum.modules.decorators import decorate
 
+repl_re = re.compile(r"^'|[^\'\-_\s\w]|'$", re.UNICODE)
+sing_quote_re = re.compile(r"\'+")
+
 @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])
+    tsquery = " | ".join([k for k in repl_re.sub('', sing_quote_re.sub("'", keywords.strip())).split(' ') if k])
     ilike = keywords + u"%%"
 
     return self.extra(
-                    tables = ['forum_rootnode_doc'],
-                    select={
-                        'ranking': """
+            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=["""
+            },
+            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']
-                )
+            params=[tsquery, ilike],
+            select_params=[tsquery],
+            order_by=['-ranking']
+            )