generated from drinfernoo/repository.example
-
Notifications
You must be signed in to change notification settings - Fork 1
/
_repo_generator.py
318 lines (274 loc) · 10.5 KB
/
_repo_generator.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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
"""
Put this script in the root folder of your repo and it will
zip up all addon folders, create a new zip in your zips folder
and then update the md5 and addons.xml file
"""
import os
import shutil
import hashlib
import zipfile
from xml.etree import ElementTree
SCRIPT_VERSION = 2
KODI_VERSIONS = ["krypton", "leia", "matrix", "repo"]
IGNORE = [
".git",
".github",
".gitignore",
".DS_Store",
"thumbs.db",
".idea",
"venv",
]
def _setup_colors():
color = os.system("color")
console = 0
if os.name == 'nt': # Only if we are running on Windows
from ctypes import windll
k = windll.kernel32
console = k.SetConsoleMode(k.GetStdHandle(-11), 7)
return color == 1 or console == 1
_COLOR_ESCAPE = "\x1b[{}m"
_COLORS = {
"black": "30",
"red": "31",
"green": "4;32",
"yellow": "3;33",
"blue": "34",
"magenta": "35",
"cyan": "1;36",
"grey": "37",
"endc": "0",
}
_SUPPORTS_COLOR = _setup_colors()
def color_text(text, color):
return (
'{}{}{}'.format(
_COLOR_ESCAPE.format(_COLORS[color]),
text,
_COLOR_ESCAPE.format(_COLORS["endc"]),
)
if _SUPPORTS_COLOR
else text
)
def convert_bytes(num):
"""
this function will convert bytes to MB.... GB... etc
"""
for x in ['bytes', 'KB', 'MB', 'GB', 'TB']:
if num < 1024.0:
return "%3.1f %s" % (num, x)
num /= 1024.0
class Generator:
"""
Generates a new addons.xml file from each addons addon.xml file
and a new addons.xml.md5 hash file. Must be run from the root of
the checked-out repo.
"""
def __init__(self, release):
self.release_path = release
self.zips_path = os.path.join(self.release_path, "zips")
addons_xml_path = os.path.join(self.zips_path, "addons.xml")
md5_path = os.path.join(self.zips_path, "addons.xml.md5")
if not os.path.exists(self.zips_path):
os.makedirs(self.zips_path)
self._remove_binaries()
if self._generate_addons_file(addons_xml_path):
print(
"Successfully updated {}".format(color_text(addons_xml_path, 'yellow'))
)
if self._generate_md5_file(addons_xml_path, md5_path):
print("Successfully updated {}".format(color_text(md5_path, 'yellow')))
def _remove_binaries(self):
"""
Removes any and all compiled Python files before operations.
"""
for parent, dirnames, filenames in os.walk(self.release_path):
for fn in filenames:
if fn.lower().endswith("pyo") or fn.lower().endswith("pyc"):
compiled = os.path.join(parent, fn)
try:
os.remove(compiled)
print(
"Removed compiled python file: {}".format(
color_text(compiled, 'green')
)
)
except:
print(
"Failed to remove compiled python file: {}".format(
color_text(compiled, 'red')
)
)
for dir in dirnames:
if "pycache" in dir.lower():
compiled = os.path.join(parent, dir)
try:
shutil.rmtree(compiled)
print(
"Removed __pycache__ cache folder: {}".format(
color_text(compiled, 'green')
)
)
except:
print(
"Failed to remove __pycache__ cache folder: {}".format(
color_text(compiled, 'red')
)
)
def _create_zip(self, folder, addon_id, version):
"""
Creates a zip file in the zips directory for the given addon.
"""
addon_folder = os.path.join(self.release_path, folder)
zip_folder = os.path.join(self.zips_path, addon_id)
if not os.path.exists(zip_folder):
os.makedirs(zip_folder)
final_zip = os.path.join(zip_folder, "{0}-{1}.zip".format(addon_id, version))
if not os.path.exists(final_zip):
zip = zipfile.ZipFile(final_zip, "w", compression=zipfile.ZIP_DEFLATED)
root_len = len(os.path.dirname(os.path.abspath(addon_folder)))
for root, dirs, files in os.walk(addon_folder):
# remove any unneeded artifacts
for i in IGNORE:
if i in dirs:
try:
dirs.remove(i)
except:
pass
for f in files:
if f.startswith(i):
try:
files.remove(f)
except:
pass
archive_root = os.path.abspath(root)[root_len:]
for f in files:
fullpath = os.path.join(root, f)
archive_name = os.path.join(archive_root, f)
zip.write(fullpath, archive_name, zipfile.ZIP_DEFLATED)
zip.close()
size = convert_bytes(os.path.getsize(final_zip))
print(
"Zip created for {} ({}) - {}".format(
color_text(addon_id, 'cyan'),
color_text(version, 'green'),
color_text(size, 'yellow'),
)
)
def _copy_meta_files(self, addon_id, addon_folder):
"""
Copy the addon.xml and relevant art files into the relevant folders in the repository.
"""
tree = ElementTree.parse(os.path.join(self.release_path, addon_id, "addon.xml"))
root = tree.getroot()
copyfiles = ["addon.xml"]
for ext in root.findall("extension"):
if ext.get("point") in ["xbmc.addon.metadata", "kodi.addon.metadata"]:
assets = ext.find("assets")
if not assets:
continue
for art in [a for a in assets if a.text]:
copyfiles.append(os.path.normpath(art.text))
src_folder = os.path.join(self.release_path, addon_id)
for file in copyfiles:
addon_path = os.path.join(src_folder, file)
if not os.path.exists(addon_path):
continue
zips_path = os.path.join(addon_folder, file)
asset_path = os.path.split(zips_path)[0]
if not os.path.exists(asset_path):
os.makedirs(asset_path)
shutil.copy(addon_path, zips_path)
def _generate_addons_file(self, addons_xml_path):
"""
Generates a zip for each found addon, and updates the addons.xml file accordingly.
"""
if not os.path.exists(addons_xml_path):
addons_root = ElementTree.Element('addons')
addons_xml = ElementTree.ElementTree(addons_root)
else:
addons_xml = ElementTree.parse(addons_xml_path)
addons_root = addons_xml.getroot()
folders = [
i
for i in os.listdir(self.release_path)
if os.path.isdir(os.path.join(self.release_path, i))
and i != "zips"
and not i.startswith(".")
and os.path.exists(os.path.join(self.release_path, i, "addon.xml"))
]
addon_xpath = "addon[@id='{}']"
changed = False
for addon in folders:
try:
addon_xml_path = os.path.join(self.release_path, addon, "addon.xml")
addon_xml = ElementTree.parse(addon_xml_path)
addon_root = addon_xml.getroot()
id = addon_root.get('id')
version = addon_root.get('version')
updated = False
addon_entry = addons_root.find(addon_xpath.format(id))
if addon_entry is not None and addon_entry.get('version') != version:
index = addons_root.findall('addon').index(addon_entry)
addons_root.remove(addon_entry)
addons_root.insert(index, addon_root)
updated = True
changed = True
elif addon_entry is None:
addons_root.append(addon_root)
updated = True
changed = True
if updated:
# Create the zip files
self._create_zip(addon, id, version)
self._copy_meta_files(addon, os.path.join(self.zips_path, id))
except Exception as e:
print(
"Excluding {}: {}".format(
color_text(id, 'yellow'), color_text(e, 'red')
)
)
if changed:
addons_root[:] = sorted(addons_root, key=lambda addon: addon.get('id'))
try:
addons_xml.write(
addons_xml_path, encoding="utf-8", xml_declaration=True
)
return changed
except Exception as e:
print(
"An error occurred updating {}!\n{}".format(
color_text(addons_xml_path, 'yellow'), color_text(e, 'red')
)
)
def _generate_md5_file(self, addons_xml_path, md5_path):
"""
Generates a new addons.xml.md5 file.
"""
try:
m = hashlib.md5(
open(addons_xml_path, "r", encoding="utf-8").read().encode("utf-8")
).hexdigest()
self._save_file(m, file=md5_path)
return True
except Exception as e:
print(
"An error occurred updating {}!\n{}".format(
color_text(md5_path, 'yellow'), color_text(e, 'red')
)
)
def _save_file(self, data, file):
"""
Saves a file.
"""
try:
open(file, "w").write(data)
except Exception as e:
print(
"An error occurred saving {}!\n{}".format(
color_text(file, 'yellow'), color_text(e, 'red')
)
)
if __name__ == "__main__":
for release in [r for r in KODI_VERSIONS if os.path.exists(r)]:
Generator(release)