Files @ 9b48cc94e651
Branch filter:

Location: website/www/conservancy/apps/fundgoal/views.py

Bradley M. Kuhn
Continuing saga of the sizing chart problems for original shirts

Gildan removed the sizing chart entirely from their website again
after yet another redesign. Originally, we deep-linked into files in
their CDN for the charts, but it appears that in 5c72071 that I
introduced cut-and-paste error on the sizing charts. I cannot find
the original links, but finally I simply decided we'd mirror the
files in our CDN, which is where these now link to.

I suspect that I didn't do this to start for worrying about copyright
infringement, but upon second thought, I think it's very reasonably
fair use for us to distribute these images. We bought a lot of
t-shirts from Gildan and just trying to sell through.
from conservancy.apps.fundgoal.models import FundraisingGoal
from django.shortcuts import get_object_or_404, render_to_response
from django.template import RequestContext
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' ]
    GET = request.GET
    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:
            if hasattr(fundGoal, kk):
                returnDict[codeName][kk] = getattr(fundGoal, kk)

    return JsonResponse( returnDict)