mirror of
https://github.com/pretix/pretix.git
synced 2026-08-11 10:57:00 +00:00
150 lines
5.8 KiB
Python
150 lines
5.8 KiB
Python
#
|
|
# This file is part of pretix (Community Edition).
|
|
#
|
|
# Copyright (C) 2014-2020 Raphael Michel and contributors
|
|
# Copyright (C) 2020-today pretix GmbH and contributors
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General
|
|
# Public License as published by the Free Software Foundation in version 3 of the License.
|
|
#
|
|
# ADDITIONAL TERMS APPLY: Pursuant to Section 7 of the GNU Affero General Public License, additional terms are
|
|
# applicable granting you additional permissions and placing additional restrictions on your usage of this software.
|
|
# Please refer to the pretix LICENSE file to obtain the full terms applicable to this work. If you did not receive
|
|
# this file, see <https://pretix.eu/about/en/license>.
|
|
#
|
|
# This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
|
# details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License along with this program. If not, see
|
|
# <https://www.gnu.org/licenses/>.
|
|
#
|
|
import logging
|
|
import re
|
|
import unicodedata
|
|
|
|
from arabic_reshaper import ArabicReshaper
|
|
from bidi import get_display
|
|
from django.conf import settings
|
|
from django.utils.functional import SimpleLazyObject
|
|
from django.utils.html import escape
|
|
from PIL import Image
|
|
from reportlab.lib.styles import ParagraphStyle
|
|
from reportlab.lib.utils import ImageReader
|
|
from reportlab.pdfbase import pdfmetrics
|
|
from reportlab.pdfbase.ttfonts import TTFont
|
|
from reportlab.platypus import Paragraph
|
|
|
|
from pretix.presale.style import get_fonts
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class ThumbnailingImageReader(ImageReader):
|
|
def resize(self, width, height, dpi):
|
|
if width is None:
|
|
width = height * self._image.size[0] / self._image.size[1]
|
|
if height is None:
|
|
height = width * self._image.size[1] / self._image.size[0]
|
|
self._image.thumbnail(
|
|
size=(int(width * dpi / 72), int(height * dpi / 72)),
|
|
resample=Image.Resampling.BICUBIC
|
|
)
|
|
self._data = None
|
|
return width, height
|
|
|
|
def remove_transparency(self, background_color="WHITE"):
|
|
if "A" in self._image.mode:
|
|
new_image = Image.new("RGBA", self._image.size, background_color)
|
|
new_image.paste(self._image, mask=self._image)
|
|
self._image = new_image.convert("RGB")
|
|
|
|
def _jpeg_fh(self):
|
|
# Bypass a reportlab-internal optimization that falls back to the original
|
|
# file handle if the file is a JPEG, and therefore does not respect the
|
|
# (smaller) size of the modified image.
|
|
return None
|
|
|
|
def _read_image(self, fp):
|
|
return Image.open(fp, formats=settings.PILLOW_FORMATS_IMAGE)
|
|
|
|
|
|
reshaper = SimpleLazyObject(lambda: ArabicReshaper(configuration={
|
|
'delete_harakat': True,
|
|
'support_ligatures': False,
|
|
}))
|
|
|
|
|
|
def normalize_text(text: str) -> str:
|
|
# reportlab does not support unicode combination characters
|
|
# It's important we do this before we use ArabicReshaper
|
|
text = unicodedata.normalize("NFKC", text)
|
|
|
|
# reportlab does not support RTL, ligature-heavy scripts like Arabic. Therefore, we use ArabicReshaper
|
|
# to resolve all ligatures and python-bidi to switch RTL texts.
|
|
try:
|
|
text = "\n".join(get_display(reshaper.reshape(l)) for l in re.split("\n", text))
|
|
except:
|
|
logger.exception('Reshaping/Bidi fixes failed on string {}'.format(repr(text)))
|
|
return text
|
|
|
|
|
|
class FontFallbackParagraph(Paragraph):
|
|
def __init__(self, text, style=None, *args, **kwargs):
|
|
if style is None:
|
|
style = ParagraphStyle(name='paragraphImplicitDefaultStyle')
|
|
|
|
if not self._font_supports_text(text, style.fontName):
|
|
newFont = self._find_font(text, style.fontName)
|
|
if newFont:
|
|
logger.debug(f"replacing {style.fontName} with {newFont} for {text!r}")
|
|
style = style.clone(name=style.name + '_' + newFont, fontName=newFont)
|
|
|
|
super().__init__(text, style, *args, **kwargs)
|
|
|
|
def _font_supports_text(self, text, font_name):
|
|
if not text:
|
|
return True
|
|
font = pdfmetrics.getFont(font_name)
|
|
if not isinstance(font, TTFont):
|
|
return True
|
|
return all(
|
|
ord(c) in font.face.charToGlyph or not c.isprintable()
|
|
for c in text
|
|
)
|
|
|
|
def _find_font(self, text, original_font):
|
|
for family, styles in get_fonts(pdf_support_required=True).items():
|
|
if self._font_supports_text(text, family):
|
|
if (original_font.endswith("It") or original_font.endswith(" I")) and "italic" in styles:
|
|
return family + " I"
|
|
if (original_font.endswith("Bd") or original_font.endswith(" B")) and "bold" in styles:
|
|
return family + " B"
|
|
return family
|
|
|
|
|
|
class PlainTextParagraph(FontFallbackParagraph):
|
|
def __init__(self, text, style=None, linebreaks=True, *args, **kwargs):
|
|
if not isinstance(text, str):
|
|
if hasattr(text, '__html__'):
|
|
raise ValueError("It is contradictory to pass escaped content to PlainTextParagraph")
|
|
text = str(text)
|
|
|
|
# Normalize unicode and apply reshaping
|
|
text = normalize_text(text)
|
|
|
|
# Escape any HTML in the text
|
|
text = escape(text)
|
|
|
|
if linebreaks:
|
|
text = text.strip().replace("\n", "<br />\n")
|
|
super().__init__(text, style, *args, **kwargs)
|
|
|
|
|
|
def register_ttf_font_if_new(name, path):
|
|
from reportlab.pdfbase import pdfmetrics
|
|
from reportlab.pdfbase.ttfonts import TTFont
|
|
|
|
if name not in pdfmetrics.getRegisteredFontNames():
|
|
pdfmetrics.registerFont(TTFont(name, path))
|