doc_infra/parsers/base.py
Michaël Ricart 28bbaf97b0
Some checks failed
/ test (push) Has been cancelled
first parser
2025-02-14 21:11:21 +01:00

47 lines
1.4 KiB
Python

#!/bin/env python3
import sys
from os import listdir
from os.path import isfile, join
from debian import parse_debian
from freebsd import parse_freebsd
from freebox import parse_freebox
from jinja2 import Environment, FileSystemLoader
def find_os(content):
version = content.split("###### VERSION ######")[-1]
osystem = [line.split("=")[-1] for line in version.splitlines() if line.startswith("ID=")]
if osystem:
return osystem[0]
else:
return "freebox"
def main():
mypath = "../oxidized/"
onlyfiles = [mypath + f for f in listdir(mypath) if isfile(join(mypath, f))]
env = Environment(loader = FileSystemLoader('../template'))
for file in onlyfiles:
with open(file,"r") as f:
content = f.read()
current_os = find_os(content)
if "freebsd" in current_os:
infos = parse_freebsd(content)
template = env.get_template('freebsd.rst.j2')
output = template.render(**infos)
print(output)
elif "debian" in current_os:
infos = parse_debian(content)
template = env.get_template('debian.rst.j2')
output = template.render(**infos)
print(output)
else:
parse_freebox(content)
with open("../source/devices/{host}.rst".format(host=infos["hostname"].replace("\n","")), "w") as f:
f.write(output)
if __name__ == "__main__":
main()