From: Max Value Date: Thu, 23 Jan 2025 18:44:30 +0000 (+0000) Subject: Added epub & mobi generation X-Git-Url: https://git.ozva.co.uk/?a=commitdiff_plain;h=7775c56c4a50373d3dafadbe03dfddcdada8d94d;p=shopping-channel Added epub & mobi generation Autogeneration of documentation from the items.json file File hosted at: https://data.ozva.co.uk/shopping/docs/item_manifest.mobi --- diff --git a/.gitignore b/.gitignore index d259f05..bd69528 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,7 @@ *.ttf +.venv/ +item[0-9].html +content.opf +toc.ncx +*.epub +*.mobi diff --git a/auth/generate_docs.py b/auth/generate_docs.py new file mode 100755 index 0000000..aa9b76f --- /dev/null +++ b/auth/generate_docs.py @@ -0,0 +1,158 @@ +#!.venv/bin/python + +import json +import os + +# clean up working-directory +for filename in os.listdir("../docs/epub"): + if filename[:4] == "item": os.remove("../docs/epub/" + filename) + +# generate item pages +with open("../items.json", "r") as f: + items = json.loads(f.read()) + +for (i, item) in enumerate(items): + with open(f"../docs/epub/item{i}.html", "w") as f: + f.write(f""" + + + + {item['code']} + + +

{item['code']}

+

{item['subtext']}

+

Description: {item['description']}

+ + + + + + + + + + + + + +
Rating{item['rating']}
Starting price{item['origionalPrice']}
In stock{item['stockCount']}
+

Anchor notes:

+

{item['notes']}

+ + + """) + +# update manifest +manifest_items = " ".join([ + f"" + for i in range(len(items)) + ]) +toc_items = " ".join([ + f"" + for i in range(len(items)) + ]) + +with open("../docs/epub/content.opf", "w") as f: + f.write(f""" + + + + + + + XMDV Teleshopping item manifest + en + + http://data.ozva.co.uk/shopping/docs/item_manifest.epub + + Teleshopping, Manifest + Describing all items to be sold during the XMDV Teleshopping performance + William Greenwood + Goodnight Publishing + 2024-12-28 + Creative Commons BY-SA 3.0 License. + + + + + + + + {manifest_items} + + + + + + {toc_items} + + + +""") + +toc_items = " ".join([ + f""" + + + {i+1}: {item["code"]} + + + + """ + for (i, item) in enumerate(items) + ]) + +with open("../docs/epub/toc.ncx", "w") as f: + f.write(f""" + + + + + + + + + + + + + + XMDV Teleshopping item manifest + + + + + + Title Page + + + + + + Information + + + + {toc_items} + + + +""") + +os.system(""" + zip -X0 ../docs/item_manifest.epub ../docs/epub/mimetype && + zip -Xur9D ../docs/item_manifest.epub ../docs/epub/* && + ebook-convert ../docs/item_manifest.epub ../docs/item_manifest.mobi + """) + diff --git a/auth/index.php b/auth/index.php index b502d94..af74f39 100644 --- a/auth/index.php +++ b/auth/index.php @@ -28,6 +28,10 @@ fclose($file); $clockIncrement = 10; +if (!empty($_POST['generate_docs'])) { + exec("./generate_docs.py"); +} + if (!empty($_POST['update'])) { for ($i = 0; $i < 5; $i ++) { @@ -522,6 +526,7 @@ for ($i = 0; $i < 360; $i += $clockIncrement) {
+
Current data " . var_export($data, true) . "" ?> diff --git a/docs/epub/META-INF/container.xml b/docs/epub/META-INF/container.xml new file mode 100644 index 0000000..b640723 --- /dev/null +++ b/docs/epub/META-INF/container.xml @@ -0,0 +1,7 @@ + + + + + + diff --git a/docs/epub/info_page.html b/docs/epub/info_page.html new file mode 100644 index 0000000..bdd496a --- /dev/null +++ b/docs/epub/info_page.html @@ -0,0 +1,11 @@ + + + + Information + + +

Infomation page

+

Information will go here!

+ + diff --git a/docs/epub/mimetype b/docs/epub/mimetype new file mode 100644 index 0000000..403c4f0 --- /dev/null +++ b/docs/epub/mimetype @@ -0,0 +1 @@ +application/epub+zip diff --git a/docs/epub/stylesheet.css b/docs/epub/stylesheet.css new file mode 100644 index 0000000..773dd89 --- /dev/null +++ b/docs/epub/stylesheet.css @@ -0,0 +1,4 @@ +@page { + margin-bottom: 5pt; + margin-top: 5pt; +} diff --git a/docs/epub/title_page.html b/docs/epub/title_page.html new file mode 100644 index 0000000..75d96ea --- /dev/null +++ b/docs/epub/title_page.html @@ -0,0 +1,13 @@ + + + + Title Page + + +

XMDV Teleshopping

+

Item manifest

+

Info on all items contained within the GFX system.


+

HIDDEN INFORMATION. NOT TO BE SHARED WITH THE ANCHOR.

+ +