SmoothGlue GuC2 File Uploader: a Django app providing secure, pluggable uploads to S3, MinIO, or local storage with validation, checksums, and post-processing. Built for regulated and edge environments from the ground up.
Project description
SmoothGlue Django File Uploader
A Django app providing secure, pluggable uploads to S3, MinIO, or local storage with validation, checksums, and post-processing. Built for regulated and edge environments from the ground up.
Overview
smoothglue_file_uploader simplifies the process of handling file uploads in a Django project. The core problem it solves is abstracting the storage backend, allowing developers to switch between local development, staging, and production environments without changing application code. You can configure it once in settings.py and have your file uploads seamlessly route to the correct storage solution.
Key Features
- Multiple Storage Backends: Natively supports Local Filesystem, Amazon S3, and MinIO.
- Easy Configuration: A single settings dictionary to control all storage options.
- On-the-fly Validation: Allows custom configurations to validate files prior to them being uploaded.
- Pluggable Permissions: Customize access control for document operations (
get,patch,delete) by providing your own permission class. - Ease of Access: Easily upload, download, delete or duplicate files in any supported files stores.
Installation
Prerequisites
- Python 3.12+
- Django 4.2+
- Django REST Framework 3.14+
Install App From PyPI Package (Official Use)
-
Before installing the package, make sure that there is a virtual environment set up inside of the Django project you want to install the app into.
-
Use pip and the following command inside the Django project:
pip install smoothglue_file_uploader
-
Update the
settings.pyfile inside that Django project to point to the new app name:INSTALLED_APPS = [ "smoothglue.file_uploader", ..., ]
-
Update the
urls.pyfile inside that Django project to point to the new app name: :from smoothglue.file_uploader.urls import urlpatterns urlpatterns = [ path("", include(urlpatterns)), ..., ]
-
Run the development server to confirm the project continues to work.
Examples
Usage Examples
Download
storage_provider, _ = get_storage_provider()
doc = Document.objects.get(id=instance.id)
data = storage_provider.download_document(doc.path)
Upload
storage_provider, _ = get_storage_provider()
path = "foo/bar"
storage_provider.upload_document(path, file_obj)
Delete
storage_provider, _ = get_storage_provider()
doc = Document.objects.get(id=instance.id)
storage_provider.delete_document(doc.path)
Duplicate
storage_provider, _ = get_storage_provider()
old_doc = Document.objects.get(id=instance.id)
new_uuid = str(uuid.uuid4())
new_path = f"path/{new_uuid}"
duplicate_success = storage_provider.duplicate_document(old_doc.path, new_path)
API Examples
| URL Path | HTTP Method | Description |
|---|---|---|
/ |
GET |
Lists documents. A reference_id (UUID) must be provided as a query parameter to retrieve all files associated with that ID. |
/ |
POST |
Uploads a new file. The request must be a multipart form containing a file and a reference_id. |
/<uuid:file_id>/ |
GET |
Downloads the content of the specified file. Access is controlled by the DOCUMENT_PERMISSION_CLASS. |
/<uuid:file_id>/ |
PATCH |
Updates the metadata of the specified file. Access is controlled by the DOCUMENT_PERMISSION_CLASS. |
/<uuid:file_id>/ |
DELETE |
Archives or deletes the specified file. Access is controlled by the DOCUMENT_PERMISSION_CLASS. |
Settings Example
UPLOAD_STORAGE_PROVIDER_CONFIG = {
"minio": {
"PROVIDER_CLASS": "smoothglue.file_uploader.storage_providers.minio.MinioProvider",
"PROVIDER_CONFIG": {
"ACCESS_KEY": os.getenv("ACCESS_KEY"),
"HOST": os.getenv("HOST"),
"PORT": int(os.getenv("MINIO_PORT")),
"SECRET_KEY": os.getenv("SECRET_KEY"),
"SECURE": True if os.getenv("MINIO_PROTOCOL") == "https" else False,
"BUCKET_NAME": os.getenv("BUCKET_NAME"),
"REGION": os.getenv("REGION"),
},
},
"s3-sts-web-id": {
"PROVIDER_CLASS": "smoothglue.file_uploader.storage_providers.s3.STSWebIdentityS3Provider",
"PROVIDER_CONFIG": {
"ROLE_ARN": os.getenv("ROLE_ARN", None),
"WEB_IDENTITY_TOKEN_FILE": os.getenv("WEB_IDENTITY_TOKEN_FILE", None),
"BUCKET_NAME": os.getenv("BUCKET_NAME", None),
},
},
"local": {
"PROVIDER_CLASS": "smoothglue.file_uploader.storage_providers.local.LocalFileSystemProvider",
"PROVIDER_CONFIG": {},
},
}
SELECTED_STORAGE_PROVIDER = os.getenv("DEFAULT_STORAGE_PROVIDER")
UPLOAD_STORAGE_PROVIDER_CONFIG["default"] = UPLOAD_STORAGE_PROVIDER_CONFIG[
SELECTED_STORAGE_PROVIDER
]
Settings Overview
UPLOAD_STORAGE_PROVIDER_CONFIG
This setting defines the configurations for the storage providers. smoothglue.file_uploader uses smoothglue.file_uploader.storage_providers.base.StorageProvider as an interface for interacting with different storage backends. Each provider may have its own required settings in PROVIDER_CONFIG.
The "default" key specifies the storage provider to use for all file uploads unless a different key is specified.
Required Keys for smoothglue.file_uploader.storage_providers.s3.BaseS3StorageProvider:
"BUCKET_NAME": The S3 bucket to store uploaded files in.
Required Keys for smoothglue.file_uploader.storage_providers.s3.STSS3Provider:
"ROLE_ARN": The IAM role for the credentials used to access S3."BUCKET_NAME": The S3 bucket to store uploaded files in.
Required Keys for smoothglue.file_uploader.storage_providers.s3.STSWebIdentityS3Provider:
"ROLE_ARN": The IAM role for the credentials used to access S3."WEB_IDENTITY_TOKEN_FILE": The path to the identity token file."BUCKET_NAME": The S3 bucket to store uploaded files in.
Required Keys for smoothglue.file_uploader.storage_providers.minio.MinioProvider:
"ACCESS_KEY": The access key for the MinIO user."HOST": The hostname or IP address of the MinIO server."PORT": (Optional) The port the MinIO service listens on if different from the default."SECRET_KEY": The secret key for the MinIO user."SECURE":Trueif MinIO uses SSL,Falseotherwise."BUCKET_NAME": The MinIO bucket to store uploaded files in.
UPLOAD_POST_PROCESSORS
A dictionary mapping file extensions to post-processor classes. These classes are executed after a file has been successfully uploaded to the configured storage provider.
"*": Applies to all uploaded files."txt": Applies only to files with a.txtextension.
UPLOAD_VALIDATORS
A dictionary mapping file extensions to file validator classes. These classes are executed before a file is uploaded and can raise a ValidationError (resulting in a 400 response) to prevent the upload.
"*": Applies to all uploaded files."txt": Applies only to files with a.txtextension.
DEFAULT_TO_SOFT_DELETE
A boolean that determines whether to perform a soft delete (archive) or a hard delete when a DELETE request is made. When set to True, the file's is_archived flag is set to True, and the file remains in the storage backend. When False, the file is permanently deleted from both the database and the storage backend. The default value is True.
DOCUMENT_PERMISSION_CLASS
A string representing the import path to a custom permission class that controls access to individual documents. This class is used in the DocumentView for get, patch, and delete operations. The default is 'smoothglue.file_uploader.permissions.DefaultDocumentPermission', which allows all access.
To implement custom logic, create a class that inherits from smoothglue.file_uploader.permissions.BaseDocumentPermission and implement the has_permission method.
Example Custom Permission Class:
# myapp/permissions.py
from smoothglue.file_uploader.permissions import BaseDocumentPermission
class StaffOnlyPermission(BaseDocumentPermission):
def has_permission(self, request, view, document) -> bool:
# Only allow staff users to access documents
return request.user.is_staff
In your settings.py:
DOCUMENT_PERMISSION_CLASS = "myapp.permissions.StaffOnlyPermission"
Local File System Storage Provider
Used for running a simple upload to the file system. Defaults go to the Django MEDIA_ROOT configuration, otherwise you can specify the location using UPLOAD_PATH in the config.
UPLOAD_STORAGE_PROVIDER_CONFIG = {
"default": {
"PROVIDER_CLASS": "smoothglue.file_uploader.storage_providers.local.LocalFileSystemProvider",
"PROVIDER_CONFIG": {"UPLOAD_PATH": "/tmp/uploaded_files"}
},
...
}
Optional File Checksum validation
# calculate sha256 file checksum and inserts it to the db. May cause performance issue for large file uploads
CALCULATE_CHECKSUM: bool = True
# Enforce checksum validation if an existing file with the same checksum exist in the document table.
UPLOAD_VALIDATORS={
"*": "smoothglue.file_uploader.validators.DuplicateFileValidator"
}
License
This project is licensed under a Proprietary License. See the LICENSE file for more details.
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 smoothglue_file_uploader-1.1.0.tar.gz.
File metadata
- Download URL: smoothglue_file_uploader-1.1.0.tar.gz
- Upload date:
- Size: 32.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.3 CPython/3.12.11 Linux/4.18.0-553.97.1.el8_10.x86_64
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1282232bd4ef9a7e35c1db9f8717a19748dad3ad0cd23523e741b572210d5eb6
|
|
| MD5 |
ae8697f65cf5cdef571ed01ba9e150ca
|
|
| BLAKE2b-256 |
d379a1aaec94a2efdf52667c8245899bb5c615adbfa482a71c30af8a88d867b3
|
File details
Details for the file smoothglue_file_uploader-1.1.0-py3-none-any.whl.
File metadata
- Download URL: smoothglue_file_uploader-1.1.0-py3-none-any.whl
- Upload date:
- Size: 30.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.3 CPython/3.12.11 Linux/4.18.0-553.97.1.el8_10.x86_64
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c92814df6049b0b51ec9abcf2c8a904e15253aeec1f07db190bcaee0253658d6
|
|
| MD5 |
7c41b8b5397223681952b84a3335a239
|
|
| BLAKE2b-256 |
5a5be011f802bf5a05103f69cd596f315b803d33183fe12bfff96f2d7114f7b6
|