1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
#!/usr/bin/env python3
from lxml import etree as ET
import datetime
import time
import email.utils
import os
import sys
from subprocess import Popen, PIPE
today = email.utils.formatdate()
url = "https://fryzekconcepts.com"
personal_author_string = "lucas.fryzek@fryzekconcepts.com (Lucas Fryzek)"
xmlns_uris = {"atom" : "http://www.w3.org/2005/Atom"}
rss = ET.Element("rss", version="2.0", nsmap=xmlns_uris)
channel = ET.SubElement(rss, "channel")
ET.SubElement(channel, "title").text = "Fryzek Concepts"
ET.SubElement(channel, "{{{}}}link".format(xmlns_uris["atom"]), href="{}/feed.xml".format(url), rel="self", type="application/rss+xml")
ET.SubElement(channel, "link").text = url
ET.SubElement(channel, "description").text = "Lucas is a developer working on cool things"
#ET.SubElement(channel, "pubData").text = today
ET.SubElement(channel, "lastBuildDate").text = today
notes = []
build_dir = "./build"
for file in os.listdir(build_dir):
if file.endswith(".meta"):
path = os.path.join(build_dir, file)
f = open(path, "r")
note = {"name" : "".join(file.split(".")[:-1])}
for line in f:
line_split = line.strip().split(",")
note[line_split[0]] = "".join(line_split[1:])
f.close()
notes.append(note)
notes.sort(key=lambda note: datetime.datetime.strptime(note["date"], "%Y-%m-%d"))
limit_cat = False
categories = []
if len(sys.argv) >= 3:
limit_cat = True
categories = sys.argv[2:]
for note in notes:
if limit_cat:
if not "categories" in note: continue
note_categories = note["categories"].strip().split()
found = False
for cat in note_categories:
if cat in categories:
found = True
break
if not found: continue
post_time = datetime.datetime.strptime(note["date"], "%Y-%m-%d")
post_rfc_time = email.utils.formatdate(timeval=time.mktime(post_time.timetuple()))
post_url = "{}/notes/{}.html".format(url, note["name"])
item = ET.SubElement(channel, "item")
ET.SubElement(item, "title").text = note["title"]
ET.SubElement(item, "link").text = post_url
# Generate simple text version of post
process = Popen(["pandoc", "--lua-filter=./tools/note.lua", "--highlight-style=pygments",
"./notes/{}.md".format(note["name"])], stdout=PIPE)
(output, err) = process.communicate()
exit_code = process.wait()
ET.SubElement(item, "description").text = output.decode()
#if "categories" in note:
# ET.SubElement(item, "category").text = note["categories"]
ET.SubElement(item, "pubDate").text = post_rfc_time
ET.SubElement(item, "guid").text = post_url
tree = ET.ElementTree(rss)
tree.write(sys.argv[1], encoding='utf-8', xml_declaration=True)
|