]> git.openstreetmap.org Git - osqa.git/blobdiff - forum_modules/akismet/startup.py
Replace deprecated mimetype with content_type
[osqa.git] / forum_modules / akismet / startup.py
index 595447c30274ea2519651ead38955493859b138c..7600bee1f30370a60319d3bbf09f53e42f645d23 100644 (file)
@@ -1,14 +1,19 @@
+import json
+
 from django.utils.translation import ugettext as _
 from django.http import HttpResponse, HttpResponseRedirect
-from django.utils import simplejson
+from django.template import RequestContext
 from django.utils.encoding import smart_str
 from django.shortcuts import render_to_response
 from forum.modules import decorate
 from forum import views
 from lib.akismet import Akismet
 from forum.settings import APP_URL, OSQA_VERSION
+
 from settings import WORDPRESS_API_KEY, REP_FOR_NO_SPAM_CHECK
+
 from forum.models.user import User
+from forum.forms.general import SimpleCaptchaForm
 
 import settings
 
@@ -18,8 +23,8 @@ def can_bypass_spam_check(user):
 
 def check_spam(param, comment_type):
     def wrapper(origin, request, *args, **kwargs):
-        if request.POST and request.POST.get(param, None) and WORDPRESS_API_KEY and (not can_bypass_spam_check(
-                request.user)):
+        if request.POST and request.POST.get(param, None) and WORDPRESS_API_KEY and (not can_bypass_spam_check(request.user)):
+        
             comment = smart_str(request.POST[param])
 
             data = {
@@ -38,16 +43,29 @@ def check_spam(param, comment_type):
 
             api = Akismet(settings.WORDPRESS_API_KEY, APP_URL, "OSQA/%s" % OSQA_VERSION)
             if api.comment_check(comment, data):
+                post_data = request.POST
+                captcha_form = SimpleCaptchaForm(request.POST)
+                
                 if request.is_ajax():
                     response = {
                     'success': False,
                     'error_message': _("Sorry, but akismet thinks your %s is spam.") % comment_type
                     }
-                    return HttpResponse(simplejson.dumps(response), mimetype="application/json")
+                    return HttpResponse(json.dumps(response), content_type="application/json")
                 else:
-                    return render_to_response('modules/akismet/foundspam.html', {
-                    'action_name': comment_type
-                    })
+                    captcha_checked = False
+                    try:
+                        if captcha_form.is_valid() and 'recaptcha' in captcha_form.fields.keys():
+                            captcha_checked = True
+                    except:
+                        pass
+
+                    if not captcha_checked:
+                        return render_to_response('modules/akismet/foundspam.html', {
+                        'action_name': comment_type,
+                        'post_data' : post_data,
+                        'captcha_form' : captcha_form,
+                        }, RequestContext(request))
 
         return origin(request, *args, **kwargs)
 
@@ -57,5 +75,3 @@ def check_spam(param, comment_type):
 decorate(views.writers.ask)(check_spam('text', _('question')))
 decorate(views.writers.answer)(check_spam('text', _('answer')))
 decorate(views.commands.comment)(check_spam('comment', _('comment')))
-
-