forked from mampfes/hacs_waste_collection_schedule
-
Notifications
You must be signed in to change notification settings - Fork 0
/
update_docu_links.py
executable file
·264 lines (216 loc) · 6 KB
/
update_docu_links.py
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
#!/usr/bin/env python3
import argparse
import importlib
import re
import site
from pathlib import Path
import yaml
SECRET_FILENAME = "secrets.yaml"
SECRET_REGEX = re.compile(r"!secret\s(\w+)")
BLACK_LIST = {"ics", "static", "example"}
START_COUNTRY_SECTION = "<!--Begin of country section-->"
END_COUNTRY_SECTION = "<!--End of country section-->"
def main():
parser = argparse.ArgumentParser(description="Test sources.")
args = parser.parse_args()
# read secrets.yaml
secrets = {}
try:
with open(SECRET_FILENAME) as stream:
try:
secrets = yaml.safe_load(stream)
except yaml.YAMLError as exc:
print(exc)
except FileNotFoundError:
# ignore missing secrets.yaml
pass
package_dir = (
Path(__file__).resolve().parents[0]
/ "custom_components"
/ "waste_collection_schedule"
)
source_dir = package_dir / "waste_collection_schedule" / "source"
print(source_dir)
# add module directory to path
site.addsitedir(str(package_dir))
files = filter(
lambda x: x != "__init__",
map(lambda x: x.stem, source_dir.glob("*.py")),
)
sources = []
# retrieve all data from sources
for f in files:
# iterate through all *.py files in waste_collection_schedule/source
module = importlib.import_module(f"waste_collection_schedule.source.{f}")
title = module.TITLE
url = module.URL
country = getattr(module, "COUNTRY", f.split("_")[-1])
if title is not None:
sources.append(
SourceInfo(filename=f, title=title, url=url, country=country)
)
extra_info = getattr(module, "EXTRA_INFO", [])
if callable(extra_info):
extra_info = extra_info()
for e in extra_info:
sources.append(
SourceInfo(
filename=f,
title=e.get("title", title),
url=e.get("url", url),
country=e.get("country", country),
)
)
# sort into countries
country_code_map = make_country_code_map()
countries = {}
zombies = []
for s in sources:
if s.filename in BLACK_LIST:
continue # skip
# extract country code
code = s.country
if code in country_code_map:
countries.setdefault(country_code_map[code]["name"], []).append(s)
else:
zombies.append(s)
update_readme_md(countries)
update_info_md(countries)
print("Zombies =========================")
for z in zombies:
print(z)
def beautify_url(url):
url = url.removesuffix("/")
url = url.removeprefix("http://")
url = url.removeprefix("https://")
url = url.removeprefix("www.")
return url
def update_readme_md(countries):
# generate country list
str = ""
for country in sorted(countries):
str += "<details>\n"
str += f"<summary>{country}</summary>\n"
str += "\n"
for e in sorted(countries[country], key=lambda e: e.title.lower()):
# print(f" {e.title} - {beautify_url(e.url)}")
str += (
f"- [{e.title}](/doc/source/{e.filename}.md) / {beautify_url(e.url)}\n"
)
str += "</details>\n"
str += "\n"
# read entire file
with open("README.md") as f:
md = f.read()
# find beginning and end of country section
start_pos = md.index(START_COUNTRY_SECTION) + len(START_COUNTRY_SECTION) + 1
end_pos = md.index(END_COUNTRY_SECTION)
md = md[:start_pos] + str + md[end_pos:]
# write entire file
with open("README.md", "w") as f:
f.write(md)
def update_info_md(countries):
# generate country list
str = ""
for country in sorted(countries):
str += f"| {country} | "
str += ", ".join(
[e.title for e in sorted(countries[country], key=lambda e: e.title.lower())]
)
str += " |\n"
# read entire file
with open("info.md") as f:
md = f.read()
# find beginning and end of country section
start_pos = md.index(START_COUNTRY_SECTION) + len(START_COUNTRY_SECTION) + 1
end_pos = md.index(END_COUNTRY_SECTION)
md = md[:start_pos] + str + md[end_pos:]
# write entire file
with open("info.md", "w") as f:
f.write(md)
class SourceInfo:
def __init__(self, filename, title, url, country):
self._filename = filename
self._title = title
self._url = url
self._country = country
def __repr__(self):
return f"filename:{self._filename}, title:{self._title}, url:{self._url}, country:{self._country}"
@property
def filename(self):
return self._filename
@property
def title(self):
return self._title
@property
def url(self):
return self._url
@property
def country(self):
return self._country
def make_country_code_map():
return {x["code"]: x for x in COUNTRYCODES}
COUNTRYCODES = [
{
"code": "au",
"name": "Australia",
},
{
"code": "at",
"name": "Austria",
},
{
"code": "be",
"name": "Belgium",
},
{
"code": "ca",
"name": "Canada",
},
{
"code": "de",
"name": "Germany",
},
{
"code": "hamburg",
"name": "Germany",
},
{
"code": "lt",
"name": "Lithuania",
},
{
"code": "nl",
"name": "Netherlands",
},
{
"code": "nz",
"name": "New Zealand",
},
{
"code": "no",
"name": "Norway",
},
{
"code": "pl",
"name": "Poland",
},
{
"code": "se",
"name": "Sweden",
},
{
"code": "ch",
"name": "Switzerland",
},
{
"code": "us",
"name": "United States of America",
},
{
"code": "uk",
"name": "United Kingdom",
},
]
if __name__ == "__main__":
main()