2020-11-20 13:22:00 -05:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
import re
|
|
|
|
import sqlite3
|
|
|
|
from collections import defaultdict
|
|
|
|
from pathlib import Path
|
2020-11-20 14:29:02 -05:00
|
|
|
from shutil import copy
|
2020-11-20 13:22:00 -05:00
|
|
|
from shutil import rmtree
|
|
|
|
from typing import Optional
|
|
|
|
|
|
|
|
|
|
|
|
def slugify(text):
|
|
|
|
return re.sub(r"[\W_]+", "-", text.lower()).strip("-")
|
|
|
|
|
|
|
|
|
|
|
|
class Note:
|
|
|
|
def __init__(self, id, parent_id, parent_title, title, body):
|
|
|
|
self.id = id
|
|
|
|
self.parent_id = parent_id
|
|
|
|
self.parent_title = parent_title
|
|
|
|
self.title = title
|
|
|
|
self.body = body
|
|
|
|
|
|
|
|
def get_url(self):
|
|
|
|
return slugify(self.parent_title) + "/" + slugify(self.title)
|
|
|
|
|
|
|
|
|
|
|
|
class JoplinExporter:
|
|
|
|
content_dir = Path("content")
|
2020-11-20 14:29:02 -05:00
|
|
|
static_dir = Path("static")
|
|
|
|
joplin_dir = Path.home() / ".config/joplin-desktop"
|
2020-11-20 13:22:00 -05:00
|
|
|
|
|
|
|
def clean_content_dir(self):
|
|
|
|
"""Reset the content directory to a known state to begin."""
|
|
|
|
rmtree(self.content_dir)
|
2020-11-20 14:29:02 -05:00
|
|
|
rmtree(self.static_dir)
|
2020-11-20 13:22:00 -05:00
|
|
|
self.content_dir.mkdir()
|
2020-11-20 14:29:02 -05:00
|
|
|
self.static_dir.mkdir()
|
2020-11-20 13:22:00 -05:00
|
|
|
with open(self.content_dir / "_index.md", mode="w") as outfile:
|
|
|
|
outfile.write('+++\nredirect_to = "welcome"\n+++')
|
|
|
|
|
|
|
|
def resolve_note_links(self, note: Note) -> str:
|
|
|
|
def replacement(match):
|
2020-11-20 14:29:02 -05:00
|
|
|
item_id = match.group(1)
|
|
|
|
new_url = self.get_note_url_by_id(item_id)
|
|
|
|
if not new_url:
|
|
|
|
new_url = self.get_resource_url_by_id(item_id)
|
|
|
|
if not new_url:
|
|
|
|
new_url = item_id
|
|
|
|
return f"](../../{new_url})"
|
2020-11-20 13:22:00 -05:00
|
|
|
|
|
|
|
return re.sub(r"\]\(:/([a-f0-9]{32})\)", replacement, note.body)
|
|
|
|
|
|
|
|
def get_note_url_by_id(self, note_id: str) -> Optional[str]:
|
|
|
|
"""Return a note's relative URL by its ID."""
|
|
|
|
note = self.note_lookup_dict.get(note_id)
|
|
|
|
if not note:
|
|
|
|
return None
|
|
|
|
return note.get_url()
|
|
|
|
|
2020-11-20 14:29:02 -05:00
|
|
|
def get_resource_url_by_id(self, resource_id: str) -> Optional[str]:
|
|
|
|
"""Return a resource's relative URL by its ID."""
|
|
|
|
resource = self.resources.get(resource_id)
|
|
|
|
if not resource:
|
|
|
|
return None
|
|
|
|
return resource_id + "." + resource[1]
|
|
|
|
|
|
|
|
def copy_resources(self):
|
|
|
|
"""Copy all the resources to the output directory."""
|
|
|
|
for resource_id, resource in self.resources.items():
|
|
|
|
title, extension = resource
|
|
|
|
copy(
|
|
|
|
self.joplin_dir / "resources" / (resource_id + "." + extension),
|
|
|
|
self.static_dir,
|
|
|
|
)
|
|
|
|
|
2020-11-20 13:22:00 -05:00
|
|
|
def read_data(self):
|
2020-11-20 14:29:02 -05:00
|
|
|
"""Read the data from the Joplin database."""
|
|
|
|
conn = sqlite3.connect(self.joplin_dir / "database.sqlite")
|
2020-11-20 13:22:00 -05:00
|
|
|
c = conn.cursor()
|
|
|
|
|
|
|
|
# Create table
|
|
|
|
c.execute("""SELECT id, title FROM folders;""")
|
|
|
|
self.folders = {id: title for id, title in c.fetchall()}
|
|
|
|
|
2020-11-20 14:29:02 -05:00
|
|
|
c.execute("""SELECT id, title, file_extension FROM resources;""")
|
|
|
|
self.resources = {
|
|
|
|
id: (title, file_extension) for id, title, file_extension in c.fetchall()
|
|
|
|
}
|
2020-11-20 13:22:00 -05:00
|
|
|
|
|
|
|
c.execute("""SELECT id, parent_id, title, body FROM notes;""")
|
|
|
|
self.notes = defaultdict(list)
|
|
|
|
self.note_lookup_dict = {}
|
|
|
|
for id, parent_id, title, body in c.fetchall():
|
|
|
|
note = Note(id, parent_id, self.folders[parent_id], title, body)
|
|
|
|
self.notes[note.parent_id].append(note)
|
|
|
|
self.note_lookup_dict[note.id] = note
|
|
|
|
|
|
|
|
conn.close()
|
|
|
|
|
|
|
|
def export(self):
|
2020-11-20 14:29:02 -05:00
|
|
|
self.read_data()
|
|
|
|
|
2020-11-20 13:22:00 -05:00
|
|
|
folder_list = list(self.folders.items())
|
|
|
|
# Sort "Welcome" last.
|
|
|
|
folder_list.sort(
|
|
|
|
key=lambda x: x[1].lower().strip() if x[1] != "Welcome" else "0"
|
|
|
|
)
|
|
|
|
|
|
|
|
self.clean_content_dir()
|
2020-11-20 14:29:02 -05:00
|
|
|
self.copy_resources()
|
2020-11-20 13:22:00 -05:00
|
|
|
|
|
|
|
for counter, folder in enumerate(folder_list, start=1):
|
|
|
|
folder_id, folder_title = folder
|
2020-11-20 14:29:02 -05:00
|
|
|
dir = self.content_dir / slugify(folder_title)
|
2020-11-20 13:22:00 -05:00
|
|
|
dir.mkdir(parents=True)
|
|
|
|
with (dir / "_index.md").open(mode="w") as outfile:
|
|
|
|
outfile.write(
|
|
|
|
f"""+++
|
|
|
|
title = "{folder_title}"
|
|
|
|
weight = {counter}
|
|
|
|
sort_by = "weight"
|
|
|
|
insert_anchor_links = "right"
|
|
|
|
+++
|
|
|
|
Select one of the sublinks on the left to see the notes in this section."""
|
|
|
|
)
|
|
|
|
|
|
|
|
for counter, note in enumerate(
|
|
|
|
sorted(self.notes[folder_id], key=lambda n: n.title)
|
|
|
|
):
|
|
|
|
print(f"Exporting {folder_title} - {note.title}...")
|
2020-11-20 14:29:02 -05:00
|
|
|
with (self.content_dir / (note.get_url() + ".md")).open(
|
|
|
|
mode="w"
|
|
|
|
) as outfile:
|
2020-11-20 13:22:00 -05:00
|
|
|
outfile.write(
|
|
|
|
f"""+++
|
|
|
|
title = "{note.title}"
|
|
|
|
weight = {counter}
|
|
|
|
sort_by = "weight"
|
|
|
|
insert_anchor_links = "right"
|
|
|
|
+++
|
|
|
|
{self.resolve_note_links(note)}"""
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
print("Exporting Joplin database...")
|
2020-11-20 14:29:02 -05:00
|
|
|
JoplinExporter().export()
|