Add utils app

This commit is contained in:
M.Ravi 2023-12-06 16:46:30 +05:30
commit 6a74124adf
24 changed files with 4235 additions and 0 deletions

31
utils/context_processor.py Executable file
View file

@ -0,0 +1,31 @@
from django.conf import settings
def google_analytics(request):
"""
Use the variables returned in this function to
render your Google Analytics tracking code template.
Also check whether the site is a tenant site and create a corresponding
variable to indicate this
"""
host = request.get_host()
ga_prop_id = getattr(settings, 'GOOGLE_ANALYTICS_PROPERTY_IDS', False).get(
host)
which_urlspy = settings.MULTISITE_CMS_URLS.get(host)
if ga_prop_id is None:
# Try checking if we have a www in host, if yes we remove
# that and check in the dict again
if host.startswith('www.'):
ga_prop_id = getattr(settings, 'GOOGLE_ANALYTICS_PROPERTY_IDS',
False).get(host[4:])
which_urlspy = settings.MULTISITE_CMS_URLS.get(host[4:])
return_dict = {}
if not settings.DEBUG and ga_prop_id:
return_dict['GOOGLE_ANALYTICS_PROPERTY_ID'] = ga_prop_id
if which_urlspy:
if which_urlspy.endswith("multi"):
return_dict['IS_TENANT_SITE'] = True
return return_dict