Last active
February 7, 2022 09:34
-
-
Save zerolab/75323b449efa28a5ea4031d97b6a2ff4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# myapp/management/commands/fix_alias_page_first_last_published.py | |
from django.core.management.base import BaseCommand | |
from django.db.models import Q | |
from wagtail.core.models import Page | |
class Command(BaseCommand): | |
def handle(self, **options): | |
aliases_without_first_last_published = ( | |
Page.objects | |
.filter(alias_of__isnull=False) | |
.filter(Q(alias_of__first_published_at__isnull=False) | Q(alias_of__last_published_at__isnull=False)) | |
.select_related('alias_of') | |
) | |
found = aliases_without_first_last_published.count() | |
if not found: | |
return self.stdout.write(self.style.WARNING("Found no alias pages to update")) | |
self.stdout.write(f"Found {found} alias page(s) to update") | |
for alias in aliases_without_first_last_published: | |
alias.first_published_at = alias.alias_of.first_published_at | |
alias.last_published_at = alias.alias_of.last_published_at | |
alias.save() | |
self.stdout.write(f'Updated "{alias.title}" ({alias.pk})') | |
self.stdout.write(self.style.SUCCESS("Done!")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment