#!/usr/bin/env python2 import re import os import sys import time import json import zlib import subprocess import yaml import requests from dateutil.parser import parse # Regular expression patterns list_name = "apps.json" assert os.path.exists(".github_credentials"), "You should add github credentials in .github_credentials first. (Format :)" assert os.path.exists(list_name), "File %s doesn't exist ?" % list_name # GitHub credentials from ./.github_credentials than should contain : # For example: foobar:abcdef1234567890 github_credentials = open(".github_credentials").read().strip().split(":") # Helpers def fail(msg, retcode=1): """Show failure message and exit.""" print("Error: {0:s}".format(msg)) sys.exit(retcode) def error(msg): msg = "[Applist builder error] " + msg if os.path.exists("/usr/bin/sendxmpppy"): subprocess.call(["sendxmpppy", msg], stdout=open(os.devnull, 'wb')) print(msg) def include_translations_in_manifest(app_name, manifest): for i in os.listdir("locales"): if not i.endswith("json"): continue if i == "en.json": continue current_lang = i.split(".")[0] translations = json.load(open(os.path.join("locales", i), "r")) key = "%s_manifest_description" % app_name if key in translations and translations[key]: manifest["description"][current_lang] = translations[key] for category, questions in manifest["arguments"].items(): for question in questions: key = "%s_manifest_arguments_%s_%s" % (app_name, category, question["name"]) # don't overwrite already existing translation in manifests for now if key in translations and translations[key] and not current_lang not in question["ask"]: print "[ask]", current_lang, key question["ask"][current_lang] = translations[key] key = "%s_manifest_arguments_%s_help_%s" % (app_name, category, question["name"]) # don't overwrite already existing translation in manifests for now if key in translations and translations[key] and not current_lang not in question.get("help", []): print "[help]", current_lang, key question["help"][current_lang] = translations[key] return manifest def get_json(url, verify=True): try: # Retrieve and load manifest if ".github" in url: r = requests.get(url, verify=verify, auth=github_credentials) else: r = requests.get(url, verify=verify) r.raise_for_status() return r.json() except requests.exceptions.RequestException as e: print("-> Error: unable to request %s, %s" % (url, e)) return None except ValueError as e: print("-> Error: unable to decode json from %s : %s" % (url, e)) return None def get_zlib(url, verify=True): try: # Retrieve last commit information r = requests.get(obj_url, verify=verify) r.raise_for_status() return zlib.decompress(r.content).decode('utf-8').split('\x00') except requests.exceptions.RequestException as e: print("-> Error: unable to request %s, %s" % (obj_url, e)) return None except zlib.error as e: print("-> Error: unable to decompress object from %s : %s" % (url, e)) return None # Main # Get list name from filename print(":: Building %s list..." % list_name) output = '%s-build.json' % list_name already_built_file = {} if os.path.exists(output): try: already_built_file = json.load(open(output)) except Exception as e: print("Error while trying to load already built file: %s" % e) # Loop through every apps result_dict = {} for app, info in apps_list.items(): print("---") print("Processing '%s'..." % app) app = app.lower() # Store usefull values app_branch = info['branch'] app_url = info['url'] app_rev = info['revision'] app_state = info["state"] app_level = info.get("level") app_maintained = info.get("maintained", True) app_featured = info.get("featured", False) app_high_quality = info.get("high_quality", False) forge_site = app_url.split('/')[2] owner = app_url.split('/')[3] repo = app_url.split('/')[4] if forge_site == "github.com": forge_type = "github" elif forge_site == "framagit.org": forge_type = "gitlab" elif forge_site == "code.ffdn.org": forge_type = "gitlab" elif forge_site == "code.antopie.org": forge_type = "gitea" else: forge_type = "unknown" previous_state = already_built_file.get(app, {}).get("state", {}) manifest = {} timestamp = None previous_rev = already_built_file.get(app, {}).get("git", {}).get("revision", None) previous_url = already_built_file.get(app, {}).get("git", {}).get("url") previous_level = already_built_file.get(app, {}).get("level") previous_maintained = already_built_file.get(app, {}).get("maintained") previous_featured = already_built_file.get(app, {}).get("featured") previous_high_quality = already_built_file.get(app, {}).get("high_quality") if app_rev == "HEAD": app_rev = subprocess.check_output(["git", "ls-remote", app_url, "refs/heads/"+app_branch]).split()[0] if not re.match(r"^[0-9a-f]+$", app_rev): error("Revision for %s did not match expected regex" % app) continue if previous_rev is None: previous_rev = 'HEAD' # If this is a github repo, we are able to optimize things a bit by looking at the diff # and not actually updating the app if only README or other not-so-important files were edited if previous_rev != app_rev and forge_type == "github": url = "https://api.github.com/repos/{}/{}/compare/{}...{}".format(owner, repo, previous_rev, app_branch) diff = get_json(url) if not diff or not diff["commits"]: app_rev = previous_rev if previous_rev != 'HEAD' else app_rev else: # Only if those files got updated, do we want to update the # commit (otherwise that would trigger an unecessary upgrade) ignore_files = [ "README.md", "LICENSE", ".gitignore", "check_process", ".travis.yml" ] diff_files = [ f for f in diff["files"] if f["filename"] not in ignore_files ] if diff_files: print("This app points to HEAD and significant changes where found between HEAD and previous commit") app_rev = diff["commits"][-1]["sha"] else: print("This app points to HEAD but no significant changes where found compared to HEAD, so keeping the previous commit") app_rev = previous_rev if previous_rev != 'HEAD' else app_rev print("Previous commit : %s" % previous_rev) print("Current commit : %s" % app_rev) if previous_rev == app_rev and previous_url == app_url: print("Already up to date, ignoring") result_dict[app] = already_built_file[app] if previous_state != app_state: result_dict[app]["state"] = app_state print("... but has changed of state, updating it from '%s' to '%s'" % (previous_state, app_state)) if previous_level != app_level or app_level is None: result_dict[app]["level"] = app_level print("... but has changed of level, updating it from '%s' to '%s'" % (previous_level, app_level)) if previous_maintained != app_maintained: result_dict[app]["maintained"] = app_maintained print("... but maintained status changed, updating it from '%s' to '%s'" % (previous_maintained, app_maintained)) if previous_featured != app_featured: result_dict[app]["featured"] = app_featured print("... but featured status changed, updating it from '%s' to '%s'" % (previous_featured, app_featured)) if previous_high_quality != app_high_quality: result_dict[app]["high_quality"] = app_high_quality print("... but high_quality status changed, updating it from '%s' to '%s'" % (previous_high_quality, app_high_quality)) print "update translations but don't download anything" result_dict[app]['manifest'] = include_translations_in_manifest(app, result_dict[app]['manifest']) continue print("Revision changed ! Updating...") raw_url = 'https://%(forge_site)s/%(owner)s/%(repo)s/raw/%(app_rev)s/manifest.json' % { "forge_site": forge_site, "owner": owner, "repo": repo, "app_rev": app_rev } manifest = get_json(raw_url, verify=True) if manifest is None: error("Manifest is empty for app %s ?" % app) continue # Hosted on GitHub if forge_type == "github": api_url = 'https://api.github.com/repos/%(owner)s/%(repo)s/commits/%(app_rev)s' % { "owner": owner, "repo": repo, "app_rev": app_rev } info2 = get_json(api_url) if info2 is None: error("Commit info is empty for app %s ?" % app) continue commit_date = parse(info2['commit']['author']['date']) timestamp = int(time.mktime(commit_date.timetuple())) # Gitlab-type forge elif forge_type == "gitlab": api_url = 'https://%(forge_site)s/api/v4/projects/%(owner)s%%2F%(repo)s/repository/commits/%(app_rev)s' % { "forge_site": forge_site, "owner": owner, "repo": repo, "app_rev": app_rev } commit = get_json(api_url) if commit is None: error("Commit info is empty for app %s ?" % app) continue commit_date = parse(commit["authored_date"]) timestamp = int(time.mktime(commit_date.timetuple())) elif forge_type == "gitea": api_url = 'https://%(forge_site)s/api/v1/repos/%(owner)s/%(repo)s/git/commits/%(app_rev)s' % { "forge_site": forge_site, "owner": owner, "repo": repo, "app_rev": app_rev } info2 = get_json(api_url) if info2 is None: error("Commit info is empty for app %s ?" % app) continue commit_date = parse(info2['commit']['author']['date']) timestamp = int(time.mktime(commit_date.timetuple())) # Gogs-type forge elif forge_type == "gogs": if not app_url.endswith('.git'): app_url += ".git" obj_url = '%s/objects/%s/%s' % ( app_url, app_rev[0:2], app_rev[2:] ) commit = get_zlib(obj_url, verify=False) if commit is None or len(commit) < 2: error("Commit info is empty for app %s ?" % app) continue else: commit = commit[1] re_commit_author = re.compile( r'^author (?P.+) <(?P.+)> (?P