mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-08 16:30:28 +03:00
move metadata post-parse processing to reusable function
This commit is contained in:
parent
9e5dd19fc8
commit
eeb8ba02b0
1 changed files with 14 additions and 7 deletions
|
|
@ -577,6 +577,17 @@ def get_default_app_info_list():
|
||||||
return thisinfo
|
return thisinfo
|
||||||
|
|
||||||
|
|
||||||
|
def post_metadata_parse(thisinfo):
|
||||||
|
|
||||||
|
if not thisinfo['Description']:
|
||||||
|
thisinfo['Description'].append('No description available')
|
||||||
|
|
||||||
|
for build in thisinfo['builds']:
|
||||||
|
fill_build_defaults(build)
|
||||||
|
|
||||||
|
thisinfo['builds'] = sorted(thisinfo['builds'], key=lambda build: int(build['vercode']))
|
||||||
|
|
||||||
|
|
||||||
# Parse metadata for a single application.
|
# Parse metadata for a single application.
|
||||||
#
|
#
|
||||||
# 'metafile' - the filename to read. The package id for the application comes
|
# 'metafile' - the filename to read. The package id for the application comes
|
||||||
|
|
@ -648,6 +659,8 @@ def parse_json_metadata(metafile):
|
||||||
del build['versionName']
|
del build['versionName']
|
||||||
|
|
||||||
# TODO create schema using https://pypi.python.org/pypi/jsonschema
|
# TODO create schema using https://pypi.python.org/pypi/jsonschema
|
||||||
|
post_metadata_parse(thisinfo)
|
||||||
|
|
||||||
return (appid, thisinfo)
|
return (appid, thisinfo)
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -848,13 +861,7 @@ def parse_txt_metadata(metafile):
|
||||||
elif mode == 3:
|
elif mode == 3:
|
||||||
raise MetaDataException("Unterminated build in " + metafile.name)
|
raise MetaDataException("Unterminated build in " + metafile.name)
|
||||||
|
|
||||||
if not thisinfo['Description']:
|
post_metadata_parse(thisinfo)
|
||||||
thisinfo['Description'].append('No description available')
|
|
||||||
|
|
||||||
for build in thisinfo['builds']:
|
|
||||||
fill_build_defaults(build)
|
|
||||||
|
|
||||||
thisinfo['builds'] = sorted(thisinfo['builds'], key=lambda build: int(build['vercode']))
|
|
||||||
|
|
||||||
return (appid, thisinfo)
|
return (appid, thisinfo)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue