mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-10 16:48:31 +02:00
104 lines
3.6 KiB
Python
Executable file
104 lines
3.6 KiB
Python
Executable file
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
|
|
import re
|
|
import textwrap
|
|
from datetime import datetime
|
|
|
|
|
|
class Entry:
|
|
def __init__(self, journal, date=None, title="", body="", starred=False):
|
|
self.journal = journal # Reference to journal mainly to access it's config
|
|
self.date = date or datetime.now()
|
|
self.title = title.rstrip("\n ")
|
|
self.body = body.rstrip("\n ")
|
|
self.tags = self.parse_tags()
|
|
self.starred = starred
|
|
self.modified = False
|
|
|
|
def parse_tags(self):
|
|
fulltext = " " + " ".join([self.title, self.body]).lower()
|
|
tags = re.findall(r'(?u)\s([{tags}][-+*#/\w]+)'.format(tags=self.journal.config['tagsymbols']), fulltext, re.UNICODE)
|
|
self.tags = tags
|
|
return set(tags)
|
|
|
|
def __unicode__(self):
|
|
"""Returns a string representation of the entry to be written into a journal file."""
|
|
date_str = self.date.strftime(self.journal.config['timeformat'])
|
|
title = date_str + " " + self.title.rstrip("\n ")
|
|
if self.starred:
|
|
title += " *"
|
|
return u"{title}{sep}{body}\n".format(
|
|
title=title,
|
|
sep="\n" if self.body.rstrip("\n ") else "",
|
|
body=self.body.rstrip("\n ")
|
|
)
|
|
|
|
def pprint(self, short=False):
|
|
"""Returns a pretty-printed version of the entry.
|
|
If short is true, only print the title."""
|
|
date_str = self.date.strftime(self.journal.config['timeformat'])
|
|
if not short and self.journal.config['linewrap']:
|
|
title = textwrap.fill(date_str + " " + self.title, self.journal.config['linewrap'])
|
|
body = "\n".join([
|
|
textwrap.fill((line + " ") if (len(line) == 0) else line,
|
|
self.journal.config['linewrap'],
|
|
initial_indent="| ",
|
|
subsequent_indent="| ",
|
|
drop_whitespace=False)
|
|
for line in self.body.rstrip(" \n").splitlines()
|
|
])
|
|
else:
|
|
title = date_str + " " + self.title.rstrip("\n ")
|
|
body = self.body.rstrip("\n ")
|
|
|
|
# Suppress bodies that are just blanks and new lines.
|
|
has_body = len(self.body) > 20 or not all(char in (" ", "\n") for char in self.body)
|
|
|
|
if short:
|
|
return title
|
|
else:
|
|
return u"{title}{sep}{body}\n".format(
|
|
title=title,
|
|
sep="\n" if has_body else "",
|
|
body=body if has_body else "",
|
|
)
|
|
|
|
def __repr__(self):
|
|
return "<Entry '{0}' on {1}>".format(self.title.strip(), self.date.strftime("%Y-%m-%d %H:%M"))
|
|
|
|
def __eq__(self, other):
|
|
if not isinstance(other, Entry) \
|
|
or self.title.strip() != other.title.strip() \
|
|
or self.body.rstrip() != other.body.rstrip() \
|
|
or self.date != other.date \
|
|
or self.starred != other.starred:
|
|
return False
|
|
return True
|
|
|
|
def __ne__(self, other):
|
|
return not self.__eq__(other)
|
|
|
|
def to_dict(self):
|
|
return {
|
|
'title': self.title,
|
|
'body': self.body,
|
|
'date': self.date.strftime("%Y-%m-%d"),
|
|
'time': self.date.strftime("%H:%M"),
|
|
'starred': self.starred
|
|
}
|
|
|
|
def to_md(self):
|
|
date_str = self.date.strftime(self.journal.config['timeformat'])
|
|
body_wrapper = "\n\n" if self.body else ""
|
|
body = body_wrapper + self.body
|
|
space = "\n"
|
|
md_head = "###"
|
|
|
|
return u"{md} {date}, {title} {body} {space}".format(
|
|
md=md_head,
|
|
date=date_str,
|
|
title=self.title,
|
|
body=body,
|
|
space=space
|
|
)
|