mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
52 lines
1.2 KiB
Python
52 lines
1.2 KiB
Python
import logging
|
|
import shutil
|
|
import tempfile
|
|
|
|
from django.conf import settings
|
|
|
|
|
|
class ParseError(Exception):
|
|
pass
|
|
|
|
|
|
class DocumentParser(object):
|
|
"""
|
|
Subclass this to make your own parser. Have a look at
|
|
`paperless_tesseract.parsers` for inspiration.
|
|
"""
|
|
|
|
SCRATCH = settings.SCRATCH_DIR
|
|
|
|
def __init__(self, path):
|
|
self.document_path = path
|
|
self.tempdir = tempfile.mkdtemp(prefix="paperless", dir=self.SCRATCH)
|
|
self.logger = logging.getLogger(__name__)
|
|
self.logging_group = None
|
|
|
|
def get_thumbnail(self):
|
|
"""
|
|
Returns the path to a file we can use as a thumbnail for this document.
|
|
"""
|
|
raise NotImplementedError()
|
|
|
|
def get_text(self):
|
|
"""
|
|
Returns the text from the document and only the text.
|
|
"""
|
|
raise NotImplementedError()
|
|
|
|
def get_date(self):
|
|
"""
|
|
Returns the date of the document.
|
|
"""
|
|
raise NotImplementedError()
|
|
|
|
def log(self, level, message):
|
|
getattr(self.logger, level)(message, extra={
|
|
"group": self.logging_group
|
|
})
|
|
|
|
def cleanup(self):
|
|
self.log("debug", "Deleting directory {}".format(self.tempdir))
|
|
shutil.rmtree(self.tempdir)
|