Django 1.6 and some cleaning.
[wolnelektury.git] / apps / stats / utils.py
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.
4 #
5 from django.contrib.sites.models import Site
6 from django.conf import settings
7 from datetime import datetime
8 import logging
9 from functools import update_wrapper
10 import urllib
11 from random import random
12 from inspect import isclass
13 from .tasks import track_request
14
15 logger = logging.getLogger(__name__)
16
17
18 def piwik_url(request):
19     return urllib.urlencode(dict(
20         idsite=getattr(settings, 'PIWIK_SITE_ID', '0'),
21         rec=1,
22         url='http://%s%s' % (request.META['HTTP_HOST'], request.path),
23         rand=int(random() * 0x10000),
24         apiv=PIWIK_API_VERSION,
25         urlref=request.META.get('HTTP_REFERER', ''),
26         ua=request.META.get('HTTP_USER_AGENT', ''),
27         lang=request.META.get('HTTP_ACCEPT_LANGUAGE', ''),
28         token_auth=getattr(settings, 'PIWIK_TOKEN', ''),
29         cip=request.META['REMOTE_ADDR'],
30         cdt=datetime.utcnow().strftime("%Y-%m-%d %H:%M:%S")
31     ))
32
33 PIWIK_API_VERSION = 1
34
35
36 def piwik_track(klass_or_method):
37     """Track decorated class or method using Piwik (according to configuration in settings and django-piwik)
38     Works for handler classes (executed by __call__) or handler methods. Expects request to be the first parameter
39     """
40     if not getattr(settings, 'PIWIK_SITE_ID', 0):
41         return klass_or_method
42
43     # get target method
44     if isclass(klass_or_method):
45         klass = klass_or_method
46         call_func = klass.__call__
47     else:
48         call_func = klass_or_method
49
50     def wrap(self, request, *args, **kw):
51         track_request.delay(piwik_url(request))
52         return call_func(self, request, *args, **kw)
53
54     # and wrap it
55     update_wrapper(wrap, call_func)
56
57     if isclass(klass_or_method):
58         klass.__call__ = wrap
59         return klass
60     else:
61         return wrap