johnboxall / django-ab

A simple AB Testing app for Django!

This URL has Read+Write access

django-ab / middleware.py
100644 33 lines (27 sloc) 1.118 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
try:
    from threading import local
except ImportError:
    from django.utils._threading_local import local
 
from ab.abs import AB
from ab.models import Experiment
 
 
_thread_locals = local()
def get_current_request():
    return getattr(_thread_locals, 'request', None)
 
 
# @@@ This won't work with caching. Need to create an AB aware cache middleware.
class ABMiddleware:
    def process_request(self, request):
        """
Puts the request object in local thread storage so we can access it in
the template loader. If an Experiment is active then check whether we've
reached it's goal.
"""
        _thread_locals.request = request
        
        request.ab = AB(request)
        # request.ab.run()
        # If at least one Experiment is running then check if we're at a Goal
        # @@@ All this logic seems like it could be moved into the AB class. (but does it belong there?)
        if request.ab.is_active():
            exps = Experiment.objects.all()
            for exp in exps:
                if request.ab.is_converted(exp):
                    request.ab.convert(exp)