From ad23cce2e6f79d470c3a3e45d538d81adf108b3f Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Sun, 27 Oct 2024 18:51:07 -0700 Subject: [PATCH] Handle a special case where the none marker exists in a way which could create an absolute path (#8060) --- src/documents/file_handling.py | 1 + src/documents/tests/test_file_handling.py | 16 +++++++++++++--- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/src/documents/file_handling.py b/src/documents/file_handling.py index 6d02bf684..4198ecabb 100644 --- a/src/documents/file_handling.py +++ b/src/documents/file_handling.py @@ -111,6 +111,7 @@ def generate_filename( rendered_filename = rendered_filename.replace("/-none-/", "/") rendered_filename = rendered_filename.replace(" -none-", "") rendered_filename = rendered_filename.replace("-none-", "") + rendered_filename = rendered_filename.strip(os.sep) rendered_filename = rendered_filename.replace( "-none-", diff --git a/src/documents/tests/test_file_handling.py b/src/documents/tests/test_file_handling.py index 037e47f06..e942b4daa 100644 --- a/src/documents/tests/test_file_handling.py +++ b/src/documents/tests/test_file_handling.py @@ -960,18 +960,28 @@ class TestFilenameGeneration(DirectoriesMixin, TestCase): - the generated filename uses the defined storage path for the document - the generated filename does not include "none" in the place undefined field """ + sp = StoragePath.objects.create( + path="TestFolder/{{asn}}/{{created}}", + ) doc = Document.objects.create( title="does not matter", created=timezone.make_aware(datetime.datetime(2020, 6, 25, 7, 36, 51, 153)), mime_type="application/pdf", pk=2, checksum="2", - storage_path=StoragePath.objects.create( - path="TestFolder/{{asn}}/{{created}}", - ), + storage_path=sp, ) self.assertEqual(generate_filename(doc), "TestFolder/2020-06-25.pdf") + # Special case, undefined variable, then defined at the start of the template + # This could lead to an absolute path after we remove the leading -none-, but leave the leading / + # -none-/2020/ -> /2020/ + sp.path = ( + "{{ owner_username }}/{{ created_year }}/{{ correspondent }}/{{ title }}" + ) + sp.save() + self.assertEqual(generate_filename(doc), "2020/does not matter.pdf") + def test_multiple_doc_paths(self): """ GIVEN: