This is a Django library to add support to Cloudflare Images to the ImageField.
It supports:
- Django 3
- Django 4
- Django 5
- Django 6
pip install django-cloudflare-imagesYou need to add the following your settings.py:
- If you are running Django 4.2+:
STORAGES = {"default": {"BACKEND": "cloudflare_images.storage.CloudflareImagesStorage"}}- Else:
DEFAULT_FILE_STORAGE = "cloudflare_images.storage.CloudflareImagesStorage"And then add the remaining of the configuration:
CLOUDFLARE_IMAGES_ACCOUNT_ID = "XXX"
CLOUDFLARE_IMAGES_API_TOKEN = "YYY"
CLOUDFLARE_IMAGES_ACCOUNT_HASH = "ZZZ"If you wish to use a default variant for a specific field you need to change your ImageField to a CloudflareImagesField see example below:
from cloudflare_images.field import CloudflareImagesField
from django.db import models
class MyModel(models.Model):
image = CloudflareImagesField(variant="custom")Please note that you will need to migrate your model(s) once you swapped the field(s). No SQL will actually be applied (you can check by running sqlmigrate <module> <number>).
If you wish to use a custom domain to serve your images you need to add the following to your settings.py:
CLOUDFLARE_IMAGES_DOMAIN = "example.com"If you wish to use a default variant other than "public" to serve your images you need to add the following to your settings.py:
CLOUDFLARE_IMAGES_VARIANT = "custom"If you wish to override the default timeout of 60 seconds for API requests, you need to add the following to your settings.py:
CLOUDFLARE_IMAGES_API_TIMEOUT = 120You can check if an image exists in Cloudflare Images using the storage's exists() method:
from django.core.files.storage import default_storage
if default_storage.exists("image_id"):
print("Image exists!")
else:
print("Image not found")Note: This method makes an HTTP API call to Cloudflare on every invocation. If you need to check many images, consider implementing your own caching layer to reduce API calls.
If you want to leverage Cloudflare's Direct Creator Upload (client side upload, similar to S3/Minio presigned URL concept), you need to do the following:
Modify your settings:
INSTALLED_APPS = [
"cloudflare_images",
]Modify your urls:
from cloudflare_images.views import WidgetAPI
# And add inside your router:
path("ext/cloudflare_images/api", WidgetAPI.as_view(), name="widget-api"),Please note that it is much safer to implement your own endpoint to retrieve the one time URL from cloudflare
You can override the endpoint to use like so:
CLOUDFLARE_IMAGES_UPLOAD_ENDPOINT = "/my/endpoint/api"Please refer to this file for the base implementation details
Modify/Add to your model:
from cloudflare_images.field import CloudflareImageIDField
# in your model:
image = CloudflareImageIDField(variant="test")If you are changing from a CloudflareImagesField, please note that you need to generate a migration (python manage.py makemigrations) and that this new field is not backward compatible in particular to access the .url field. To access your field's URL it is recommended to write a helper (or use a custom mixin) in your model like so:
from cloudflare_images.service import CloudflareImagesService
@property
def image_url(self) -> str | None:
if not self.image:
return None
service = CloudflareImagesService()
return service.get_url(self.image, "public") # or any variant that you wantModify your HTML template using a django form to load the JS/CSS:
{{ form.media.js }}
{{ form.media.css }}And you should be good to go. For basic troubleshooting, check your browser's console for hints or open a ticket.
Installing for development:
make installCleaning the installation:
make cleanFormat the code:
make formatCheck the code (for linting errors):
make checkCheck the code (python type checker):
make static-checkRunning all tests:
make testCreate a sdist+bdist package in dist/:
make package