1 # -*- coding: utf-8 -*-
2 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
3 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
5 from django.conf import settings
6 from datetime import datetime
8 from functools import update_wrapper
10 from random import random
11 from inspect import isclass
13 from django.utils.encoding import force_str
15 from .tasks import track_request
17 logger = logging.getLogger(__name__)
20 def piwik_url(request):
21 return urllib.urlencode(dict(
22 idsite=getattr(settings, 'PIWIK_SITE_ID', '0'),
24 url=force_str('http://%s%s' % (request.META['HTTP_HOST'], request.path)),
25 rand=int(random() * 0x10000),
26 apiv=PIWIK_API_VERSION,
27 urlref=force_str(request.META.get('HTTP_REFERER', '')),
28 ua=request.META.get('HTTP_USER_AGENT', ''),
29 lang=request.META.get('HTTP_ACCEPT_LANGUAGE', ''),
30 token_auth=getattr(settings, 'PIWIK_TOKEN', ''),
31 cip=request.META['REMOTE_ADDR'],
32 cdt=datetime.utcnow().strftime("%Y-%m-%d %H:%M:%S")
38 def piwik_track(klass_or_method):
39 """Track decorated class or method using Piwik (according to configuration in settings and django-piwik)
40 Works for handler classes (executed by __call__) or handler methods. Expects request to be the first parameter
42 if not getattr(settings, 'PIWIK_SITE_ID', 0):
43 return klass_or_method
46 if isclass(klass_or_method):
47 klass = klass_or_method
48 call_func = klass.__call__
50 call_func = klass_or_method
52 def wrap(self, request, *args, **kw):
53 if getattr(request, 'piwik_track', True):
54 track_request.delay(piwik_url(request))
55 return call_func(self, request, *args, **kw)
58 update_wrapper(wrap, call_func)
60 if isclass(klass_or_method):