2011-10-20 03:31:16 +00:00
|
|
|
import logging
|
|
|
|
from decimal import Decimal as D
|
|
|
|
|
|
|
|
from django.conf import settings
|
2011-09-12 05:53:54 +00:00
|
|
|
from django.contrib.auth.models import User
|
2011-09-27 09:27:15 +00:00
|
|
|
from django.core.urlresolvers import reverse
|
2011-10-23 18:40:06 +00:00
|
|
|
from django.core.exceptions import ObjectDoesNotExist
|
2011-09-27 09:27:15 +00:00
|
|
|
from django.http import HttpResponseRedirect
|
2011-10-12 17:47:48 +00:00
|
|
|
from django.http import HttpResponse
|
2011-09-29 06:23:50 +00:00
|
|
|
from django.views.decorators.csrf import csrf_exempt
|
|
|
|
from django.views.decorators.http import require_POST
|
2011-10-12 17:47:48 +00:00
|
|
|
from django.views.generic.edit import FormView
|
2011-10-25 01:29:01 +00:00
|
|
|
from django.views.generic.base import TemplateView
|
2011-09-29 06:23:50 +00:00
|
|
|
from django.contrib.auth.decorators import login_required
|
2011-09-29 01:36:47 +00:00
|
|
|
from django.shortcuts import render, render_to_response, get_object_or_404
|
2011-09-27 09:27:15 +00:00
|
|
|
|
2011-10-25 01:29:01 +00:00
|
|
|
import oauth2 as oauth
|
2011-10-25 23:07:44 +00:00
|
|
|
from itertools import islice
|
2011-10-25 01:29:01 +00:00
|
|
|
|
2011-10-20 03:31:16 +00:00
|
|
|
from regluit.core import tasks
|
2011-09-29 06:23:50 +00:00
|
|
|
from regluit.core import models, bookloader
|
|
|
|
from regluit.core.search import gluejar_search
|
2011-10-25 01:29:01 +00:00
|
|
|
from regluit.core.goodreads import GoodreadsClient
|
2011-10-20 03:31:16 +00:00
|
|
|
from regluit.frontend.forms import UserData, ProfileForm
|
2011-10-12 17:47:48 +00:00
|
|
|
from regluit.frontend.forms import CampaignPledgeForm
|
2011-10-13 21:13:37 +00:00
|
|
|
from regluit.payment.manager import PaymentManager
|
|
|
|
from regluit.payment.parameters import TARGET_TYPE_CAMPAIGN
|
|
|
|
|
2011-10-25 01:29:01 +00:00
|
|
|
from regluit.core import goodreads
|
|
|
|
|
2011-10-12 17:47:48 +00:00
|
|
|
logger = logging.getLogger(__name__)
|
2011-10-03 16:36:04 +00:00
|
|
|
|
2011-10-13 16:23:57 +00:00
|
|
|
from regluit.payment.models import Transaction
|
|
|
|
|
2011-08-31 03:46:55 +00:00
|
|
|
def home(request):
|
2011-09-27 09:27:15 +00:00
|
|
|
if request.user.is_authenticated():
|
|
|
|
return HttpResponseRedirect(reverse('supporter',
|
|
|
|
args=[request.user.username]))
|
2011-10-14 02:32:30 +00:00
|
|
|
return render(request, 'home.html', {'suppress_search_box': True})
|
2011-09-12 03:44:21 +00:00
|
|
|
|
2011-10-20 03:31:16 +00:00
|
|
|
def work(request, work_id):
|
|
|
|
work = get_object_or_404(models.Work, id=work_id)
|
2011-10-20 05:42:49 +00:00
|
|
|
editions = work.editions.all().order_by('-publication_date')
|
2011-10-20 18:16:42 +00:00
|
|
|
supporters = User.objects.filter(wishlist__works__in=[work])
|
|
|
|
if not request.user.is_anonymous:
|
|
|
|
supporters.remove(request.user)
|
|
|
|
return render(request, 'work.html', {
|
|
|
|
'work': work,
|
|
|
|
'editions': editions,
|
|
|
|
'supporters': supporters
|
|
|
|
})
|
2011-10-20 03:31:16 +00:00
|
|
|
|
2011-09-12 18:20:36 +00:00
|
|
|
def supporter(request, supporter_username):
|
2011-10-19 07:13:29 +00:00
|
|
|
supporter = get_object_or_404(User, username=supporter_username)
|
|
|
|
wishlist = supporter.wishlist
|
|
|
|
backed = 0
|
|
|
|
backing = 0
|
|
|
|
transet = Transaction.objects.all().filter(user = supporter)
|
|
|
|
|
|
|
|
for transaction in transet:
|
2011-11-01 20:21:38 +00:00
|
|
|
try:
|
|
|
|
if(transaction.campaign.status == 'SUCCESSFUL'):
|
|
|
|
backed += 1
|
|
|
|
elif(transaction.campaign.status == 'ACTIVE'):
|
|
|
|
backing += 1
|
|
|
|
except:
|
|
|
|
continue
|
2011-10-19 07:13:29 +00:00
|
|
|
|
|
|
|
wished = supporter.wishlist.works.count()
|
|
|
|
|
|
|
|
date = supporter.date_joined.strftime("%B %d, %Y")
|
2011-10-14 14:18:38 +00:00
|
|
|
|
2011-10-19 07:13:29 +00:00
|
|
|
# figure out what works the users have in commmon if someone
|
|
|
|
# is looking at someone elses supporter page
|
|
|
|
if not request.user.is_anonymous and request.user != supporter:
|
|
|
|
w1 = request.user.wishlist
|
|
|
|
w2 = supporter.wishlist
|
|
|
|
shared_works = models.Work.objects.filter(wishlists__in=[w1])
|
|
|
|
shared_works = list(shared_works.filter(wishlists__in=[w2]))
|
|
|
|
else:
|
|
|
|
shared_works = []
|
|
|
|
|
2011-10-23 18:40:06 +00:00
|
|
|
# following block to support profile admin form in supporter page
|
2011-10-19 07:13:29 +00:00
|
|
|
if request.user.is_authenticated() and request.user.username == supporter_username:
|
|
|
|
if request.method == 'POST':
|
2011-10-25 03:32:32 +00:00
|
|
|
try:
|
|
|
|
profile_obj=request.user.get_profile()
|
|
|
|
except ObjectDoesNotExist:
|
|
|
|
profile_obj= models.UserProfile()
|
|
|
|
profile_obj.user=request.user
|
2011-10-23 18:40:06 +00:00
|
|
|
profile_form = ProfileForm(data=request.POST,instance=profile_obj)
|
2011-10-19 07:13:29 +00:00
|
|
|
if profile_form.is_valid():
|
|
|
|
profile_form.save()
|
|
|
|
else:
|
|
|
|
profile_form = ProfileForm()
|
2011-10-19 16:55:48 +00:00
|
|
|
else:
|
|
|
|
profile_form = ''
|
2011-10-19 07:13:29 +00:00
|
|
|
|
|
|
|
context = {
|
2011-10-14 14:18:38 +00:00
|
|
|
"supporter": supporter,
|
|
|
|
"wishlist": wishlist,
|
|
|
|
"backed": backed,
|
|
|
|
"backing": backing,
|
|
|
|
"wished": wished,
|
|
|
|
"date": date,
|
|
|
|
"shared_works": shared_works,
|
2011-10-19 07:13:29 +00:00
|
|
|
"profile_form": profile_form,
|
|
|
|
}
|
|
|
|
|
|
|
|
return render(request, 'supporter.html', context)
|
2011-10-03 16:36:04 +00:00
|
|
|
|
|
|
|
def edit_user(request):
|
|
|
|
form=UserData()
|
|
|
|
if not request.user.is_authenticated():
|
|
|
|
return HttpResponseRedirect(reverse('auth_login'))
|
|
|
|
oldusername=request.user.username
|
|
|
|
if request.method == 'POST':
|
|
|
|
# surely there's a better way to add data to the POST data?
|
|
|
|
postcopy=request.POST.copy()
|
|
|
|
postcopy['oldusername']=oldusername
|
|
|
|
form = UserData(postcopy)
|
|
|
|
if form.is_valid(): # All validation rules pass, go and change the username
|
|
|
|
request.user.username=form.cleaned_data['username']
|
|
|
|
request.user.save()
|
|
|
|
return HttpResponseRedirect(reverse('home')) # Redirect after POST
|
|
|
|
return render(request,'registration/user_change_form.html', {'form': form},)
|
|
|
|
|
|
|
|
|
2011-09-29 01:36:47 +00:00
|
|
|
def search(request):
|
2011-09-29 01:54:50 +00:00
|
|
|
q = request.GET.get('q', None)
|
2011-09-29 06:23:50 +00:00
|
|
|
results = gluejar_search(q)
|
|
|
|
|
2011-10-10 22:08:53 +00:00
|
|
|
# flag search result as on wishlist as appropriate
|
2011-09-30 01:01:28 +00:00
|
|
|
if not request.user.is_anonymous():
|
2011-10-10 22:08:53 +00:00
|
|
|
# get a list of all the googlebooks_ids for works on the user's wishlist
|
|
|
|
wishlist = request.user.wishlist
|
|
|
|
editions = models.Edition.objects.filter(work__wishlists__in=[wishlist])
|
|
|
|
googlebooks_ids = [e['googlebooks_id'] for e in editions.values('googlebooks_id')]
|
|
|
|
|
|
|
|
# if the results is on their wishlist flag it
|
2011-09-29 06:23:50 +00:00
|
|
|
for result in results:
|
2011-10-10 22:08:53 +00:00
|
|
|
if result['googlebooks_id'] in googlebooks_ids:
|
2011-09-29 06:23:50 +00:00
|
|
|
result['on_wishlist'] = True
|
|
|
|
else:
|
|
|
|
result['on_wishlist'] = False
|
|
|
|
|
2011-09-29 01:54:50 +00:00
|
|
|
context = {
|
|
|
|
"q": q,
|
|
|
|
"results": results,
|
|
|
|
}
|
|
|
|
return render(request, 'search.html', context)
|
2011-09-29 06:23:50 +00:00
|
|
|
|
2011-09-29 11:44:03 +00:00
|
|
|
# TODO: perhaps this functionality belongs in the API?
|
2011-09-29 06:23:50 +00:00
|
|
|
@require_POST
|
|
|
|
@login_required
|
2011-10-10 16:57:10 +00:00
|
|
|
@csrf_exempt
|
2011-09-29 06:23:50 +00:00
|
|
|
def wishlist(request):
|
2011-10-10 16:57:10 +00:00
|
|
|
googlebooks_id = request.POST.get('googlebooks_id', None)
|
2011-09-29 11:44:03 +00:00
|
|
|
remove_work_id = request.POST.get('remove_work_id', None)
|
2011-10-10 16:57:10 +00:00
|
|
|
if googlebooks_id:
|
|
|
|
edition = bookloader.add_by_googlebooks_id(googlebooks_id)
|
2011-10-20 03:31:16 +00:00
|
|
|
# add related editions asynchronously
|
|
|
|
tasks.add_related.delay(edition.isbn_10)
|
2011-10-10 16:57:10 +00:00
|
|
|
request.user.wishlist.works.add(edition.work)
|
2011-09-29 11:44:03 +00:00
|
|
|
# TODO: redirect to work page, when it exists
|
|
|
|
return HttpResponseRedirect('/')
|
|
|
|
elif remove_work_id:
|
|
|
|
work = models.Work.objects.get(id=int(remove_work_id))
|
|
|
|
request.user.wishlist.works.remove(work)
|
2011-09-29 16:42:19 +00:00
|
|
|
# TODO: where to redirect?
|
2011-09-29 11:44:03 +00:00
|
|
|
return HttpResponseRedirect('/')
|
2011-10-14 02:16:28 +00:00
|
|
|
|
2011-10-12 17:47:48 +00:00
|
|
|
class CampaignFormView(FormView):
|
|
|
|
template_name="campaign_detail.html"
|
|
|
|
form_class = CampaignPledgeForm
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
pk = self.kwargs["pk"]
|
|
|
|
campaign = models.Campaign.objects.get(id=int(pk))
|
|
|
|
context = super(CampaignFormView, self).get_context_data(**kwargs)
|
|
|
|
context.update({
|
2011-10-14 02:16:28 +00:00
|
|
|
'campaign': campaign
|
2011-10-13 21:13:37 +00:00
|
|
|
})
|
|
|
|
return context
|
2011-10-20 03:31:16 +00:00
|
|
|
|
2011-10-13 21:13:37 +00:00
|
|
|
def form_valid(self,form):
|
|
|
|
pk = self.kwargs["pk"]
|
2011-10-18 23:27:20 +00:00
|
|
|
pledge_amount = form.cleaned_data["pledge_amount"]
|
|
|
|
preapproval_amount = form.cleaned_data["preapproval_amount"]
|
|
|
|
|
|
|
|
# right now, if there is a non-zero pledge amount, go with that. otherwise, do the pre_approval
|
2011-10-13 21:13:37 +00:00
|
|
|
campaign = models.Campaign.objects.get(id=int(pk))
|
|
|
|
|
|
|
|
p = PaymentManager()
|
|
|
|
|
2011-10-18 23:27:20 +00:00
|
|
|
# we should force login at this point -- or if no account, account creation, login, and return to this spot
|
2011-10-13 21:13:37 +00:00
|
|
|
if self.request.user.is_authenticated():
|
|
|
|
user = self.request.user
|
|
|
|
else:
|
|
|
|
user = None
|
|
|
|
|
2011-10-18 23:27:20 +00:00
|
|
|
if (preapproval_amount > D('0.00')):
|
|
|
|
# handle preapproval: get preapproval to charge amount of money in preapproval_amount
|
|
|
|
|
|
|
|
return_url = self.request.build_absolute_uri(reverse('campaign_by_id',kwargs={'pk': str(pk)}))
|
|
|
|
t, url = p.authorize('USD', TARGET_TYPE_CAMPAIGN, preapproval_amount, campaign=campaign, list=None, user=user,
|
|
|
|
return_url=return_url)
|
|
|
|
else:
|
|
|
|
# instant payment: send to the partnering RH
|
|
|
|
# right now, all money going to Gluejar.
|
|
|
|
receiver_list = [{'email':settings.PAYPAL_GLUEJAR_EMAIL, 'amount':pledge_amount}]
|
|
|
|
|
|
|
|
# redirect the page back to campaign page on success
|
|
|
|
#return_url = self.request.build_absolute_uri("/campaigns/%s" %(str(pk)))
|
|
|
|
return_url = self.request.build_absolute_uri(reverse('campaign_by_id',kwargs={'pk': str(pk)}))
|
|
|
|
t, url = p.pledge('USD', TARGET_TYPE_CAMPAIGN, receiver_list, campaign=campaign, list=None, user=user,
|
|
|
|
return_url=return_url)
|
2011-10-13 21:13:37 +00:00
|
|
|
|
|
|
|
if url:
|
2011-10-14 02:16:28 +00:00
|
|
|
logger.info("CampaignFormView paypal: " + url)
|
2011-10-13 21:13:37 +00:00
|
|
|
return HttpResponseRedirect(url)
|
|
|
|
else:
|
|
|
|
response = t.reference
|
2011-10-14 02:16:28 +00:00
|
|
|
logger.info("CampaignFormView paypal: Error " + str(t.reference))
|
2011-10-14 14:42:33 +00:00
|
|
|
return HttpResponse(response)
|
2011-10-25 01:29:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
class GoodreadsDisplayView(TemplateView):
|
|
|
|
template_name = "goodreads_display.html"
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
context = super(GoodreadsDisplayView, self).get_context_data(**kwargs)
|
|
|
|
|
|
|
|
goodreads_attribs = ["goodreads_userid", "goodreads_username", "goodreads_isauthorized", "goodreads_userlink"]
|
|
|
|
# for this round, I will use the Session to hold the Goodreads profile info
|
|
|
|
session = self.request.session
|
|
|
|
|
|
|
|
# load up context with this info even though the template can directly access the session.
|
|
|
|
# down the road, we won't store the goodreads user info in the session.
|
|
|
|
|
|
|
|
for attrib in goodreads_attribs:
|
|
|
|
context[attrib] = session.get(attrib, None)
|
|
|
|
|
|
|
|
# a Goodreads user shouldn't have to authorize us to get certain functionality
|
|
|
|
# if we don't know the Goodreads identity of user, offer to authenticate user to Goodreads and grab identity
|
|
|
|
gr_client = GoodreadsClient(key=settings.GOODREADS_API_KEY, secret=settings.GOODREADS_API_SECRET)
|
|
|
|
|
|
|
|
if session.get("goodreads_isauthorized") is None:
|
|
|
|
# calculate the Goodreads authorization URL
|
|
|
|
(context["goodreads_auth_url"], request_token) = gr_client.begin_authorization(self.request.build_absolute_uri(reverse('goodreads_cb')))
|
|
|
|
|
|
|
|
# store request token in session so that we can redeem it for auth_token if authorization works
|
|
|
|
session['goodreads_request_token'] = request_token['oauth_token']
|
|
|
|
session['goodreads_request_secret'] = request_token['oauth_token_secret']
|
|
|
|
|
2011-10-25 21:20:10 +00:00
|
|
|
# if we have a userid, grab info about the book shelves and books
|
2011-10-25 01:29:01 +00:00
|
|
|
if session.get("goodreads_userid") is not None:
|
|
|
|
context["shelves_info"] = gr_client.shelves_list(user_id=session["goodreads_userid"])
|
2011-10-25 23:07:44 +00:00
|
|
|
context["reviews"] = list(islice(gr_client.review_list(user_id=session["goodreads_userid"],per_page=50),50))
|
2011-10-25 21:20:10 +00:00
|
|
|
|
|
|
|
# also, now grab the books on the user's shelves
|
2011-10-25 01:29:01 +00:00
|
|
|
|
|
|
|
return context
|
|
|
|
|
|
|
|
def goodreads_cb(request):
|
|
|
|
# handle callback from Goodreads
|
|
|
|
# how to check that Goodreads is saying it's a go?
|
|
|
|
session = request.session
|
|
|
|
authorized_flag = request.GET['authorize'] # is it '1'?
|
|
|
|
request_oauth_token = request.GET['oauth_token']
|
|
|
|
|
|
|
|
# compare what Goodreads sends back in terms of a request_token vs what is stored in session
|
|
|
|
if authorized_flag == '1':
|
|
|
|
request_token = {'oauth_token': session.get('goodreads_request_token'),
|
|
|
|
'oauth_token_secret': session.get('goodreads_request_secret')}
|
|
|
|
gr_client = GoodreadsClient(key=settings.GOODREADS_API_KEY, secret=settings.GOODREADS_API_SECRET)
|
|
|
|
|
|
|
|
access_token = gr_client.complete_authorization(request_token)
|
|
|
|
|
|
|
|
# store the access token in the session
|
|
|
|
session["goodreads_access_token"] = access_token["oauth_token"]
|
|
|
|
session["goodreads_access_secret"] = access_token["oauth_token_secret"]
|
|
|
|
session["goodreads_isauthorized"] = True
|
|
|
|
|
|
|
|
# delete old request tokens in the session
|
|
|
|
del session['goodreads_request_token']
|
|
|
|
del session['goodreads_request_secret']
|
|
|
|
|
|
|
|
# let's get the userid, username
|
|
|
|
user = gr_client.auth_user()
|
|
|
|
session["goodreads_userid"] = user["userid"]
|
|
|
|
session["goodreads_username"] = user["name"]
|
|
|
|
session["goodreads_userlink"] = user["link"]
|
|
|
|
|
|
|
|
# redirect to the Goodreads display page -- should observe some next later
|
|
|
|
return HttpResponseRedirect(reverse('goodreads_display'))
|
|
|
|
|
|
|
|
def goodreads_flush_session(request):
|
|
|
|
request.session.flush()
|
|
|
|
return HttpResponse("Your session has been flushed. Go back to <a href='%s'>goodreads display</a>"
|
|
|
|
% (reverse('goodreads_display')))
|
|
|
|
|