mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-05-24 02:02:23 -04:00
* Chore(deps-dev): Bump the development group with 2 updates Bumps the development group with 2 updates: [ruff](https://github.com/astral-sh/ruff) and [mkdocs-material](https://github.com/squidfunk/mkdocs-material). Updates `ruff` from 0.8.6 to 0.9.2 - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](https://github.com/astral-sh/ruff/compare/0.8.6...0.9.2) Updates `mkdocs-material` from 9.5.49 to 9.5.50 - [Release notes](https://github.com/squidfunk/mkdocs-material/releases) - [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG) - [Commits](https://github.com/squidfunk/mkdocs-material/compare/9.5.49...9.5.50) --- updated-dependencies: - dependency-name: ruff dependency-type: direct:development update-type: version-update:semver-minor dependency-group: development - dependency-name: mkdocs-material dependency-type: direct:development update-type: version-update:semver-patch dependency-group: development ... Signed-off-by: dependabot[bot] <support@github.com> * Update .pre-commit-config.yaml * Run new ruff format --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com>
94 lines
3.1 KiB
Python
94 lines
3.1 KiB
Python
from pathlib import Path
|
|
|
|
from django.conf import settings
|
|
from django.core.management.base import BaseCommand
|
|
from django.core.management.base import CommandError
|
|
|
|
from documents.models import Document
|
|
from paperless.db import GnuPG
|
|
|
|
|
|
class Command(BaseCommand):
|
|
help = (
|
|
"This is how you migrate your stored documents from an encrypted "
|
|
"state to an unencrypted one (or vice-versa)"
|
|
)
|
|
|
|
def add_arguments(self, parser) -> None:
|
|
parser.add_argument(
|
|
"--passphrase",
|
|
help=(
|
|
"If PAPERLESS_PASSPHRASE isn't set already, you need to specify it here"
|
|
),
|
|
)
|
|
|
|
def handle(self, *args, **options) -> None:
|
|
try:
|
|
self.stdout.write(
|
|
self.style.WARNING(
|
|
"\n\n"
|
|
"WARNING: This script is going to work directly on your "
|
|
"document originals, so\n"
|
|
"WARNING: you probably shouldn't run "
|
|
"this unless you've got a recent backup\n"
|
|
"WARNING: handy. It "
|
|
"*should* work without a hitch, but be safe and backup your\n"
|
|
"WARNING: stuff first.\n\n"
|
|
"Hit Ctrl+C to exit now, or Enter to "
|
|
"continue.\n\n",
|
|
),
|
|
)
|
|
_ = input()
|
|
except KeyboardInterrupt:
|
|
return
|
|
|
|
passphrase = options["passphrase"] or settings.PASSPHRASE
|
|
if not passphrase:
|
|
raise CommandError(
|
|
"Passphrase not defined. Please set it with --passphrase or "
|
|
"by declaring it in your environment or your config.",
|
|
)
|
|
|
|
self.__gpg_to_unencrypted(passphrase)
|
|
|
|
def __gpg_to_unencrypted(self, passphrase: str) -> None:
|
|
encrypted_files = Document.objects.filter(
|
|
storage_type=Document.STORAGE_TYPE_GPG,
|
|
)
|
|
|
|
for document in encrypted_files:
|
|
self.stdout.write(f"Decrypting {document}")
|
|
|
|
old_paths = [document.source_path, document.thumbnail_path]
|
|
|
|
with document.source_file as file_handle:
|
|
raw_document = GnuPG.decrypted(file_handle, passphrase)
|
|
with document.thumbnail_file as file_handle:
|
|
raw_thumb = GnuPG.decrypted(file_handle, passphrase)
|
|
|
|
document.storage_type = Document.STORAGE_TYPE_UNENCRYPTED
|
|
|
|
ext: str = Path(document.filename).suffix
|
|
|
|
if not ext == ".gpg":
|
|
raise CommandError(
|
|
f"Abort: encrypted file {document.source_path} does not "
|
|
f"end with .gpg",
|
|
)
|
|
|
|
document.filename = Path(document.filename).stem
|
|
|
|
with document.source_path.open("wb") as f:
|
|
f.write(raw_document)
|
|
|
|
with document.thumbnail_path.open("wb") as f:
|
|
f.write(raw_thumb)
|
|
|
|
Document.objects.filter(id=document.id).update(
|
|
storage_type=document.storage_type,
|
|
filename=document.filename,
|
|
)
|
|
|
|
for path in old_paths:
|
|
path.unlink()
|