mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Use FileInfo directly instead of via indirection
This commit is contained in:
parent
1f75af0137
commit
95217e8e21
@ -256,24 +256,20 @@ class Consumer(object):
|
|||||||
# Strip out excess white space to allow matching to go smoother
|
# Strip out excess white space to allow matching to go smoother
|
||||||
return re.sub(r"\s+", " ", r)
|
return re.sub(r"\s+", " ", r)
|
||||||
|
|
||||||
def _guess_attributes_from_name(self, parseable):
|
|
||||||
file_info = FileInfo.from_path(parseable)
|
|
||||||
return file_info.sender, file_info.title, file_info.tags, file_info.suffix
|
|
||||||
|
|
||||||
def _store(self, text, doc, thumbnail):
|
def _store(self, text, doc, thumbnail):
|
||||||
|
|
||||||
sender, title, tags, file_type = self._guess_attributes_from_name(doc)
|
file_info = FileInfo.from_path(doc)
|
||||||
relevant_tags = set(list(Tag.match_all(text)) + list(tags))
|
relevant_tags = set(list(Tag.match_all(text)) + list(file_info.tags))
|
||||||
|
|
||||||
stats = os.stat(doc)
|
stats = os.stat(doc)
|
||||||
|
|
||||||
self.log("debug", "Saving record to database")
|
self.log("debug", "Saving record to database")
|
||||||
|
|
||||||
document = Document.objects.create(
|
document = Document.objects.create(
|
||||||
correspondent=sender,
|
correspondent=file_info.correspondent,
|
||||||
title=title,
|
title=file_info.title,
|
||||||
content=text,
|
content=text,
|
||||||
file_type=file_type,
|
file_type=file_info.suffix,
|
||||||
created=timezone.make_aware(
|
created=timezone.make_aware(
|
||||||
datetime.datetime.fromtimestamp(stats.st_mtime)),
|
datetime.datetime.fromtimestamp(stats.st_mtime)),
|
||||||
modified=timezone.make_aware(
|
modified=timezone.make_aware(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user