Skip to content

Commit 980675c

Browse files
refeedtimabbott
authored andcommittedAug 31, 2022
Automatically generate sitemap.xml after building HTMLs.
Closes #70
1 parent 266ac87 commit 980675c

File tree

3 files changed

+27
-0
lines changed

3 files changed

+27
-0
lines changed
 

‎archive.py

+10
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@
4949

5050
from lib.website import build_website
5151

52+
from lib.sitemap import build_sitemap
53+
5254
try:
5355
import settings
5456
except ModuleNotFoundError:
@@ -145,6 +147,12 @@ def run():
145147
parser.add_argument(
146148
"-b", action="store_true", default=False, help="Build .md files"
147149
)
150+
parser.add_argument(
151+
"--no-sitemap",
152+
action="store_true",
153+
default=False,
154+
help="Don't build sitemap files",
155+
)
148156
parser.add_argument(
149157
"-t", action="store_true", default=False, help="Make a clean json archive"
150158
)
@@ -206,6 +214,8 @@ def run():
206214
settings.page_head_html,
207215
settings.page_footer_html,
208216
)
217+
if not results.no_sitemap:
218+
build_sitemap(settings.site_url, md_root.as_posix(), md_root.as_posix())
209219

210220

211221
if __name__ == "__main__":

‎lib/sitemap.py

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
from glob import iglob
2+
from typing import Iterator
3+
4+
from xml_sitemap_writer import XMLSitemap
5+
6+
7+
def build_sitemap(base_url: str, archive_dir_path: str, sitemap_write_dir_path: str):
8+
def iterate_html_files() -> Iterator[str]:
9+
# Iterator yields relative path like
10+
# archive/stream/10-errors/topic/laptop.html
11+
# TODO: Investigate when running in windows
12+
# TODO: Must ensure that the relative URLs are valid
13+
return iglob("**/*.html", root_dir=archive_dir_path, recursive=True)
14+
15+
with XMLSitemap(sitemap_write_dir_path, base_url) as sitemap:
16+
sitemap.add_urls(iterate_html_files())

‎requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
pyyaml==5.2
2+
xml-sitemap-writer==0.5.0
23
zulip==0.6.3

0 commit comments

Comments
 (0)
Please sign in to comment.