From a79a0ca302edc5f1248e2ffe1a094c564eb61da2 Mon Sep 17 00:00:00 2001 From: Wolf-Bastian Poettner Date: Fri, 27 Dec 2019 14:13:25 +0000 Subject: [PATCH] Added tool to rename all documents according to the lastest filename format --- .../management/commands/document_renamer.py | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/documents/management/commands/document_renamer.py diff --git a/src/documents/management/commands/document_renamer.py b/src/documents/management/commands/document_renamer.py new file mode 100644 index 000000000..d7d77a111 --- /dev/null +++ b/src/documents/management/commands/document_renamer.py @@ -0,0 +1,24 @@ +from django.core.management.base import BaseCommand + +from documents.models import Document, Tag + +from ...mixins import Renderable + + +class Command(Renderable, BaseCommand): + + help = """ + This will rename all documents to match the latest filename format. + """.replace(" ", "") + + def __init__(self, *args, **kwargs): + self.verbosity = 0 + BaseCommand.__init__(self, *args, **kwargs) + + def handle(self, *args, **options): + + self.verbosity = options["verbosity"] + + for document in Document.objects.all(): + # Saving the document again will generate a new filename and rename + document.save()