projects/views.py @ 4ee184bf2f39

Fixed the import bug.  Stupid cwd being on the python path by default...
author Steve Losh <steve@stevelosh.com>
date Fri, 23 Jan 2009 23:56:12 -0500
parents bfa2c0882ce6
children 09b70d37fb65
from stevelosh.projects.models import Project, Comment
from markdown import markdown
from django.shortcuts import render_to_response, get_object_or_404
from django.http import HttpResponseRedirect
from django.core.urlresolvers import reverse
from akismet import Akismet
from stevelosh import deploy


ak = Akismet(deploy.AKISMET_API_KEY, blog_url='http://stevelosh.com/')

def project(request, slug):
    project = get_object_or_404(Project, slug=slug)
    comments = project.comment_set.filter(spam=False).order_by('submitted')
    
    return render_to_response('projects/project.html', 
                              { 'project': project, 'comments': comments })

def list(request):
    projects = Project.objects.all().order_by('-posted')
    return render_to_response('projects/list.html', { 'projects': projects, })

def comment(request):
    fields = request.POST
    project = Project.objects.get(pk=fields['project-id'])
    
    if ( fields.has_key('name') and 
         not fields['name'].strip() == '' and
         not len(fields['name']) < 3 and
         fields.has_key('body') and 
         not fields['body'].strip() == '' and
         not len(fields['body']) < 3 and
         not len(fields['body']) > 15000):
        
        akismet_data = {}
        akismet_data['user_ip'] = request.META['REMOTE_ADDR']
        akismet_data['user_agent'] = request.META['HTTP_USER_AGENT']
        akismet_data['comment_author'] = fields['name']
        akismet_data['comment_type'] ='comment'
        spam = ak.comment_check(fields['body'], akismet_data)
        
        new_comment = Comment(name=fields['name'], 
                              body=fields['body'], 
                              project=project,
                              spam=spam)
        new_comment.save()
    
    return HttpResponseRedirect(reverse('stevelosh.projects.views.project',
                                        args=(project.slug,)))