-
Notifications
You must be signed in to change notification settings - Fork 45
/
manage_repo.py
executable file
·509 lines (419 loc) · 18.6 KB
/
manage_repo.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
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
#!/usr/bin/env python
r"""
Create a Kodi add-on repository from add-on sources
This tool extracts Kodi add-ons from their respective locations and
copies the appropriate files into a Kodi add-on repository. Each add-on
is placed in its own directory. Each contains the add-on metadata files
and a zip archive. In addition, the repository catalog "addons.xml" is
placed in the repository folder.
Each add-on location is either a local path or a URL. If it is a local
path, it can be to either an add-on folder or an add-on ZIP archive. If
it is a URL, it should be to a Git repository and it should use the
format:
REPOSITORY_URL#BRANCH:PATH
The first segment is the Git URL that would be used to clone the
repository, (e.g.,
"https://github.com/chadparry/kodi-repository.chad.parry.org.git").
That is followed by an optional "#" sign and a branch or tag name,
(e.g. "release-1.0"). If no branch name is specified, then the default
is the repository's currently active branch, which is the same default
as git-clone. Next comes an optional ":" sign and path. The path
denotes the location of the add-on within the repository. If no path is
specified, then the default is ".".
For example, if you are in the directory that should contain addons.xml
and you just copied a new version of the only add-on
"repository.chad.parry.org" to a subdirectory, then you can create or
update the addons.xml file with this command:
./create_repository.py repository.chad.parry.org
As another example, here is the command that generates Chad Parry's
Repository:
create_repository.py \
--datadir=~/html/software/kodi \
--compressed \
https://github.com/chadparry\
/kodi-repository.chad.parry.org.git:repository.chad.parry.org \
https://github.com/chadparry\
/kodi-plugin.program.remote.control.browser.git\
:plugin.program.remote.control.browser
This script has been tested with Python 2.7.6 and Python 3.4.3. It
depends on the GitPython module.
"""
__author__ = "Chad Parry"
__contact__ = "[email protected]"
__copyright__ = "Copyright 2016 Chad Parry"
__license__ = "GNU GENERAL PUBLIC LICENSE. Version 2, June 1991"
__version__ = "1.3.0"
import argparse
import collections
import fnmatch
import git
import gzip
import hashlib
import io
import os
import re
import shutil
import sys
import tempfile
import threading
import xml.etree.ElementTree
import zipfile
AddonMetadata = collections.namedtuple('AddonMetadata',
('id', 'version', 'root'))
WorkerResult = collections.namedtuple('WorkerResult',
('addon_metadata', 'exc_info'))
AddonWorker = collections.namedtuple('AddonWorker',
('thread', 'result_slot'))
INFO_BASENAME = 'addon.xml'
METADATA_BASENAMES = (
INFO_BASENAME,
'icon.png',
'fanart.jpg',
'LICENSE.txt')
BUILD_VERSIONS = {
'nnnnnn':
{'python-api': '4.0.0'},
'matrix':
{'python-api': '3.0.0'},
'leia':
{'python-api': None} # do not alter
}
def get_archive_basename(addon_metadata):
return '{}-{}.zip'.format(addon_metadata.id, addon_metadata.version)
def get_metadata_basenames(addon_metadata):
return ([(basename, basename) for basename in METADATA_BASENAMES] +
[(
'changelog.txt',
'changelog-{}.txt'.format(addon_metadata.version))])
def is_url(addon_location):
return bool(re.match('[A-Za-z0-9+.-]+://.', addon_location))
def parse_metadata(metadata_file):
# Parse the addon.xml metadata.
tree = xml.etree.ElementTree.parse(metadata_file)
root = tree.getroot()
addon_metadata = AddonMetadata(root.get('id'), root.get('version'), root)
# Validate the add-on ID.
if (addon_metadata.id is None or
re.search('[^a-z0-9._-]', addon_metadata.id)):
raise RuntimeError('Invalid addon ID: ' + str(addon_metadata.id))
if addon_metadata.version is None:
raise RuntimeError('Addon version not found')
return addon_metadata
def generate_checksum(archive_path):
checksum_path = '{}.md5'.format(archive_path)
checksum = hashlib.md5()
with open(archive_path, 'rb') as archive_contents:
for chunk in iter(lambda: archive_contents.read(4096), b''):
checksum.update(chunk)
with open(checksum_path, 'w') as sig:
sig.write(checksum.hexdigest())
def get_commit_names(repo, tag1, tag2):
rev = '{0}...{1}'.format(tag1, tag2)
clist = repo.iter_commits(rev=rev)
commits = [c.message.splitlines()[0] for c in clist]
return commits
def generate_changelog(repo):
tags = [t.name for t in repo.tags]
ver = get_version(repo)
tags.append('v' + ver)
tags.reverse()
lines = []
for i, tag in enumerate(tags):
if i == len(tags)-1:
commits = ['Initial version']
else:
commits = get_commit_names(repo, tag, tags[i+1])
if commits:
lines.append("[B]Version {0}[/B]".format(tag))
for commit in commits:
l = '- {0}'.format(commit)
# Skip duplicate lines
if l == lines[-1]:
continue
# Skip the 'Update to v1.0' tag commit messages
if re.match('Update.*v?' + tag.lstrip('v'), commit):
continue
if re.match('Version v?\d+', commit, flags=re.IGNORECASE):
continue
if re.match('^(Merge pull request|Merge branch)', commit):
continue
lines.append(l)
lines.append('')
return lines
def write_changelog_file(addon_location, changelog):
changelog_file = os.path.join(addon_location, 'changelog.txt')
with open(changelog_file, 'w') as f:
f.writelines('\n'.join(changelog))
def get_version(repo):
return repo.git.describe(tags=True).lstrip('v')
def update_news(metadata_path, changelog):
tree = xml.etree.ElementTree.ElementTree(file=metadata_path)
root = tree.getroot()
metadata = root.find('extension[@point="xbmc.addon.metadata"]')
news_tags = metadata.findall('news')
for element in news_tags:
metadata.remove(element)
news = xml.etree.ElementTree.SubElement(metadata, 'news')
news.text = '\n'.join(changelog)
with open(metadata_path, 'wb') as info_file:
tree.write(info_file, encoding='UTF-8', xml_declaration=True)
def update_version(metadata_path, version, kodi_version=None):
try:
tree = xml.etree.ElementTree.ElementTree(file=metadata_path)
except:
print(metadata_path)
raise
root = tree.getroot()
ver = version.replace('-','~').replace('~', '-', 1)
if kodi_version:
api_ver = BUILD_VERSIONS.get(kodi_version, {}).get('python-api')
if api_ver:
for el in root.find('requires'):
if el.get('addon') == 'xbmc.python':
el.set('version', api_ver)
ver += '_{vers}'.format(vers=kodi_version)
root.set('version', ver)
with io.BytesIO() as info_file:
tree.write(info_file, encoding='UTF-8', xml_declaration=True)
info_contents = info_file.getvalue()
with open(metadata_path, 'wb') as info_file:
info_file.write(info_contents)
def copy_metadata_files(source_folder, addon_target_folder, addon_metadata):
for (source_basename, target_basename) in get_metadata_basenames(
addon_metadata):
source_path = os.path.join(source_folder, source_basename)
if os.path.isfile(source_path):
shutil.copyfile(source_path, os.path.join(addon_target_folder,
target_basename))
def fetch_addon_from_git(addon_location, target_folder):
# Parse the format "REPOSITORY_URL#BRANCH:PATH". The colon is a delimiter
# unless it looks more like a scheme, (e.g., "http://").
match = re.match(
'((?:[A-Za-z0-9+.-]+://)?.*?)(?:#([^#]*?))?(?::([^:]*))?$',
addon_location)
(clone_repo, clone_branch, clone_path) = match.group(1, 2, 3)
# Create a temporary folder for the git clone.
clone_folder = tempfile.mkdtemp('repo-')
try:
# Check out the sources.
cloned = git.Repo.clone_from(clone_repo, clone_folder)
if clone_branch is not None:
cloned.git.checkout(clone_branch)
clone_source_folder = os.path.join(clone_folder, clone_path or '.')
metadata_path = os.path.join(clone_source_folder, INFO_BASENAME)
addon_metadata = parse_metadata(metadata_path)
addon_target_folder = os.path.join(target_folder, addon_metadata.id)
# Create the compressed add-on archive.
if not os.path.isdir(addon_target_folder):
os.mkdir(addon_target_folder)
archive_path = os.path.join(
addon_target_folder, get_archive_basename(addon_metadata))
with open(archive_path, 'wb') as archive:
cloned.archive(
archive,
treeish='HEAD:{}'.format(clone_path),
prefix='{}/'.format(addon_metadata.id),
format='zip')
generate_checksum(archive_path)
copy_metadata_files(
clone_source_folder, addon_target_folder, addon_metadata)
return addon_metadata
finally:
shutil.rmtree(clone_folder, ignore_errors=False)
def fetch_addon_from_folder(raw_addon_location, target_folder, kodi_version):
addon_location = os.path.expanduser(raw_addon_location)
metadata_path = os.path.join(addon_location, INFO_BASENAME)
try:
repo = git.Repo(addon_location)
version = get_version(repo)
# Update addon metadata
update_version(metadata_path, version, kodi_version)
changelog = generate_changelog(repo)
write_changelog_file(addon_location, changelog)
update_news(metadata_path, changelog)
addon_metadata = parse_metadata(metadata_path)
addon_target_folder = os.path.join(target_folder, addon_metadata.id)
ignore = ['*.pyc', '*.pyo', '*.swp', '*.zip', '.gitignore', '.travis.yml',
'requirements.txt', '__pycache__', 'tox.ini', '.tox']
# Create the compressed add-on archive.
if not os.path.isdir(addon_target_folder):
os.mkdir(addon_target_folder)
archive_path = os.path.join(
addon_target_folder, get_archive_basename(addon_metadata))
with zipfile.ZipFile(archive_path, 'w',
compression=zipfile.ZIP_DEFLATED) as archive:
for (root, dirs, files) in os.walk(addon_location):
# Filter ignored files
files = (n for n in files
if not any(fnmatch.fnmatch(n, i) for i in ignore))
# Skip hidden dirs
dirs[:] = [d for d in dirs if not any([d[0] == '.', d == 'tests'])]
relative_root = os.path.join(
addon_metadata.id, os.path.relpath(root, addon_location))
for relative_path in files:
archive.write(
os.path.join(root, relative_path),
os.path.join(relative_root, relative_path))
generate_checksum(archive_path)
if not os.stat(addon_location) == os.stat(addon_target_folder):
copy_metadata_files(
addon_location, addon_target_folder, addon_metadata)
repo.git.clear_cache()
repo.__del__()
finally:
import stat
for root, dirs, files in os.walk(addon_location):
for dir in dirs:
os.chmod(os.path.join(root, dir), stat.S_IRWXU)
for file in files:
os.chmod(os.path.join(root, file), stat.S_IRWXU)
return addon_metadata
def fetch_addon_from_zip(raw_addon_location, target_folder):
addon_location = os.path.expanduser(raw_addon_location)
with zipfile.ZipFile(
addon_location, compression=zipfile.ZIP_DEFLATED) as archive:
# Find out the name of the archive's root folder.
roots = frozenset(
next(iter(path.split(os.path.sep)), '')
for path in archive.namelist())
if len(roots) != 1:
raise RuntimeError('Archive should contain one directory')
root = next(iter(roots))
if not root:
raise RuntimeError('Archive should contain a directory')
metadata_file = archive.open(os.path.join(root, INFO_BASENAME))
addon_metadata = parse_metadata(metadata_file)
addon_target_folder = os.path.join(target_folder, addon_metadata.id)
# Copy the metadata files.
if not os.path.isdir(addon_target_folder):
os.mkdir(addon_target_folder)
for (source_basename, target_basename) in get_metadata_basenames(
addon_metadata):
try:
source_file = archive.open(os.path.join(root, source_basename))
except KeyError:
continue
with open(
os.path.join(addon_target_folder, target_basename),
'wb') as target_file:
shutil.copyfileobj(source_file, target_file)
# Copy the archive.
archive_basename = get_archive_basename(addon_metadata)
archive_path = os.path.join(addon_target_folder, archive_basename)
if (not os.path.samefile(
os.path.dirname(addon_location), addon_target_folder) or
os.path.basename(addon_location) != archive_basename):
shutil.copyfile(addon_location, archive_path)
generate_checksum(archive_path)
return addon_metadata
def fetch_addon(addon_location, target_folder, result_slot, kodi_version):
tf = False
temp_folder = None
try:
if is_url(addon_location):
addon_metadata = fetch_addon_from_git(
addon_location, target_folder)
elif os.path.isdir(addon_location):
# create separate folders for each version
temp_folder = os.path.join(addon_location, '.{vers}'.format(vers=kodi_version))
tf = True
shutil.copytree(addon_location, temp_folder, ignore=(shutil.ignore_patterns('.*')))
shutil.copytree(os.path.join(addon_location, '.git'), os.path.join(temp_folder, '.git'))
addon_metadata = fetch_addon_from_folder(
temp_folder, target_folder, kodi_version)
elif os.path.isfile(addon_location):
addon_metadata = fetch_addon_from_zip(
addon_location, target_folder)
else:
raise RuntimeError('Path not found: ' + addon_location)
result_slot.append(WorkerResult(addon_metadata, None))
except Exception:
result_slot.append(WorkerResult(None, sys.exc_info()))
finally:
if tf and temp_folder:
shutil.rmtree(temp_folder, ignore_errors=False)
def get_addon_worker(addon_location, target_folder, kodi_version):
result_slot = []
thread = threading.Thread(target=lambda: fetch_addon(
addon_location, target_folder, result_slot, kodi_version))
return AddonWorker(thread, result_slot)
def create_repository(addon_locations, data_path, is_compressed, buildvers):
if is_compressed:
info_basename = 'addons.xml.gz'
else:
info_basename = 'addons.xml'
for kodi_version in buildvers:
target_folder = os.path.join(data_path, kodi_version)
# Create the target folder.
if not os.path.isdir(target_folder):
os.mkdir(target_folder)
info_path = os.path.join(target_folder, info_basename)
# Fetch all the add-on sources in parallel.
workers = [
get_addon_worker(addon_location, target_folder, kodi_version)
for addon_location in addon_locations]
for worker in workers:
worker.thread.start()
for worker in workers:
worker.thread.join()
# Collect the results from all the threads.
metadata = []
for worker in workers:
try:
result = next(iter(worker.result_slot))
except StopIteration:
raise RuntimeError('Addon worker did not report result')
if result.exc_info is not None:
import traceback
traceback.print_tb(result.exc_info[2])
raise result.exc_info[1]
metadata.append(result.addon_metadata)
# If addons.xml already exists, read it
if os.path.isfile(info_path):
tree = xml.etree.ElementTree.ElementTree(file=info_path)
root = tree.getroot()
else:
# Generate the addons.xml file.
root = xml.etree.ElementTree.Element('addons')
for addon_metadata in metadata:
# Remove existing addon from doc
for addon in root[:]: # use copy to avoid iteration errors
if addon.attrib.get('id') == addon_metadata.id:
root.remove(addon)
for addon_metadata in metadata:
tree = root.append(addon_metadata.root)
tree = xml.etree.ElementTree.ElementTree(root)
with io.BytesIO() as info_file:
tree.write(info_file, encoding='UTF-8', xml_declaration=True)
info_contents = info_file.getvalue()
if is_compressed:
info_file = gzip.open(info_path, 'wb')
else:
info_file = open(info_path, 'wb')
with info_file:
info_file.write(info_contents)
# Calculate the signature.
digest = hashlib.md5(info_contents).hexdigest()
with open(os.path.join(target_folder, 'addons.xml.md5'), 'w') as sig:
sig.write(digest)
def main():
parser = argparse.ArgumentParser(
description='Create a Kodi add-on repository from add-on sources')
parser.add_argument('--datadir', '-d', default='.',
help='Path to place the add-ons [current directory]')
parser.add_argument('--compressed', '-z', action='store_true',
help='Compress addons.xml with gzip')
parser.add_argument('addon', nargs='*', metavar='ADDON',
help='Location of the add-on: either a path to a '
'local folder or to a zip archive or a URL for '
'a Git repository with the format '
'REPOSITORY_URL#BRANCH:PATH')
parser.add_argument('--buildvers', '-b', action='store',
nargs='*', default=['leia'], type=str.lower,
help='Versions of Kodi to build for e.g Leia, '
'Matrix etc.')
args = parser.parse_args()
data_path = os.path.expanduser(args.datadir)
create_repository(args.addon, data_path, args.compressed, args.buildvers)
if __name__ == "__main__":
main()