Ben Sturmfels
5fa226284b
This middleware is mostly redundant: * redirecting to canonical URLs can be done more simply in Apache * appending a forward slash is a default in CommonMiddleware now * we're no longer using Squid cache May need to update Apache to strip/redirect trailing "index.html".
21 lines
604 B
Python
21 lines
604 B
Python
from datetime import datetime as DateTime
|
|
|
|
from .fundgoal.models import FundraisingGoal
|
|
|
|
SITE_FUNDGOAL = 'cy2023-end-year-match'
|
|
|
|
def fundgoal_lookup(fundraiser_sought):
|
|
try:
|
|
return FundraisingGoal.objects.get(fundraiser_code_name=fundraiser_sought)
|
|
except FundraisingGoal.DoesNotExist:
|
|
# we have no object! do something
|
|
return None
|
|
|
|
def sitefundraiser(request):
|
|
return {
|
|
'datetime_now': DateTime.now(),
|
|
'sitefundgoal': fundgoal_lookup(SITE_FUNDGOAL),
|
|
}
|
|
|
|
def host_url(request):
|
|
return {'host_url': request.build_absolute_uri('/').rstrip('/')}
|