mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
332 lines
10 KiB
Python
332 lines
10 KiB
Python
import logging
|
|
import os
|
|
import shutil
|
|
import tempfile
|
|
from dataclasses import dataclass
|
|
from functools import lru_cache
|
|
from pathlib import Path
|
|
from subprocess import run
|
|
from typing import Dict
|
|
from typing import List
|
|
from typing import Optional
|
|
|
|
import img2pdf
|
|
from django.conf import settings
|
|
from pdf2image import convert_from_path
|
|
from pdf2image.exceptions import PDFPageCountError
|
|
from pikepdf import Page
|
|
from pikepdf import Pdf
|
|
from PIL import Image
|
|
|
|
logger = logging.getLogger("paperless.barcodes")
|
|
|
|
|
|
class BarcodeImageFormatError(Exception):
|
|
pass
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class Barcode:
|
|
"""
|
|
Holds the information about a single barcode and its location
|
|
"""
|
|
|
|
page: int
|
|
value: str
|
|
|
|
@property
|
|
def is_separator(self) -> bool:
|
|
"""
|
|
Returns True if the barcode value equals the configured separation value,
|
|
False otherwise
|
|
"""
|
|
return self.value == settings.CONSUMER_BARCODE_STRING
|
|
|
|
@property
|
|
def is_asn(self) -> bool:
|
|
"""
|
|
Returns True if the barcode value matches the configured ASN prefix,
|
|
False otherwise
|
|
"""
|
|
return self.value.startswith(settings.CONSUMER_ASN_BARCODE_PREFIX)
|
|
|
|
|
|
@dataclass
|
|
class DocumentBarcodeInfo:
|
|
"""
|
|
Describes a single document's barcode status
|
|
"""
|
|
|
|
pdf_path: Path
|
|
barcodes: List[Barcode]
|
|
|
|
|
|
@lru_cache(maxsize=8)
|
|
def supported_file_type(mime_type: str) -> bool:
|
|
"""
|
|
Determines if the file is valid for barcode
|
|
processing, based on MIME type and settings
|
|
|
|
:return: True if the file is supported, False otherwise
|
|
"""
|
|
supported_mime = ["application/pdf"]
|
|
if settings.CONSUMER_BARCODE_TIFF_SUPPORT:
|
|
supported_mime += ["image/tiff"]
|
|
|
|
return mime_type in supported_mime
|
|
|
|
|
|
def barcode_reader(image: Image) -> List[str]:
|
|
"""
|
|
Read any barcodes contained in image
|
|
Returns a list containing all found barcodes
|
|
"""
|
|
barcodes = []
|
|
|
|
if settings.CONSUMER_BARCODE_SCANNER == "PYZBAR":
|
|
logger.debug("Scanning for barcodes using PYZBAR")
|
|
from pyzbar import pyzbar
|
|
|
|
# Decode the barcode image
|
|
detected_barcodes = pyzbar.decode(image)
|
|
|
|
if detected_barcodes:
|
|
# Traverse through all the detected barcodes in image
|
|
for barcode in detected_barcodes:
|
|
if barcode.data:
|
|
decoded_barcode = barcode.data.decode("utf-8")
|
|
barcodes.append(decoded_barcode)
|
|
logger.debug(
|
|
f"Barcode of type {str(barcode.type)} found: {decoded_barcode}",
|
|
)
|
|
elif settings.CONSUMER_BARCODE_SCANNER == "ZXING":
|
|
logger.debug("Scanning for barcodes using ZXING")
|
|
import zxingcpp
|
|
|
|
detected_barcodes = zxingcpp.read_barcodes(image)
|
|
for barcode in detected_barcodes:
|
|
if barcode.text:
|
|
barcodes.append(barcode.text)
|
|
logger.debug(
|
|
f"Barcode of type {str(barcode.format)} found: {barcode.text}",
|
|
)
|
|
|
|
return barcodes
|
|
|
|
|
|
def convert_from_tiff_to_pdf(filepath: Path) -> Path:
|
|
"""
|
|
converts a given TIFF image file to pdf into a temporary directory.
|
|
|
|
Returns the new pdf file.
|
|
"""
|
|
tempdir = tempfile.mkdtemp(prefix="paperless-", dir=settings.SCRATCH_DIR)
|
|
# use old file name with pdf extension
|
|
newpath = Path(tempdir) / Path(filepath.name).with_suffix(".pdf")
|
|
|
|
with Image.open(filepath) as im:
|
|
has_alpha_layer = im.mode in ("RGBA", "LA")
|
|
if has_alpha_layer:
|
|
run(
|
|
[
|
|
settings.CONVERT_BINARY,
|
|
"-alpha",
|
|
"off",
|
|
filepath,
|
|
filepath,
|
|
],
|
|
)
|
|
with filepath.open("rb") as img_file, newpath.open("wb") as pdf_file:
|
|
pdf_file.write(img2pdf.convert(img_file))
|
|
return newpath
|
|
|
|
|
|
def scan_file_for_barcodes(
|
|
filepath: Path,
|
|
mime_type: str,
|
|
) -> DocumentBarcodeInfo:
|
|
"""
|
|
Scan the provided pdf file for any barcodes
|
|
Returns a PDF filepath and a list of
|
|
(page_number, barcode_text) tuples
|
|
"""
|
|
|
|
def _pdf2image_barcode_scan(pdf_filepath: str) -> List[Barcode]:
|
|
detected_barcodes = []
|
|
# use a temporary directory in case the file is too big to handle in memory
|
|
with tempfile.TemporaryDirectory() as path:
|
|
pages_from_path = convert_from_path(
|
|
pdf_filepath,
|
|
dpi=300,
|
|
output_folder=path,
|
|
)
|
|
for current_page_number, page in enumerate(pages_from_path):
|
|
for barcode_value in barcode_reader(page):
|
|
detected_barcodes.append(
|
|
Barcode(current_page_number, barcode_value),
|
|
)
|
|
return detected_barcodes
|
|
|
|
pdf_filepath = None
|
|
barcodes = []
|
|
|
|
if supported_file_type(mime_type):
|
|
pdf_filepath = filepath
|
|
if mime_type == "image/tiff":
|
|
pdf_filepath = convert_from_tiff_to_pdf(filepath)
|
|
|
|
# Always try pikepdf first, it's usually fine, faster and
|
|
# uses less memory
|
|
try:
|
|
barcodes = _pdf2image_barcode_scan(pdf_filepath)
|
|
# Password protected files can't be checked
|
|
# This is the exception raised for those
|
|
except PDFPageCountError as e:
|
|
logger.warning(
|
|
f"File is likely password protected, not checking for barcodes: {e}",
|
|
)
|
|
# This file is really borked, allow the consumption to continue
|
|
# but it may fail further on
|
|
except Exception as e: # pragma: no cover
|
|
logger.warning(
|
|
f"Exception during barcode scanning: {e}",
|
|
)
|
|
else:
|
|
logger.warning(
|
|
f"Unsupported file format for barcode reader: {str(mime_type)}",
|
|
)
|
|
|
|
return DocumentBarcodeInfo(pdf_filepath, barcodes)
|
|
|
|
|
|
def get_separating_barcodes(barcodes: List[Barcode]) -> Dict[int, bool]:
|
|
"""
|
|
Search the parsed barcodes for separators
|
|
and returns a dict of page numbers, which
|
|
separate the file into new files, together
|
|
with the information whether to keep the page.
|
|
"""
|
|
# filter all barcodes for the separator string
|
|
# get the page numbers of the separating barcodes
|
|
separator_pages = {bc.page: False for bc in barcodes if bc.is_separator}
|
|
if not settings.CONSUMER_ENABLE_ASN_BARCODE:
|
|
return separator_pages
|
|
|
|
# add the page numbers of the ASN barcodes
|
|
# (except for first page, that might lead to infinite loops).
|
|
return {
|
|
**separator_pages,
|
|
**{bc.page: True for bc in barcodes if bc.is_asn and bc.page != 0},
|
|
}
|
|
|
|
|
|
def get_asn_from_barcodes(barcodes: List[Barcode]) -> Optional[int]:
|
|
"""
|
|
Search the parsed barcodes for any ASNs.
|
|
The first barcode that starts with CONSUMER_ASN_BARCODE_PREFIX
|
|
is considered the ASN to be used.
|
|
Returns the detected ASN (or None)
|
|
"""
|
|
asn = None
|
|
|
|
# get the first barcode that starts with CONSUMER_ASN_BARCODE_PREFIX
|
|
asn_text = next(
|
|
(x.value for x in barcodes if x.is_asn),
|
|
None,
|
|
)
|
|
|
|
if asn_text:
|
|
logger.debug(f"Found ASN Barcode: {asn_text}")
|
|
# remove the prefix and remove whitespace
|
|
asn_text = asn_text[len(settings.CONSUMER_ASN_BARCODE_PREFIX) :].strip()
|
|
|
|
# now, try parsing the ASN number
|
|
try:
|
|
asn = int(asn_text)
|
|
except ValueError as e:
|
|
logger.warning(f"Failed to parse ASN number because: {e}")
|
|
|
|
return asn
|
|
|
|
|
|
def separate_pages(filepath: Path, pages_to_split_on: Dict[int, bool]) -> List[Path]:
|
|
"""
|
|
Separate the provided pdf file on the pages_to_split_on.
|
|
The pages which are defined by the keys in page_numbers
|
|
will be removed if the corresponding value is false.
|
|
Returns a list of (temporary) filepaths to consume.
|
|
These will need to be deleted later.
|
|
"""
|
|
|
|
document_paths = []
|
|
|
|
if not pages_to_split_on:
|
|
logger.warning("No pages to split on!")
|
|
return document_paths
|
|
|
|
os.makedirs(settings.SCRATCH_DIR, exist_ok=True)
|
|
tempdir = Path(tempfile.mkdtemp(prefix="paperless-", dir=settings.SCRATCH_DIR))
|
|
fname = filepath.with_suffix("").name
|
|
pdf = Pdf.open(filepath)
|
|
|
|
# Start with an empty document
|
|
current_document: List[Page] = []
|
|
# A list of documents, ie a list of lists of pages
|
|
documents: List[List[Page]] = [current_document]
|
|
|
|
for idx, page in enumerate(pdf.pages):
|
|
# Keep building the new PDF as long as it is not a
|
|
# separator index
|
|
if idx not in pages_to_split_on:
|
|
current_document.append(page)
|
|
continue
|
|
|
|
# This is a split index
|
|
# Start a new destination page listing
|
|
logger.debug(f"Starting new document at idx {idx}")
|
|
current_document = []
|
|
documents.append(current_document)
|
|
keep_page = pages_to_split_on[idx]
|
|
if keep_page:
|
|
# Keep the page
|
|
# (new document is started by asn barcode)
|
|
current_document.append(page)
|
|
|
|
documents = [x for x in documents if len(x)]
|
|
|
|
logger.debug(f"Split into {len(documents)} new documents")
|
|
|
|
# Write the new documents out
|
|
for doc_idx, document in enumerate(documents):
|
|
dst = Pdf.new()
|
|
dst.pages.extend(document)
|
|
|
|
output_filename = f"{fname}_document_{doc_idx}.pdf"
|
|
|
|
logger.debug(f"pdf no:{doc_idx} has {len(dst.pages)} pages")
|
|
savepath = tempdir / output_filename
|
|
with open(savepath, "wb") as out:
|
|
dst.save(out)
|
|
document_paths.append(savepath)
|
|
|
|
return document_paths
|
|
|
|
|
|
def save_to_dir(
|
|
filepath: Path,
|
|
newname: str = None,
|
|
target_dir: Path = settings.CONSUMPTION_DIR,
|
|
):
|
|
"""
|
|
Copies filepath to target_dir.
|
|
Optionally rename the file.
|
|
"""
|
|
if filepath.is_file() and target_dir.is_dir():
|
|
dest = target_dir
|
|
if newname is not None:
|
|
dest = dest / newname
|
|
shutil.copy(filepath, dest)
|
|
logging.debug(f"saved {str(filepath)} to {str(dest)}")
|
|
else:
|
|
logger.warning(f"{str(filepath)} or {str(target_dir)} don't exist.")
|