mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
delete option for exporter, short options, tests
This commit is contained in:
parent
72616def4f
commit
b9725437d9
@ -31,7 +31,7 @@ class Command(Renderable, BaseCommand):
|
|||||||
parser.add_argument("target")
|
parser.add_argument("target")
|
||||||
|
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--compare-checksums",
|
"-c", "--compare-checksums",
|
||||||
default=False,
|
default=False,
|
||||||
action="store_true",
|
action="store_true",
|
||||||
help="Compare file checksums when determining whether to export "
|
help="Compare file checksums when determining whether to export "
|
||||||
@ -40,13 +40,22 @@ class Command(Renderable, BaseCommand):
|
|||||||
)
|
)
|
||||||
|
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--use-filename-format",
|
"-f", "--use-filename-format",
|
||||||
default=False,
|
default=False,
|
||||||
action="store_true",
|
action="store_true",
|
||||||
help="Use PAPERLESS_FILENAME_FORMAT for storing files in the "
|
help="Use PAPERLESS_FILENAME_FORMAT for storing files in the "
|
||||||
"export directory, if configured."
|
"export directory, if configured."
|
||||||
)
|
)
|
||||||
|
|
||||||
|
parser.add_argument(
|
||||||
|
"-d", "--delete",
|
||||||
|
default=False,
|
||||||
|
action="store_true",
|
||||||
|
help="After exporting, delete files in the export directory that "
|
||||||
|
"do not belong to the current export, such as files from "
|
||||||
|
"deleted documents."
|
||||||
|
)
|
||||||
|
|
||||||
def __init__(self, *args, **kwargs):
|
def __init__(self, *args, **kwargs):
|
||||||
BaseCommand.__init__(self, *args, **kwargs)
|
BaseCommand.__init__(self, *args, **kwargs)
|
||||||
self.target = None
|
self.target = None
|
||||||
@ -54,12 +63,14 @@ class Command(Renderable, BaseCommand):
|
|||||||
self.exported_files = []
|
self.exported_files = []
|
||||||
self.compare_checksums = False
|
self.compare_checksums = False
|
||||||
self.use_filename_format = False
|
self.use_filename_format = False
|
||||||
|
self.delete = False
|
||||||
|
|
||||||
def handle(self, *args, **options):
|
def handle(self, *args, **options):
|
||||||
|
|
||||||
self.target = options["target"]
|
self.target = options["target"]
|
||||||
self.compare_checksums = options['compare_checksums']
|
self.compare_checksums = options['compare_checksums']
|
||||||
self.use_filename_format = options['use_filename_format']
|
self.use_filename_format = options['use_filename_format']
|
||||||
|
self.delete = options['delete']
|
||||||
|
|
||||||
if not os.path.exists(self.target):
|
if not os.path.exists(self.target):
|
||||||
raise CommandError("That path doesn't exist")
|
raise CommandError("That path doesn't exist")
|
||||||
@ -176,15 +187,17 @@ class Command(Renderable, BaseCommand):
|
|||||||
with open(manifest_path, "w") as f:
|
with open(manifest_path, "w") as f:
|
||||||
json.dump(manifest, f, indent=2)
|
json.dump(manifest, f, indent=2)
|
||||||
|
|
||||||
if manifest_path in self.files_in_export_dir:
|
if self.delete:
|
||||||
self.files_in_export_dir.remove(manifest_path)
|
# 5. Remove files which we did not explicitly export in this run
|
||||||
|
|
||||||
# 5. Remove files which we did not explicitly export in this run
|
if manifest_path in self.files_in_export_dir:
|
||||||
for f in self.files_in_export_dir:
|
self.files_in_export_dir.remove(manifest_path)
|
||||||
os.remove(f)
|
|
||||||
|
|
||||||
delete_empty_directories(os.path.abspath(os.path.dirname(f)),
|
for f in self.files_in_export_dir:
|
||||||
os.path.abspath(self.target))
|
os.remove(f)
|
||||||
|
|
||||||
|
delete_empty_directories(os.path.abspath(os.path.dirname(f)),
|
||||||
|
os.path.abspath(self.target))
|
||||||
|
|
||||||
def check_and_copy(self, source, source_checksum, target):
|
def check_and_copy(self, source, source_checksum, target):
|
||||||
if os.path.abspath(target) in self.files_in_export_dir:
|
if os.path.abspath(target) in self.files_in_export_dir:
|
||||||
|
@ -47,12 +47,14 @@ class TestExportImport(DirectoriesMixin, TestCase):
|
|||||||
@override_settings(
|
@override_settings(
|
||||||
PASSPHRASE="test"
|
PASSPHRASE="test"
|
||||||
)
|
)
|
||||||
def _do_export(self, use_filename_format=False, compare_checksums=False):
|
def _do_export(self, use_filename_format=False, compare_checksums=False, delete=False):
|
||||||
args = ['document_exporter', self.target]
|
args = ['document_exporter', self.target]
|
||||||
if use_filename_format:
|
if use_filename_format:
|
||||||
args += ["--use-filename-format"]
|
args += ["--use-filename-format"]
|
||||||
if compare_checksums:
|
if compare_checksums:
|
||||||
args += ["--compare-checksums"]
|
args += ["--compare-checksums"]
|
||||||
|
if delete:
|
||||||
|
args += ["--delete"]
|
||||||
|
|
||||||
call_command(*args)
|
call_command(*args)
|
||||||
|
|
||||||
@ -182,8 +184,11 @@ class TestExportImport(DirectoriesMixin, TestCase):
|
|||||||
self.assertTrue(os.path.isfile(os.path.join(self.target, doc_from_manifest[EXPORTER_FILE_NAME])))
|
self.assertTrue(os.path.isfile(os.path.join(self.target, doc_from_manifest[EXPORTER_FILE_NAME])))
|
||||||
self.d3.delete()
|
self.d3.delete()
|
||||||
|
|
||||||
manifest2 = self._do_export()
|
manifest = self._do_export()
|
||||||
self.assertRaises(ValueError, self._get_document_from_manifest, manifest, self.d3.id)
|
self.assertRaises(ValueError, self._get_document_from_manifest, manifest, self.d3.id)
|
||||||
|
self.assertTrue(os.path.isfile(os.path.join(self.target, doc_from_manifest[EXPORTER_FILE_NAME])))
|
||||||
|
|
||||||
|
manifest = self._do_export(delete=True)
|
||||||
self.assertFalse(os.path.isfile(os.path.join(self.target, doc_from_manifest[EXPORTER_FILE_NAME])))
|
self.assertFalse(os.path.isfile(os.path.join(self.target, doc_from_manifest[EXPORTER_FILE_NAME])))
|
||||||
|
|
||||||
self.assertTrue(len(manifest), 6)
|
self.assertTrue(len(manifest), 6)
|
||||||
@ -200,11 +205,13 @@ class TestExportImport(DirectoriesMixin, TestCase):
|
|||||||
|
|
||||||
self.d1.title = "new_title"
|
self.d1.title = "new_title"
|
||||||
self.d1.save()
|
self.d1.save()
|
||||||
self._do_export(use_filename_format=True)
|
self._do_export(use_filename_format=True, delete=True)
|
||||||
self.assertFalse(os.path.isfile(os.path.join(self.target, "wow1", "c.pdf")))
|
self.assertFalse(os.path.isfile(os.path.join(self.target, "wow1", "c.pdf")))
|
||||||
self.assertFalse(os.path.isdir(os.path.join(self.target, "wow1")))
|
self.assertFalse(os.path.isdir(os.path.join(self.target, "wow1")))
|
||||||
self.assertTrue(os.path.isfile(os.path.join(self.target, "new_title", "c.pdf")))
|
self.assertTrue(os.path.isfile(os.path.join(self.target, "new_title", "c.pdf")))
|
||||||
self.assertTrue(os.path.exists(os.path.join(self.target, "manifest.json")))
|
self.assertTrue(os.path.exists(os.path.join(self.target, "manifest.json")))
|
||||||
|
self.assertTrue(os.path.isfile(os.path.join(self.target, "wow2", "none.pdf")))
|
||||||
|
self.assertTrue(os.path.isfile(os.path.join(self.target, "wow2", "none_01.pdf")))
|
||||||
|
|
||||||
def test_export_missing_files(self):
|
def test_export_missing_files(self):
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user