|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305 |
- # imports - standard imports
- import os
- import pathlib
- import re
- import sys
- import subprocess
- from typing import List, Optional
- from functools import lru_cache
-
- # imports - module imports
- from bench.exceptions import (
- InvalidRemoteException,
- InvalidBranchException,
- CommandFailedError,
- VersionNotFound,
- )
- from bench.app import get_repo_dir
-
-
- def is_version_upgrade(app="xhiveframework", bench_path=".", branch=None):
- upstream_version = get_upstream_version(app=app, branch=branch, bench_path=bench_path)
-
- if not upstream_version:
- raise InvalidBranchException(
- f"Specified branch of app {app} is not in upstream remote"
- )
-
- local_version = get_major_version(get_current_version(app, bench_path=bench_path))
- upstream_version = get_major_version(upstream_version)
-
- if upstream_version > local_version:
- return (True, local_version, upstream_version)
-
- return (False, local_version, upstream_version)
-
-
- def switch_branch(branch, apps=None, bench_path=".", upgrade=False, check_upgrade=True):
- import git
- from bench.bench import Bench
- from bench.utils import log, exec_cmd
- from bench.utils.bench import (
- build_assets,
- patch_sites,
- post_upgrade,
- )
- from bench.utils.system import backup_all_sites
-
- apps_dir = os.path.join(bench_path, "apps")
- version_upgrade = (False,)
- switched_apps = []
-
- if not apps:
- apps = [
- name for name in os.listdir(apps_dir) if os.path.isdir(os.path.join(apps_dir, name))
- ]
-
- for app in apps:
- app_dir = os.path.join(apps_dir, app)
-
- if not os.path.exists(app_dir):
- log(f"{app} does not exist!", level=2)
- continue
-
- repo = git.Repo(app_dir)
- unshallow_flag = os.path.exists(os.path.join(app_dir, ".git", "shallow"))
- log(f"Fetching upstream {'unshallow ' if unshallow_flag else ''}for {app}")
-
- exec_cmd("git remote set-branches upstream '*'", cwd=app_dir)
- exec_cmd(
- f"git fetch --all{' --unshallow' if unshallow_flag else ''} --quiet", cwd=app_dir
- )
-
- if check_upgrade:
- version_upgrade = is_version_upgrade(app=app, bench_path=bench_path, branch=branch)
- if version_upgrade[0] and not upgrade:
- log(
- f"Switching to {branch} will cause upgrade from"
- f" {version_upgrade[1]} to {version_upgrade[2]}. Pass --upgrade to"
- " confirm",
- level=2,
- )
- sys.exit(1)
-
- print("Switching for " + app)
- exec_cmd(f"git checkout -f {branch}", cwd=app_dir)
-
- if str(repo.active_branch) == branch:
- switched_apps.append(app)
- else:
- log(f"Switching branches failed for: {app}", level=2)
-
- if switched_apps:
- log(f"Successfully switched branches for: {', '.join(switched_apps)}", level=1)
- print(
- "Please run `bench update --patch` to be safe from any differences in"
- " database schema"
- )
-
- if version_upgrade[0] and upgrade:
- Bench(bench_path).setup.requirements()
- backup_all_sites()
- patch_sites()
- build_assets()
- post_upgrade(version_upgrade[1], version_upgrade[2])
-
-
- def switch_to_branch(branch=None, apps=None, bench_path=".", upgrade=False):
- switch_branch(branch, apps=apps, bench_path=bench_path, upgrade=upgrade)
-
-
- def switch_to_develop(apps=None, bench_path=".", upgrade=True):
- switch_branch("develop", apps=apps, bench_path=bench_path, upgrade=upgrade)
-
-
- def get_version_from_string(contents, field="__version__"):
- match = re.search(
- r"^(\s*%s\s*=\s*['\\\"])(.+?)(['\"])" % field, contents, flags=(re.S | re.M)
- )
- if not match:
- raise VersionNotFound(f"{contents} is not a valid version")
- return match.group(2)
-
-
- def get_major_version(version):
- import semantic_version
-
- return semantic_version.Version(version).major
-
-
- def get_develop_version(app, bench_path="."):
- repo_dir = get_repo_dir(app, bench_path=bench_path)
- with open(os.path.join(repo_dir, os.path.basename(repo_dir), "hooks.py")) as f:
- return get_version_from_string(f.read(), field="develop_version")
-
-
- def get_upstream_version(app, branch=None, bench_path="."):
- repo_dir = get_repo_dir(app, bench_path=bench_path)
- if not branch:
- branch = get_current_branch(app, bench_path=bench_path)
-
- try:
- subprocess.call(
- f"git fetch --depth=1 --no-tags upstream {branch}", shell=True, cwd=repo_dir
- )
- except CommandFailedError:
- raise InvalidRemoteException(f"Failed to fetch from remote named upstream for {app}")
-
- try:
- contents = subprocess.check_output(
- f"git show upstream/{branch}:{app}/__init__.py",
- shell=True,
- cwd=repo_dir,
- stderr=subprocess.STDOUT,
- )
- contents = contents.decode("utf-8")
- except subprocess.CalledProcessError as e:
- if b"Invalid object" in e.output:
- return None
- else:
- raise
- return get_version_from_string(contents)
-
-
- def get_current_xhiveframework_version(bench_path="."):
- try:
- return get_major_version(get_current_version("xhiveframework", bench_path=bench_path))
- except OSError:
- return 0
-
-
- def get_current_branch(app, bench_path="."):
- from bench.utils import get_cmd_output
-
- repo_dir = get_repo_dir(app, bench_path=bench_path)
- return get_cmd_output("basename $(git symbolic-ref -q HEAD)", cwd=repo_dir)
-
-
- @lru_cache(maxsize=5)
- def get_required_deps(org, name, branch, deps="hooks.py"):
- import requests
- import base64
-
- git_api_url = f"https://api.github.com/repos/{org}/{name}/contents/{name}/{deps}"
- params = {"ref": branch or "develop"}
- res = requests.get(url=git_api_url, params=params).json()
-
- if "message" in res:
- git_url = (
- f"https://raw.githubusercontent.com/{org}/{name}/{params['ref']}/{name}/{deps}"
- )
- return requests.get(git_url).text
-
- return base64.decodebytes(res["content"].encode()).decode()
-
-
- def required_apps_from_hooks(required_deps: str, local: bool = False) -> List:
- import ast
-
- required_apps_re = re.compile(r"required_apps\s+=\s+(.*)")
-
- if local:
- required_deps = pathlib.Path(required_deps).read_text()
-
- _req_apps_tag = required_apps_re.search(required_deps)
- req_apps_tag = _req_apps_tag[1]
- return ast.literal_eval(req_apps_tag)
-
-
- def get_remote(app, bench_path="."):
- repo_dir = get_repo_dir(app, bench_path=bench_path)
- contents = subprocess.check_output(
- ["git", "remote", "-v"], cwd=repo_dir, stderr=subprocess.STDOUT
- )
- contents = contents.decode("utf-8")
- if re.findall(r"upstream[\s]+", contents):
- return "upstream"
- elif not contents:
- # if contents is an empty string => remote doesn't exist
- return False
- else:
- # get the first remote
- return contents.splitlines()[0].split()[0]
-
-
- def get_app_name(bench_path: str, folder_name: str) -> str:
- """Retrieves `name` attribute of app - equivalent to distribution name
- of python package. Fetches from pyproject.toml, setup.cfg or setup.py
- whichever defines it in that order.
- """
- app_name = None
- apps_path = os.path.join(os.path.abspath(bench_path), "apps")
-
- config_py_path = os.path.join(apps_path, folder_name, "setup.cfg")
- setup_py_path = os.path.join(apps_path, folder_name, "setup.py")
-
- pyproject_path = os.path.join(apps_path, folder_name, "pyproject.toml")
- pyproject = get_pyproject(pyproject_path)
- if pyproject:
- app_name = pyproject.get("project", {}).get("name")
-
- if not app_name and os.path.exists(config_py_path):
- from setuptools.config import read_configuration
-
- config = read_configuration(config_py_path)
- app_name = config.get("metadata", {}).get("name")
-
- if not app_name:
- # retrieve app name from setup.py as fallback
- with open(setup_py_path, "rb") as f:
- app_name = re.search(r'name\s*=\s*[\'"](.*)[\'"]', f.read().decode("utf-8"))[1]
-
- if app_name and folder_name != app_name:
- os.rename(os.path.join(apps_path, folder_name), os.path.join(apps_path, app_name))
- return app_name
-
- return folder_name
-
-
- def get_pyproject(pyproject_path: str) -> Optional[dict]:
- if not os.path.exists(pyproject_path):
- return None
-
- try:
- from tomli import load
- except ImportError:
- from tomllib import load
-
- with open(pyproject_path, "rb") as f:
- return load(f)
-
-
- def check_existing_dir(bench_path, repo_name):
- cloned_path = os.path.join(bench_path, "apps", repo_name)
- dir_already_exists = os.path.isdir(cloned_path)
- return dir_already_exists, cloned_path
-
-
- def get_current_version(app, bench_path="."):
- current_version = None
- repo_dir = get_repo_dir(app, bench_path=bench_path)
- pyproject_path = os.path.join(repo_dir, "pyproject.toml")
- config_path = os.path.join(repo_dir, "setup.cfg")
- init_path = os.path.join(repo_dir, os.path.basename(repo_dir), "__init__.py")
- setup_path = os.path.join(repo_dir, "setup.py")
-
- try:
- pyproject = get_pyproject(pyproject_path)
- if pyproject:
- current_version = pyproject.get("project", {}).get("version")
-
- if not current_version and os.path.exists(config_path):
- from setuptools.config import read_configuration
-
- config = read_configuration(config_path)
- current_version = config.get("metadata", {}).get("version")
- if not current_version:
- with open(init_path) as f:
- current_version = get_version_from_string(f.read())
-
- except (AttributeError, VersionNotFound):
- # backward compatibility
- with open(setup_path) as f:
- current_version = get_version_from_string(f.read(), field="version")
-
- return current_version
|