mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-10 16:48:31 +02:00
62 lines
2.2 KiB
Python
62 lines
2.2 KiB
Python
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
|
|
from __future__ import absolute_import, unicode_literals
|
|
import codecs
|
|
from . import BaseExporter
|
|
from ..util import u, slugify
|
|
import os
|
|
|
|
|
|
class TextExporter(BaseExporter):
|
|
"""This Exporter can convert entries and journals into text files."""
|
|
names = ["text", "txt"]
|
|
extension = "txt"
|
|
|
|
@classmethod
|
|
def export_entry(cls, entry):
|
|
"""Returns a unicode representation of a single entry."""
|
|
return u.__unicode__()
|
|
|
|
@classmethod
|
|
def export_journal(cls, journal):
|
|
"""Returns a unicode representation of an entire journal."""
|
|
return journal.pprint()
|
|
|
|
@classmethod
|
|
def write_file(cls, journal, path):
|
|
"""Exports a journal into a single file."""
|
|
try:
|
|
with codecs.open(path, "w", "utf-8") as f:
|
|
f.write(cls.export_journal(journal))
|
|
return "[Journal exported to {0}]".format(path)
|
|
except IOError as e:
|
|
return "[ERROR: {0} {1}]".format(e.filename, e.strerror)
|
|
|
|
@classmethod
|
|
def make_filename(cls, entry):
|
|
return entry.date.strftime("%Y-%m-%d_{0}.{1}".format(slugify(u(entry.title)), cls.extension))
|
|
|
|
@classmethod
|
|
def write_files(cls, journal, path):
|
|
"""Exports a journal into individual files for each entry."""
|
|
for entry in journal.entries:
|
|
try:
|
|
full_path = os.path.join(path, cls.make_filename(entry))
|
|
with codecs.open(full_path, "w", "utf-8") as f:
|
|
f.write(cls.export_entry(entry))
|
|
except IOError as e:
|
|
return "[ERROR: {0} {1}]".format(e.filename, e.strerror)
|
|
return "[Journal exported to {0}]".format(path)
|
|
|
|
@classmethod
|
|
def export(cls, journal, output=None):
|
|
"""Exports to individual files if output is an existing path, or into
|
|
a single file if output is a file name, or returns the exporter's
|
|
representation as unicode if output is None."""
|
|
if output and os.path.isdir(output): # multiple files
|
|
return cls.write_files(journal, output)
|
|
elif output: # single file
|
|
return cls.write_file(journal, output)
|
|
else:
|
|
return cls.export_journal(journal)
|