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
Add downloads to INSTALLED_APPS.
Run manage.py migrate downloads (requires South).
- 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.
If you are using another webserver you will have to specify the internal redirection header by putting DOWNLOAD_INTERNAL_REDIRECT_HEADER in your settings.
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
2.0.2
Remove explicit jmbo version pin.
2.0.1
Guard against deletion error where database and filesystem is out of synch.
2.0.0
Stabilize on jmbo 2.0.0.
2.0.0a1
Get tests to pass again.
Django 1.6 support.
Up minimum jmbo to 2.0.0.
0.0.8
Correct calculation of download URL, particularly for temporary downloads.
Lots of PEP8 fixes.
0.0.7
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
Add DOWNLOAD_INTERNAL_REDIRECT_HEADER setting (default ‘X-Accel-Redirect’) in case a webserver other than Nginx is used.
Add DOWNLOAD_SERVE_FROM setting (default ‘LOCAL’) to specify whether to serve the files locally or redirect to a remote location.
0.0.5
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)
South dependency on jmbo upped to 0002 migration.
0.0.3 (2012-06-15)
Improve templates to better render download categories.
Override Jmbo’s PermittedManager to exclude invisible downloads from querysets.
Make ImageMod more generic and rename it to TemporaryDownloadAbstract.
Send signal when a download is requested, allowing other apps to track downloads.
Miscellaneous small fixes.
0.0.2
Add everything to manifest for PyPI release.
0.0.1 (2012-05-28)
Initial release.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file jmbo-downloads-2.0.2.tar.gz
.
File metadata
- Download URL: jmbo-downloads-2.0.2.tar.gz
- Upload date:
- Size: 17.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5a4d0122cb65c3ed4305660e4750dcc3147d74b41932df42fadaa2604d006e12 |
|
MD5 | cf1e7637ee41fed5948d785e5c9bcab9 |
|
BLAKE2b-256 | 902303af166c484a8e0ea9bcb0eb97f200a9be4c8fb69c6c8efdae1e012dc6d8 |
File details
Details for the file jmbo_downloads-2.0.2-py2.7.egg
.
File metadata
- Download URL: jmbo_downloads-2.0.2-py2.7.egg
- Upload date:
- Size: 50.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 36d1cab9589624437ab90049c82f0a0041fae2481a453e42c13223a36dd375f4 |
|
MD5 | 911d8cad8a414e7986bb995f0c601b35 |
|
BLAKE2b-256 | dad41ceef96c901809c346d0e712ef00d9bf9a068b2f8b51912c368b5fdf767f |