Corrects the functionality of the webp conversion script

This commit is contained in:
Trenton Holmes 2022-06-10 08:56:25 -07:00
parent 153d0bb12a
commit 34192349be
3 changed files with 67 additions and 38 deletions

View File

@ -2,7 +2,19 @@
set -eu set -eu
for command in document_archiver document_exporter document_importer mail_fetcher document_create_classifier document_index document_renamer document_retagger document_thumbnails document_sanity_checker manage_superuser; for command in convert_thumbnails \
decrypt_documents \
document_archiver \
document_exporter \
document_importer \
mail_fetcher \
document_create_classifier \
document_index \
document_renamer \
document_retagger \
document_thumbnails \
document_sanity_checker \
manage_superuser;
do do
echo "installing $command..." echo "installing $command..."
sed "s/management_command/$command/g" management_script.sh > /usr/local/bin/$command sed "s/management_command/$command/g" management_script.sh > /usr/local/bin/$command

View File

@ -30,47 +30,65 @@ class Command(BaseCommand):
documents = Document.objects.all() documents = Document.objects.all()
for document in documents: with tempfile.TemporaryDirectory() as tempdir:
existing_thumbnail = Path(document.thumbnail_path)
if existing_thumbnail.suffix == "png": for document in documents:
existing_thumbnail = Path(document.thumbnail_path).resolve()
self.stdout.write(f"Converting thumbnail: {existing_thumbnail}") if existing_thumbnail.suffix == ".png":
converted_thumbnail = Path(tempfile.mkstemp(suffix=".webp")) self.stdout.write(f"Converting thumbnail: {existing_thumbnail}")
try: # Change the existing filename suffix from png to webp
run_convert( converted_thumbnail_name = existing_thumbnail.with_suffix(
density=300, ".webp",
scale="500x5000>", ).name
alpha="remove",
strip=True,
trim=False,
auto_orient=True,
input_file=f"{existing_thumbnail}[0]",
output_file=str(converted_thumbnail),
)
self.stdout.write("Replacing existing thumbnail") # Create the expected output filename in the tempdir
converted_thumbnail = (
Path(tempdir) / Path(converted_thumbnail_name)
).resolve()
if converted_thumbnail.exists(): try:
shutil.copy(converted_thumbnail, existing_thumbnail) # Run actual conversion
run_convert(
density=300,
scale="500x5000>",
alpha="remove",
strip=True,
trim=False,
auto_orient=True,
input_file=f"{existing_thumbnail}[0]",
output_file=str(converted_thumbnail),
)
self.stdout.write( if converted_thumbnail.exists():
self.style.SUCCESS("Conversion to WebP completed"), # Copy newly created thumbnail to thumbnail directory
) shutil.copy(converted_thumbnail, existing_thumbnail.parent)
except Exception as e: # Remove the PNG version
self.stderr.write( existing_thumbnail.unlink()
self.style.ERROR(
f"Error converting thumbnail (existing will be kept): {e}",
),
)
finally:
if converted_thumbnail.exists():
converted_thumbnail.unlink()
end = time.time() self.stdout.write(
duration = end - start self.style.SUCCESS(
"Conversion to WebP completed",
),
)
else:
# Highly unlike to reach here
self.stderr.write(
self.style.WARNING("Converted thumbnail doesn't exist"),
)
except Exception as e:
self.stderr.write(
self.style.ERROR(
f"Error converting thumbnail"
f" (existing file unchanged): {e}",
),
)
end = time.time()
duration = end - start
self.stdout.write(f"Conversion completed in {duration:.3f}s") self.stdout.write(f"Conversion completed in {duration:.3f}s")

View File

@ -305,10 +305,9 @@ class Document(models.Model):
# Hence why this looks a little weird # Hence why this looks a little weird
webp_file_path = os.path.join(settings.THUMBNAIL_DIR, webp_file_name) webp_file_path = os.path.join(settings.THUMBNAIL_DIR, webp_file_name)
png_file_path = thumb = os.path.join(settings.THUMBNAIL_DIR, png_file_name) png_file_path = os.path.join(settings.THUMBNAIL_DIR, png_file_name)
# 1. Assume the thumbnail is WebP # 1. Assume the thumbnail is WebP
if not os.path.exists(webp_file_path): if not os.path.exists(webp_file_path):
# 2. If WebP doesn't exist, check PNG # 2. If WebP doesn't exist, check PNG
if not os.path.exists(png_file_path): if not os.path.exists(png_file_path):
@ -316,11 +315,11 @@ class Document(models.Model):
thumb = webp_file_path thumb = webp_file_path
else: else:
# 2.1 - PNG file exists, return path to it # 2.1 - PNG file exists, return path to it
thumb = png_file_name thumb = png_file_path
else: else:
# 1.1 - WebP file exists, return path to it # 1.1 - WebP file exists, return path to it
thumb = webp_file_path thumb = webp_file_path
return thumb return os.path.normpath(thumb)
@property @property
def thumbnail_file(self): def thumbnail_file(self):