Installation and Usage#
Install using pip
.
$ python -m pip install dj-hitcount
If you want, you may install it from the source, grab the source code and run setup.py
.
$ git clone git://github.com/abhiabhi94/dj-hitcount.git
$ cd dj-hitcount
$ python setup.py install
Add dj-hitcount
to your INSTALLED_APPS
:
# settings.py
INSTALLED_APPS = (
...
'hitcount'
)
View the additional settings section for a list of the available settings that can be configured.
For a working implementation, you can view the example project on Github.
Counting Hits#
The main business-logic for evaluating and counting a Hit is done in hitcount.mixins.HitCountViewMixin.hit_count()
. You can use this static method directly in your own Views or you can use one of the Views packaged with this app.
HitCountJSONView: a JavaScript implementation which moves the business-logic to an Ajax View and hopefully speeds up page load times and eliminates some bot-traffic
HitCountDetailView: which provides a wrapper from Django’s generic
DetailView
and allows you to process the Hit as the view is loaded
HitCountMixin#
This mixin can be used in your own class-based views or you can call the hit_count()
method directly. The method takes two arguments, a HttpRequest
and HitCount
object it will return a namedtuple: UpdateHitCountResponse(hit_counted=Boolean, hit_message='Message')
.
hit_counted
will be True
if the hit was counted and False
otherwise. hit_message
will indicate by what means the Hit was either counted or ignored.
It works like this.
from hitcount.models import HitCount
from hitcount.mixins import HitCountViewMixin
# first get the related HitCount object for your model object
hit_count = HitCount.objects.get_for_object(your_model_object)
# next, you can attempt to count a hit and get the response
# you need to pass it the request object as well
hit_count_response = HitCountViewMixin.hit_count(request, hit_count)
# your response could look like this:
# UpdateHitCountResponse(hit_counted=True, hit_message='Hit counted: session key')
# UpdateHitCountResponse(hit_counted=False, hit_message='Not counted: session key has active hit')
To see this in action see the views.py code.
HitCountJSONView#
The hitcount.views.HitCountJSONView
can be used to handle an AJAX POST request. Dj-hitcount comes with a bundled jQuery plugin for speeding up the $.post
process by handling the retrieval of the CSRF token for you.
If you wish to use the HitCountJSONView
in your project you first need to update your urls.py
file to include the following:
# urls.py
from django.urls import path
urlpatterns = [
...
path('hitcount/', include('hitcount.urls', namespace='hitcount')),
]
Next, you will need to add the JavaScript Ajax request to your template. To do this, use the {% get_hit_count_js_variables for post as [var_name] %}
template tag to get the ajax_url
and hitcount_pk
for your object. The hitcount_pk
is needed for POST-ing to the HitCountJSONView
.
Here is an example of how all this might work together with the bundled jQuery plugin. It is taken from the example project and the jQuery can be modified to suit your needs. In the example below it simply updates the template with the HitCountJSONView
response after the Ajax call is complete.
{% load staticfiles %}
<script src="{% static 'hitcount/jquery.postcsrf.js' %}"></script>
{% load hitcount_tags %}
{% get_hit_count_js_variables for post as hitcount %}
<script type="text/javascript">
jQuery(document).ready(function($) {
// use the template tags in our JavaScript call
$.postCSRF("{{ hitcount.ajax_url }}", { hitcountPK : "{{ hitcount.pk }}" })
.done(function(data){
$('<i />').text(data.hit_counted).attr('id','hit-counted-value').appendTo('#hit-counted');
$('#hit-response').text(data.hit_message);
}).fail(function(data){
console.log('POST failed');
console.log(data);
});
});
</script>
HitCountDetailView#
The HitCountDetailView
can be used to do the business-logic of counting the hits by setting count_hit=True
. See the views section for more information about what else is added to the template context with this view.
Here is an example implementation from the example project:
from hitcount.views import HitCountDetailView
class PostCountHitDetailView(HitCountDetailView):
model = Post # your model goes here
count_hit = True # set to True if you want it to try and count the hit
Note
Unlike the JavaScript implementation (above), this View will do all the HitCount processing before the content is delivered to the user; if you have a large dataset of Hits or exclusions, this could slow down page load times. It will also be triggered by web crawlers and other bots that may not have otherwise executed the JavaScript.
Displaying Hits#
There are different methods for displaying hits:
Template Tags: provide a robust way to get related counts.
Views: allows you to wrap a class-based view and inject additional context into your template.
Models: can have a generic relation to their respective
HitCount
.
Views#
The hitcount.views.HitCountDetailView
extends Django’s generic DetailView
and injects an additional context variable hitcount
.
{# the primary key for the hitcount object #}
{{ hitcount.pk }}
{# the total hits for the object #}
{{ hitcount.total_hits }}
If you have set count_hit=True
(see: HitCountDetailView) two additional variables will be set.
{# whether or not the hit for this request was counted (true/false) #}
{{ hitcount.hit_counted }}
{# the message form the UpdateHitCountResponse #}
{{ hitcount.hit_message }}