Update importer script

This commit is contained in:
Ivanq 2021-04-07 19:27:30 +03:00
parent 58fc4cb513
commit fe33a3c426
1 changed files with 43 additions and 42 deletions

View File

@ -6,25 +6,11 @@ def save_signature(name, link, author):
f.write(f"name: {name.strip()}\nlink: {link.strip()}\n")
def parse_and_import_signature(content, author):
if os.path.isfile(f"_data/signed/{author}.yaml"):
return
content_lines = [line.strip() for line in content.replace("`", "").strip().split("\n") if line.strip()]
imported = False
for i in range(len(content_lines) - 1):
if content_lines[i].lower().startswith("name:") and content_lines[i + 1].lower().startswith("link:"):
save_signature(content_lines[i][5:], content_lines[i + 1][5:], author)
imported = True
# Apparently most people can't follow a two-line template, e.g. miss 'name:'
# or 'link:' or use 'site:' instead of 'link:' or use 'mailto:' instead of
# 'link: mailto:', etc., so we have to guess in what way their
# interpretation is wrong, and try to make the format at least somewhat
# correct.
if not imported and len(content_lines) == 2:
name, link = content_lines
# Apparently most people can't follow a two-line template, e.g. miss 'name:' or
# 'link:' or use 'site:' instead of 'link:' or use 'mailto:' instead of
# 'link: mailto:', etc., so we have to guess in what way their interpretation is
# wrong, and try to make the format at least somewhat correct.
def import_signature_from_lines(name, link, author):
if name.lower().startswith("name:"):
name = name[5:]
@ -50,6 +36,7 @@ def parse_and_import_signature(content, author):
link = link.replace(" ", "")
# Add protocol to links without it
if "://" not in link:
if "@" in link:
if not link.startswith("mailto:"):
link = f"mailto:{link}"
@ -58,3 +45,17 @@ def parse_and_import_signature(content, author):
if "/" in link or "@" in link:
save_signature(name, link, author)
def parse_and_import_signature(content, author):
if os.path.isfile(f"_data/signed/{author}.yaml"):
return
content_lines = [line.strip() for line in content.replace("`", "").strip().split("\n") if line.strip()]
imported = False
for i in range(len(content_lines) - 1):
if content_lines[i].lower().startswith("name:") and content_lines[i + 1].lower().startswith("link:"):
import_signature_from_lines(content_lines[i], content_lines[i + 1], author)
imported = True
if not imported and len(content_lines) == 2:
import_signature_from_lines(*content_lines, author)