Skip to main content

Downloads for Jmbo.

Project description

Jmbo Downloads User Guide

Jmbo Downloads allows you to easily create and serve downloadable content on your Jmbo sites. Files are uploaded via the admin interface, or generated per request, and served by your webserver. These downloads can then be tracked - Jmbo Downloads, by default, tracks the total downloads for each item.

To add or modify downloadable content, navigate to Downloads in the admin interface. A basic download lets you specify the file to be downloaded and, optionally, a file name to serve the file with. Users can view all downloads by navigating to www.yoursite.com/downloads.

Installation

  1. Add downloads to INSTALLED_APPS.

  2. Run manage.py migrate downloads (requires South).

  3. If you are using Nginx:
    • Define an internal location at MEDIA_URL/downloads/(.*) in your site’s Nginx config.

    • Set its alias to MEDIA_ROOT/downloads/$1.

    • If you are using Jmbo with buildout, add this to the appropriate buildout template.

  4. If you are using another webserver you will have to specify the internal redirection header by putting DOWNLOAD_INTERNAL_REDIRECT_HEADER in your settings.

  5. If files are hosted remotely set DOWNLOAD_SERVE_FROM to ‘REMOTE’. The client will be redirected to the remote location.

Requirements

  • Django 1.3 and above

  • Jmbo and all its requirements

  • South

Other features (the fun stuff)

Generated files

You might want to serve a file that is generated on the fly, for example a PDF with the user’s details in it. You can do this by subclassing models.TemporaryDownloadAbstract. The child class must implement the function def create_file(self, file_path, request). Generate your file in this function and save it at file_path (it includes the file name). You can use the request object to access the user object and query string parameters.

You can optionally specify a file name and extension by overriding def make_file_name(self, request). Call the superclass function and provide the extension argument to get a UUID + extension as the file name. Otherwise return your own unique file name. Keep in mind that the file will only be served with its on-disk name if the model’s file name field is empty. If the field has been specified, all generated files are served with the specified file name.

Only one implementation of models.TemporaryDownloadAbstract is included with Jmbo Downloads: models.TextOverlayTemporaryDownload. This download takes a background image, draws some text on it and saves it as a JPEG.

Note that all generated files are generated upon request and stored in MEDIA_ROOT/downloads/tmp/. You need to clear out this folder periodically to avoid running out of disk space.

Tracking downloads

If you would like to track more than just the number of downloads (or view count) per item you can implement a receiver for signals.download_requested. The signal will pass a download instance (as sender) and the request object to the receiver. This allows for stats like downloads by time of day and a user’s favourite download categories to be tracked. Authors =======

Praekelt Foundation

  • Rizmari Versfeld

Changelog

0.0.8

  1. Correct calculation of download URL, particularly for temporary downloads.

  2. Lots of PEP8 fixes.

0.0.7

  1. Temporary downloads adhere to DOWNLOAD_SERVE_FROM setting. They are always created on the local filesystem though. If ‘REMOTE’ is used the developer needs to sync these files with a remote filesystem.

0.0.6

  1. Add DOWNLOAD_INTERNAL_REDIRECT_HEADER setting (default ‘X-Accel-Redirect’) in case a webserver other than Nginx is used.

  2. Add DOWNLOAD_SERVE_FROM setting (default ‘LOCAL’) to specify whether to serve the files locally or redirect to a remote location.

0.0.5

  1. Fix bug where X-Accel-Redirect uses file name override instead of actual file name to serve download, causing a 404 if the file name and override don’t match.

0.0.4 (2012-06-21)

  1. South dependency on jmbo upped to 0002 migration.

0.0.3 (2012-06-15)

  1. Improve templates to better render download categories.

  2. Override Jmbo’s PermittedManager to exclude invisible downloads from querysets.

  3. Make ImageMod more generic and rename it to TemporaryDownloadAbstract.

  4. Send signal when a download is requested, allowing other apps to track downloads.

  5. Miscellaneous small fixes.

0.0.2

  1. Add everything to manifest for PyPI release.

0.0.1 (2012-05-28)

  1. Initial release.

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

jmbo-downloads-0.0.8.tar.gz (24.3 kB view hashes)

Uploaded Source

Built Distribution

jmbo_downloads-0.0.8-py2.7.egg (49.9 kB view hashes)

Uploaded Source

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