Use FileInfo directly instead of via indirection

This commit is contained in:
Tikitu de Jager 2016-03-07 21:08:07 +02:00
parent 1f75af0137
commit 95217e8e21

View File

@ -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(