2022-11-19 17:39:30 +01:00
|
|
|
#!/usr/bin/python3
|
|
|
|
|
2022-11-19 21:45:38 +01:00
|
|
|
import sys
|
2022-11-19 17:39:30 +01:00
|
|
|
import os
|
|
|
|
import json
|
|
|
|
import toml
|
2022-11-19 21:45:38 +01:00
|
|
|
import yaml
|
2022-11-19 17:39:30 +01:00
|
|
|
import time
|
|
|
|
from collections import OrderedDict
|
|
|
|
|
2022-11-19 21:45:38 +01:00
|
|
|
CATALOG_LIST_PATH = "/etc/yunohost/apps_catalog.yml"
|
2024-03-14 11:04:23 +01:00
|
|
|
assert os.path.exists(
|
|
|
|
CATALOG_LIST_PATH
|
|
|
|
), f"Catalog list yaml file '{CATALOG_LIST_PATH} does not exists"
|
2022-11-19 17:39:30 +01:00
|
|
|
|
|
|
|
now = time.time()
|
|
|
|
my_env = os.environ.copy()
|
|
|
|
my_env["GIT_TERMINAL_PROMPT"] = "0"
|
|
|
|
|
2022-11-19 21:45:38 +01:00
|
|
|
DEFAULT_APPS_FOLDER = "/ynh-dev/custom-catalog/"
|
2022-11-19 17:39:30 +01:00
|
|
|
DEFAULT_APP_BRANCH = "master"
|
|
|
|
|
|
|
|
|
|
|
|
def build(folder=DEFAULT_APPS_FOLDER):
|
|
|
|
assert os.path.exists(folder), f"'{folder}' doesn't exists."
|
|
|
|
|
|
|
|
app_list_path = os.path.join(folder, "apps.json")
|
|
|
|
assert os.path.exists(app_list_path), "no 'apps.json' app list found."
|
|
|
|
|
|
|
|
with open(app_list_path) as f:
|
|
|
|
app_list = json.load(f)
|
|
|
|
|
|
|
|
apps = {}
|
2022-11-19 21:45:38 +01:00
|
|
|
fail = False
|
2022-11-19 17:39:30 +01:00
|
|
|
|
|
|
|
for app, infos in app_list.items():
|
|
|
|
app = app.lower()
|
|
|
|
try:
|
|
|
|
app_dict = build_app_dict(app, infos, folder)
|
|
|
|
except Exception as e:
|
2022-11-19 21:45:38 +01:00
|
|
|
print(f"[\033[1m\033[31mFAIL\033[00m] Processing {app} failed: {str(e)}")
|
|
|
|
fail = True
|
2022-11-19 17:39:30 +01:00
|
|
|
continue
|
|
|
|
|
|
|
|
apps[app_dict["id"]] = app_dict
|
|
|
|
|
|
|
|
# We also remove the app install question and resources parts which aint needed anymore by webadmin etc (or at least we think ;P)
|
|
|
|
for app in apps.values():
|
|
|
|
if "manifest" in app and "install" in app["manifest"]:
|
|
|
|
del app["manifest"]["install"]
|
|
|
|
if "manifest" in app and "resources" in app["manifest"]:
|
|
|
|
del app["manifest"]["resources"]
|
|
|
|
|
|
|
|
output_file = os.path.join(folder, "catalog.json")
|
|
|
|
data = {
|
|
|
|
"apps": apps,
|
|
|
|
"from_api_version": 3,
|
|
|
|
}
|
|
|
|
|
|
|
|
with open(output_file, "w") as f:
|
|
|
|
f.write(json.dumps(data, sort_keys=True, indent=2))
|
|
|
|
|
2022-11-19 21:45:38 +01:00
|
|
|
if fail:
|
|
|
|
sys.exit(1)
|
2022-11-19 17:39:30 +01:00
|
|
|
|
2024-03-14 11:04:23 +01:00
|
|
|
|
2022-11-19 17:39:30 +01:00
|
|
|
def build_app_dict(app, infos, folder):
|
|
|
|
app_folder = os.path.join(folder, app + "_ynh")
|
|
|
|
|
|
|
|
# Build the dict with all the infos
|
|
|
|
manifest_toml = os.path.join(app_folder, "manifest.toml")
|
|
|
|
manifest_json = os.path.join(app_folder, "manifest.json")
|
|
|
|
if os.path.exists(manifest_toml):
|
|
|
|
with open(manifest_toml) as f:
|
|
|
|
manifest = toml.load(f, _dict=OrderedDict)
|
|
|
|
else:
|
|
|
|
with open(manifest_json) as f:
|
|
|
|
manifest = json.load(f, _dict=OrderedDict)
|
|
|
|
|
|
|
|
return {
|
|
|
|
"id": app,
|
|
|
|
"git": {
|
|
|
|
"branch": infos.get("branch", DEFAULT_APP_BRANCH),
|
|
|
|
"revision": infos.get("revision", "HEAD"),
|
|
|
|
"url": f"file://{app_folder}",
|
|
|
|
},
|
|
|
|
"lastUpdate": now,
|
|
|
|
"manifest": manifest,
|
|
|
|
"state": infos.get("state", "notworking"),
|
|
|
|
"level": infos.get("level", -1),
|
|
|
|
"maintained": infos.get("maintained", True),
|
|
|
|
# "high_quality": infos.get("high_quality", False),
|
|
|
|
# "featured": infos.get("featured", False),
|
|
|
|
"category": infos.get("category", None),
|
|
|
|
"subtags": infos.get("subtags", []),
|
|
|
|
"potential_alternative_to": infos.get("potential_alternative_to", []),
|
|
|
|
"antifeatures": list(
|
|
|
|
set(
|
|
|
|
list(manifest.get("antifeatures", {}).keys())
|
|
|
|
+ infos.get("antifeatures", [])
|
|
|
|
)
|
|
|
|
),
|
|
|
|
}
|
|
|
|
|
2024-03-14 11:04:23 +01:00
|
|
|
|
2022-11-19 21:45:38 +01:00
|
|
|
def reset():
|
|
|
|
with open(CATALOG_LIST_PATH, "w") as f:
|
|
|
|
catalog_list = [{"id": "default", "url": "https://app.yunohost.org/default/"}]
|
|
|
|
yaml.safe_dump(catalog_list, f, default_flow_style=False)
|
|
|
|
|
|
|
|
|
|
|
|
def add():
|
|
|
|
with open(CATALOG_LIST_PATH) as f:
|
|
|
|
catalog_list = yaml.load(f, Loader=yaml.FullLoader)
|
|
|
|
ids = [catalog["id"] for catalog in catalog_list]
|
|
|
|
if "custom" not in ids:
|
|
|
|
catalog_list.append({"id": "custom", "url": None})
|
|
|
|
with open(CATALOG_LIST_PATH, "w") as f:
|
|
|
|
yaml.safe_dump(catalog_list, f, default_flow_style=False)
|
|
|
|
|
2024-03-14 11:04:23 +01:00
|
|
|
|
2022-11-19 21:45:38 +01:00
|
|
|
def override():
|
|
|
|
with open(CATALOG_LIST_PATH, "w") as f:
|
|
|
|
catalog_list = [{"id": "custom", "url": None}]
|
|
|
|
yaml.safe_dump(catalog_list, f, default_flow_style=False)
|