mirror of
https://github.com/frappe/bench.git
synced 2025-01-10 17:24:41 +00:00
197 lines
6.6 KiB
Python
197 lines
6.6 KiB
Python
import os
|
|
from .utils import exec_cmd, get_frappe, check_git_for_shallow_clone, get_config, build_assets, restart_supervisor_processes, get_cmd_output, run_frappe_cmd
|
|
|
|
import logging
|
|
import requests
|
|
import semantic_version
|
|
import json
|
|
import re
|
|
import subprocess
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
class MajorVersionUpgradeException(Exception):
|
|
def __init__(self, message, upstream_version, local_version):
|
|
super(MajorVersionUpgradeException, self).__init__(message)
|
|
self.upstream_version = upstream_version
|
|
self.local_version = local_version
|
|
|
|
def get_apps(bench='.'):
|
|
try:
|
|
with open(os.path.join(bench, 'sites', 'apps.txt')) as f:
|
|
return f.read().strip().split('\n')
|
|
except IOError:
|
|
return []
|
|
|
|
def add_to_appstxt(app, bench='.'):
|
|
apps = get_apps(bench=bench)
|
|
if app not in apps:
|
|
apps.append(app)
|
|
return write_appstxt(apps, bench=bench)
|
|
|
|
def remove_from_appstxt(app, bench='.'):
|
|
apps = get_apps(bench=bench)
|
|
if app in apps:
|
|
apps.remove(app)
|
|
return write_appstxt(apps, bench=bench)
|
|
|
|
def write_appstxt(apps, bench='.'):
|
|
with open(os.path.join(bench, 'sites', 'apps.txt'), 'w') as f:
|
|
return f.write('\n'.join(apps))
|
|
|
|
def get_app(app, git_url, branch=None, bench='.', build_asset_files=True):
|
|
logger.info('getting app {}'.format(app))
|
|
shallow_clone = '--depth 1' if check_git_for_shallow_clone() and get_config().get('shallow_clone') else ''
|
|
branch = '--branch {branch}'.format(branch=branch) if branch else ''
|
|
exec_cmd("git clone {git_url} {branch} {shallow_clone} --origin upstream {app}".format(
|
|
git_url=git_url,
|
|
app=app,
|
|
shallow_clone=shallow_clone,
|
|
branch=branch),
|
|
cwd=os.path.join(bench, 'apps'))
|
|
print 'installing', app
|
|
install_app(app, bench=bench)
|
|
if build_asset_files:
|
|
build_assets(bench=bench)
|
|
conf = get_config()
|
|
if conf.get('restart_supervisor_on_update'):
|
|
restart_supervisor_processes(bench=bench)
|
|
|
|
def new_app(app, bench='.'):
|
|
logger.info('creating new app {}'.format(app))
|
|
apps = os.path.abspath(os.path.join(bench, 'apps'))
|
|
if FRAPPE_VERSION == 4:
|
|
exec_cmd("{frappe} --make_app {apps} {app}".format(frappe=get_frappe(bench=bench),
|
|
apps=apps, app=app))
|
|
else:
|
|
run_frappe_cmd('make-app', apps, app, bench=bench)
|
|
install_app(app, bench=bench)
|
|
|
|
def install_app(app, bench='.'):
|
|
logger.info('installing {}'.format(app))
|
|
conf = get_config()
|
|
find_links = '--find-links={}'.format(conf.get('wheel_cache_dir')) if conf.get('wheel_cache_dir') else ''
|
|
exec_cmd("{pip} install -q {find_links} -e {app}".format(
|
|
pip=os.path.join(bench, 'env', 'bin', 'pip'),
|
|
app=os.path.join(bench, 'apps', app),
|
|
find_links=find_links))
|
|
add_to_appstxt(app, bench=bench)
|
|
|
|
def pull_all_apps(bench='.'):
|
|
apps_dir = os.path.join(bench, 'apps')
|
|
apps = [app for app in os.listdir(apps_dir) if os.path.isdir(os.path.join(apps_dir, app))]
|
|
rebase = '--rebase' if get_config().get('rebase_on_pull') else ''
|
|
frappe_dir = os.path.join(apps_dir, 'frappe')
|
|
|
|
for app in apps:
|
|
app_dir = os.path.join(apps_dir, app)
|
|
if os.path.exists(os.path.join(app_dir, '.git')):
|
|
logger.info('pulling {0}'.format(app))
|
|
exec_cmd("git pull {rebase} upstream {branch}".format(rebase=rebase, branch=get_current_branch(app_dir)), cwd=app_dir)
|
|
|
|
def is_version_upgrade(bench='.', branch=None):
|
|
apps_dir = os.path.join(bench, 'apps')
|
|
frappe_dir = os.path.join(apps_dir, 'frappe')
|
|
|
|
fetch_upstream(frappe_dir)
|
|
upstream_version = get_upstream_version(frappe_dir, branch=branch)
|
|
|
|
if not upstream_version:
|
|
raise Exception("Current branch not in upstream")
|
|
|
|
local_version = get_major_version(get_current_version(frappe_dir))
|
|
upstream_version = get_major_version(upstream_version)
|
|
|
|
if upstream_version - local_version > 0:
|
|
return (local_version, upstream_version)
|
|
return False
|
|
|
|
def get_current_frappe_version(bench='.'):
|
|
apps_dir = os.path.join(bench, 'apps')
|
|
frappe_dir = os.path.join(apps_dir, 'frappe')
|
|
|
|
try:
|
|
return get_major_version(get_current_version(frappe_dir))
|
|
except IOError:
|
|
return ''
|
|
|
|
def get_current_branch(repo_dir):
|
|
return get_cmd_output("basename $(git symbolic-ref -q HEAD)", cwd=repo_dir)
|
|
|
|
def fetch_upstream(repo_dir):
|
|
return exec_cmd("git fetch upstream", cwd=repo_dir)
|
|
|
|
def get_current_version(repo_dir):
|
|
with open(os.path.join(repo_dir, 'setup.py')) as f:
|
|
return get_version_from_string(f.read())
|
|
|
|
def get_upstream_version(repo_dir, branch=None):
|
|
if not branch:
|
|
branch = get_current_branch(repo_dir)
|
|
try:
|
|
contents = subprocess.check_output(['git', 'show', 'upstream/{branch}:setup.py'.format(branch=branch)], cwd=repo_dir, stderr=subprocess.STDOUT)
|
|
except subprocess.CalledProcessError, e:
|
|
if "Invalid object" in e.output:
|
|
return None
|
|
else:
|
|
raise
|
|
return get_version_from_string(contents)
|
|
|
|
def switch_branch(branch, apps=None, bench='.', upgrade=False):
|
|
from .utils import update_requirements, backup_all_sites, patch_sites, build_assets, pre_upgrade, post_upgrade
|
|
import utils
|
|
apps_dir = os.path.join(bench, 'apps')
|
|
version_upgrade = is_version_upgrade(bench=bench, branch=branch)
|
|
if version_upgrade and not upgrade:
|
|
raise MajorVersionUpgradeException("Switching to {0} will cause upgrade from {1} to {2}".format(branch, version_upgrade[0], version_upgrade[1]), version_upgrade[0], version_upgrade[1])
|
|
|
|
if not apps:
|
|
apps = ('frappe', 'erpnext', 'shopping_cart')
|
|
for app in apps:
|
|
app_dir = os.path.join(apps_dir, app)
|
|
if os.path.exists(app_dir):
|
|
exec_cmd("git fetch upstream", cwd=app_dir)
|
|
exec_cmd("git checkout {branch}".format(branch=branch), cwd=app_dir)
|
|
|
|
if version_upgrade and upgrade:
|
|
pre_upgrade(version_upgrade[0], version_upgrade[1])
|
|
update_requirements()
|
|
reload(utils)
|
|
backup_all_sites()
|
|
patch_sites()
|
|
build_assets()
|
|
post_upgrade(version_upgrade[0], version_upgrade[1])
|
|
|
|
def switch_to_master(apps=None, bench='.', upgrade=False):
|
|
switch_branch('master', apps=apps, bench=bench, upgrade=upgrade)
|
|
|
|
def switch_to_develop(apps=None, bench='.', upgrade=False):
|
|
switch_branch('develop', apps=apps, bench=bench, upgrade=upgrade)
|
|
|
|
def switch_to_v4(apps=None, bench='.', upgrade=False):
|
|
switch_branch('v4.x.x', apps=apps, bench=bench, upgrade=upgrade)
|
|
|
|
def get_version_from_string(contents):
|
|
match = re.search(r"^(\s*%s\s*=\s*['\\\"])(.+?)(['\"])(?sm)" % 'version',
|
|
contents)
|
|
return match.group(2)
|
|
|
|
def get_major_version(version):
|
|
return semantic_version.Version(version).major
|
|
|
|
def install_apps_from_path(path, bench='.'):
|
|
apps = get_apps_json(path)
|
|
for app in apps:
|
|
get_app(app['name'], app['url'], branch=app.get('branch'), bench=bench, build_asset_files=False)
|
|
|
|
def get_apps_json(path):
|
|
if path.startswith('http'):
|
|
r = requests.get(path)
|
|
return r.json()
|
|
else:
|
|
with open(path) as f:
|
|
return json.load(f)
|
|
|
|
FRAPPE_VERSION = get_current_frappe_version()
|