No project description provided
Project description
wagtailpurge
Trigger cache purges from within the Wagtail CMS. The app is tested for compatibility with:
- Django >= 3.2
- Wagtail >= 2.16
Get started
- Install this app with
pip install wagtailpurge - Add
wagtailpurgeto yourINSTALLED_APPS - From the shell, run
python manage.py migrate wagtailpurgeto create the necessary database tables - Log into Wagtail and look out for the Purge menu item :)
By default, only superusers can submit purge requests, but permissions for individual request types can easily be applied to your existing groups to make the functionality available to others.
What can I purge?
1. Django caches
Utilizes Django's low-level cache API to clear a cache from your project's CACHES setting value.
NOTE: This option is only available when CACHES contains at least one item.
2. Individual URLs
Utilizes Wagtail's wagtail.contrib.frontend_cache app to purge a single URL of your choosing from a CDN or downstream cache. The URL can be anything from a page URL to a harcoded Django view URL, or even a URL completely out of the app's control (as long as it's on a domain managed by the same CDN / downstream cache account).
NOTE: This option is only available when wagtail.contrib.frontend_cache is installed.
3. Wagtail page URLs
Utilizes Wagtail's wagtail.contrib.frontend_cache app to purge selected page URLs from a CDN or downstream cache. You can easily purge sections of the tree by choosing to purge children or descendants of the selected page.
NOTE: This option is only available when wagtail.contrib.frontend_cache is installed.
4. Wagtail image renditions
Deletes all existing renditions for a Wagtail image (or images) of your choosing.
If the wagtail.contrib.frontend_cache app is installed, purge requests will also be sent to your CDN or downstream cache for the URL of each rendition, allowing the users to download freshly generated ones.
5. Custom purge requests
If you want to purge something else, it's possible to add your own model class with the fields and functionality you need. The only requirements are that you use BasePurgeRequest as a base, and that you add a process() method to handle the actual 'purging' of each request.
Here is an example:
# myproject/purge/models.py
from django.db import models
from django.forms.widgets import RadioSelect
from wagtailcache.models import BasePurgeRequest
from .utils import purge_chimp
class NaughtinessCategoryChoices(models.TextChoices):
BITING = "biting", "Biting"
SCRATCHING = "scratching", "Scratching"
TOMFOOLERY = "tomfoolery", "General tomfoolery"
class NaughtyChimpPurgeRequest(BasePurgeRequest):
# Add custom fields
name = models.CharField(
max_length=100,
help_text="e.g. Peanuts",
)
category = models.CharField(
max_length=30,
choices=NaughtinessCategoryChoices.choices
)
# Add panels to show custom fields in the submit form
panels = (
FieldPanel("name"),
FieldPanel("category", widget=RadioSelect())
)
# Optionally override the menu label and icon
purge_menu_label = "Naughty chimp"
purge_menu_icon = "warning"
# Optionally add columns to the listing
list_display_extra = ["name", "category", "custom_method"]
# Optionally add filter options to the listing
list_filter_extra = ["category"]
def process(self) -> None:
"""
Implements 'handling' for this purge request. The method doesn't need to
return anything, and any exceptions raised here will be logged
automatically.
"""
purge_chimp(self.name, self.category)
def custom_method(self) -> str:
"""
Include non-field columns in the listing by adding a model
method to return what you need, and including the method name
in `list_display_extra`.
"""
return "BANANA!"
Once you have defined your custom model:
- Ensure the app with the updated
models.py(e.g."myproject.purge") is included in your project'sINSTALLED_APPSsetting. - From the shell, run
python manage.py makemigrations appnameto create database migrations for your app. - From the shell, run
python manage.py migrateto apply the migration to your database. - Log into Wagtail and look out for your new option in the Purge menu :)
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
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 wagtailpurge-1.0.tar.gz.
File metadata
- Download URL: wagtailpurge-1.0.tar.gz
- Upload date:
- Size: 18.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d4ca94d678c28118cc5405770399e2e727cced461dea5397d5664f488ec9f832
|
|
| MD5 |
f53b31cad2c46205aefc45ddb5d224ad
|
|
| BLAKE2b-256 |
b79707f7333f46b87ac832cc88724804a091b9b66e3a117db790624a49b940ce
|
File details
Details for the file wagtailpurge-1.0-py2.py3-none-any.whl.
File metadata
- Download URL: wagtailpurge-1.0-py2.py3-none-any.whl
- Upload date:
- Size: 21.3 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d2ab510d51e2d3dd1935a60255a387b699bc7551914917a5ffa54348ec0b6fcb
|
|
| MD5 |
34d7ca421a1b4a8d0c1fbc81baf5512c
|
|
| BLAKE2b-256 |
1ba903030e19fb36f6bd52b87c10f4062ea234017ea02471e963e90a33f2c1e2
|