2015-03-08 17:54:05 -07:00
|
|
|
from conservancy.apps.fundgoal.models import FundraisingGoal
|
2015-03-08 17:40:24 -07:00
|
|
|
from django.shortcuts import get_object_or_404, render_to_response
|
2015-11-30 18:49:50 -08:00
|
|
|
from django.template import RequestContext
|
2015-05-09 16:50:32 -07:00
|
|
|
from django.http import JsonResponse
|
|
|
|
|
|
|
|
|
|
|
|
def view(request):
|
|
|
|
"""JSON version of request
|
|
|
|
"""
|
|
|
|
keysForJSON = [ 'fundraiser_goal_amount', 'fundraiser_so_far_amount', 'fundraiser_donation_count',
|
|
|
|
'fundraiser_donation_count_disclose_threshold' ]
|
2015-05-09 17:25:25 -07:00
|
|
|
GET = request.GET
|
2015-05-09 16:50:32 -07:00
|
|
|
codeNames = []
|
|
|
|
if 'code_name' in GET: codeNames += GET.getlist('code_name')
|
|
|
|
|
|
|
|
returnDict = {}
|
2015-05-09 17:31:47 -07:00
|
|
|
for fundGoal in FundraisingGoal.objects.filter(fundraiser_code_name__in=codeNames):
|
|
|
|
codeName = fundGoal.fundraiser_code_name
|
|
|
|
returnDict[codeName] = {}
|
2015-05-09 16:50:32 -07:00
|
|
|
for kk in keysForJSON:
|
2015-05-09 17:34:49 -07:00
|
|
|
if hasattr(fundGoal, kk):
|
2015-05-09 17:33:51 -07:00
|
|
|
returnDict[codeName][kk] = getattr(fundGoal, kk)
|
2015-05-09 17:29:08 -07:00
|
|
|
|
2015-05-09 16:50:32 -07:00
|
|
|
return JsonResponse( returnDict)
|