website/conservancy/fundgoal/views.py

25 lines
783 B
Python
Raw Normal View History

from django.http import JsonResponse
from .models import FundraisingGoal
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-10 00:25:25 +00:00
GET = request.GET
2023-09-13 03:33:27 +00:00
codeNames = []
if 'code_name' in GET:
codeNames += GET.getlist('code_name')
returnDict = {}
for fundGoal in FundraisingGoal.objects.filter(fundraiser_code_name__in=codeNames):
codeName = fundGoal.fundraiser_code_name
returnDict[codeName] = {}
for kk in keysForJSON:
2015-05-10 00:34:49 +00:00
if hasattr(fundGoal, kk):
2015-05-10 00:33:51 +00:00
returnDict[codeName][kk] = getattr(fundGoal, kk)
return JsonResponse(returnDict)