Skip to main content

Keep HTTP referer information on query parameter and display referer information

Project description

django-referer

django-referer is a Django app for displaying different referer details based on a customizable query parameter and keeping this query parameter while user navigates in the site. It provides sales, partners and affiliates custom links to send out in order to get private traffic. It gives sales, partners and affiliates their opportunity to convert every contact detail on the website to their own. It thus encourages sales, partners and affiliates to promote the website and the business. In addition, with the help of analytics scripts, traffic data can be easily distinguished and analyzed.

Demo

. URL with referer parameter

e.g. https://zhujia.com.au/?refer=14

django-referer Demo - Link with referer

(The chosen query parameter is kept by django-referer’s middleware while user navigates between links)

django-referer Demo 2 - Link with referer

. URL without referer parameter (falls back to the default referer)

e.g. https://zhujia.com.au

django-referer Demo - Link without referer django-referer Demo 2 - Link without referer

Installation

Use the package manager pip to install django-referer.

pip install django-referer

Usage

Step 1. Add referer middleware (in settings.py file)

MIDDLEWARE = [
    'referer.middleware.referer.RefererMiddleware',  # here
    'django.middleware.security.SecurityMiddleware',
    '...'
]

Step 2. Add referer context processor (in settings.py file)

TEMPLATES = [
    {
        'OPTIONS': {
            'context_processors': [
                '...',
                'django.contrib.messages.context_processors.messages',
                'referer.context_processors.referer',  # here
            ],
        },
    },
]

Step 3. Customize referer settings (in settings.py file) (optional)

The defaults are:

REFERER_LINK_PARAMETER = 'referer'
REFERER_DEFAULT_ID = 1
# -> ?referer=1

REFERER_MODEL_FROM = 'django.contrib.auth.models'
REFERER_MODEL_IMPORT = 'User'
# -> from REFERER_MODEL_FROM import REFERER_MODEL_IMPORT

REFERER_IGNORED_LINKS = []

Step 4. Display referer information (in .html file)

<a href="mailto:{{ referer.email }}">Email</a>
<p>{{ referer.first_name }} {{ referer.last_name }}</p>

Contributing

Issues and pull requests are welcomed.

License

MIT © Yifan Ai

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-referer-0.1.0.tar.gz (265.5 kB view details)

Uploaded Source

Built Distribution

django_referer-0.1.0-py3-none-any.whl (5.0 kB view details)

Uploaded Python 3

File details

Details for the file django-referer-0.1.0.tar.gz.

File metadata

  • Download URL: django-referer-0.1.0.tar.gz
  • Upload date:
  • Size: 265.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.5

File hashes

Hashes for django-referer-0.1.0.tar.gz
Algorithm Hash digest
SHA256 9c6bc1d25e0473d8a996ef02c13094b53334ece787760b0689c300a7d1e14c02
MD5 4e76af25c220a07e9125a7efb78a462f
BLAKE2b-256 a8e2abbce5e2ebde49061d1f248b1f4498bb139c07137439e182b7fd8538cad3

See more details on using hashes here.

File details

Details for the file django_referer-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: django_referer-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 5.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.5

File hashes

Hashes for django_referer-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 8fb5e9aa681081a968c4b560562775a5150e46d23abca365eb48eb4f4b9acc7c
MD5 861d3e5e005c0415d627193b048a0c6d
BLAKE2b-256 0cdb1df42d4cf1db96bc873ee16312ab1df2c0145815bd0e1e0be76c4a17266e

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page