Django view for AWS S3 signing
Project description
django-s3sign
s3 sign view for django
installation
$ pip install django-s3sign
usage
Add s3sign to INSTALLED_APPS. Subclass s3sign.views.SignS3View
and override as needed.
Attributes you can override (and their default values):
name_field = 's3_object_name'
type_field = 's3_object_type'
expiration_time = 10
mime_type_extensions = [
('bmp', '.bmp'),
('gif', '.gif'),
('jpeg', '.jpg'),
('pdf', '.pdf'),
('png', '.png'),
('svg', '.svg'),
('webp', '.webp'),
('heif', '.heif'),
('heic', '.heic'),
('avif', '.avif'),
]
default_extension = '.obj'
root = ''
path_string = (
"{root}{now.year:04d}/{now.month:02d}/"
"{now.day:02d}/{basename}{extension}")
acl = "public-read"
Methods you can override:
get_aws_access_key(self)get_aws_secret_key(self)get_bucket(self)get_mimetype(self, request)extension_from_mimetype(self, mime_type)now()# useful for unit testsnow_time()# useful for unit testsbasename()get_object_name(self, extension)
Most of those should be clear. Read the source if in doubt.
Eg to use a different root path:
from s3sign.views import SignS3View
...
class MySignS3View(LoggedInView, SignS3View):
root = 'uploads/'
With a different S3 bucket:
class MySignS3View(LoggedInView, SignS3View):
def get_bucket(self):
return settings.DIFFERENT_BUCKET_NAME
Keeping the uploaded filename instead of doing a random one and whitelisted extension:
class MySignS3View(LoggedInView, SignS3View):
def basename(self, request):
filename = request.GET[self.get_name_field()]
return os.path.basename(filename)
def extension(self, request):
filename = request.GET[self.get_name_field()]
return os.path.splitext(filename)[1]
javascript/forms
The required javascript is also included, so you can include it in your page with:
{% load static %}
<script src="{% static 's3sign/js/s3upload.js' %}"></script>
Your form would then somewhere have a bit like:
<form method="post">
<p id="status">
<strong>Please select a file</strong>
</p>
<input type="hidden" name="s3_url" id="uploaded-url" />
<input type="file" id="file" onchange="s3_upload();"/>
</form>
And
<script>
function s3_upload() {
var s3upload = new S3Upload({
file_dom_el: null, // Optional, and overrides file_dom_selector
// when present.
file_dom_selector: '#file',
s3_sign_put_url: '/sign_s3/', // change this if you route differently
s3_object_name: $('#file')[0].value,
onProgress: function(percent, message) {
$('#status').text('Upload progress: ' + percent + '% ' + message);
},
onFinishS3Put: function(url) {
$('#uploaded-url').val(url);
},
onError: function(status) {
$('#status').text('Upload error: ' + status);
}
});
}
</script>
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file django_s3sign-0.5.1.tar.gz.
File metadata
- Download URL: django_s3sign-0.5.1.tar.gz
- Upload date:
- Size: 33.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
33dde1b1c06e85c2ab352610bfc3b0ee9e48571255c4541922725135dcb615ca
|
|
| MD5 |
7c4b0ec1cf1345a4f2311d9907c89549
|
|
| BLAKE2b-256 |
e407980c3326564cf94ccdc6569a93e0e4faf428ba60c84afe8e54ce7c19dce4
|
File details
Details for the file django_s3sign-0.5.1-py3-none-any.whl.
File metadata
- Download URL: django_s3sign-0.5.1-py3-none-any.whl
- Upload date:
- Size: 41.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
22432dad0520afb5bea74655dea8b81f8f9db75767679ac9f9d3cbb1b40f50f6
|
|
| MD5 |
8b1bc0e4ec2797d4140125c0e885dd2a
|
|
| BLAKE2b-256 |
2ad66d9cc0a51020e748ac8733a23d28da2db66bbad08847d8e9d590b273b101
|