diff --git a/setup.cfg b/setup.cfg index 59c2175..1c1fbe7 100644 --- a/setup.cfg +++ b/setup.cfg @@ -33,5 +33,4 @@ where = src [options.entry_points] console_scripts = viur = viur_cli:cli - viur-2to3 = viur_cli.scripts.viur_2to3:main get-pyodide = viur_cli.scripts.get_pyodide:main diff --git a/src/viur_cli/scripts/viur_2to3.py b/src/viur_cli/scripts/viur_2to3.py deleted file mode 100644 index d401ee2..0000000 --- a/src/viur_cli/scripts/viur_2to3.py +++ /dev/null @@ -1,153 +0,0 @@ -#!/usr/bin/env python3 -""" -Naive ViUR3 project porting script with a simple search & replace mechanism using lookup table. -""" - -import os, argparse, difflib - -# Naive lookup table. Could be done better later... -lookup = { - # old: new - "BasicApplication": "SkelModule", - "addItemSuccess": "addSuccess", - "callDeferred": "CallDeferred", - "editItemSuccess": "editSuccess", - "from server import": "from viur.core import", - "from server.bones import": "from viur.core.bones import", - "getEmtpyValueFunc": "getEmptyValueFunc", - "isLocalDevelopmentServer": "conf[\"viur.instance.is_dev_server\"]", - "onItemAdded": "onAdded", - "onItemDeleted": "onDeleted", - "onItemEdited": "onEdited", - "projectID": "conf[\"viur.instance.project_id\"]", - "utils.currentLanguage": "current.language", - "utils.currentRequestData": "current.request_data", - "utils.currentRequest": "current.request", - "utils.currentSession": "current.session", - "utils.getCurrentUser": "current.user.get", - "utils.isLocalDevelopmentServer": "conf[\"viur.instance.is_dev_server\"]", - "utils.projectID": "conf[\"viur.instance.project_id\"]", - "clearUpdateTag=True": "update_relations=False", - "seoLanguageMap": "seo_language_map", # 800 - "forcePost": "force_post", # 800 - "forceSSL": "force_ssl", # 800 - "internalExposed": "internal_exposed", # 800 - "Session.sameSite": "Session.same_site", - "Session.useSessionCookie": "Session.use_session_cookie", - "Session.cookieName": "Session.cookie_name", -} - -bones = [ - "base", - "boolean", - "captcha", - "color", - "credential", - "date", - "email", - "file", - "key", - "numeric", - "password", - "randomSlice", - "raw", - "record", - "relational", - "selectCountry", - "select", - "sortindex", - "spatial", - "string", - "text", - "treeLeaf", - "treeNode", - "user" -] - -lookup.update({ - f"{name}Bone": f"{name[0].upper()}{name[1:]}Bone" for name in bones -}) - - -def make_2to3(args, filename): - """ - Performs the conversion on a file with the provided options. - """ - with open(filename, "r") as f: - original_content = content = f.read() - - count = 0 - for k, v in lookup.items(): - if k in content: - content = content.replace(k, v) - count += 1 - - if count: - if not args.dryrun: - if not args.daredevil: - os.rename(filename, filename + ".bak") - - with open(filename, "w") as f: - f.write(content) - - print("Modified %r" % filename) - else: - print( - "\n".join( - difflib.unified_diff( - original_content.splitlines(), - content.splitlines(), - filename, - filename - ) - ) - ) - - -def main(): - # Get arguments - ap = argparse.ArgumentParser( - description="ViUR3 porting tool" - ) - - ap.add_argument( - "path", - type=str, - help="Path to file or folder" - ) - - ap.add_argument( - "-d", "--dryrun", - action="store_true", - help="Dry-run for testing, don't modify files" - ) - ap.add_argument( - "-x", "--daredevil", - action="store_true", - help="Don't make backups of files, just replace and deal with it" - ) - - args = ap.parse_args() - - if os.path.isfile(args.path): - make_2to3(args, args.path) - else: - assert os.path.isdir(args.path), f"The path {args.path!r} is invalid!" - - # Iterate all files in current folder - for root, dirs, files in os.walk(args.path): - # Ignore ViUR library folders - if any(ignore in root for ignore in ["viur", "flare", "html5"]): - continue - - for filename in files: - # Ignore anything without a .py-extension - ext = os.path.splitext(filename)[1].lower()[1:] - if ext not in ["py"]: - continue - - make_2to3(args, os.path.join(root, filename)) - - -if __name__ == "__main__": - main() diff --git a/src/viur_cli/tool.py b/src/viur_cli/tool.py index 1c119bd..98294e8 100644 --- a/src/viur_cli/tool.py +++ b/src/viur_cli/tool.py @@ -1,114 +1,80 @@ -import click -import os - -from . import cli - - -@cli.group() -def tool(): - """ - Run different ViUR-related scripts. - - The 'tool' group allows you to execute various ViUR-related scripts that help with tasks such as project porting, - Pyodide installation, and SSL certificate fixes. - - Available Commands: - - - '2to3': ViUR porting script. - - - 'pyodide': Run the get_pyodide command. - - - 'ssl_fix': SSL certificate fix for macOS. - """ - - -@tool.command(name="2to3") -@click.argument("path") -@click.option('--dryrun', '-d', is_flag=True, default=False) -@click.option('--daredevil', '-x', is_flag=True, default=False) -def two_to_three(path, *args, **kwargs): - """ - ViUR2 to ViUR3 porting script. - - The '2to3' command allows you to port an existing ViUR2 project to ViUR3. This script is used for - migrating projects from Python 2 to Python 3. - - :param path: str - The path to the project to be ported. - :param dryrun: bool, optional - Perform a dry run to test the porting process (default: False). - :param daredevil: bool, optional - Use the daredevil mode for porting (default: False). - - Example Usage: - ``` - viur tool 2to3 /path/to/project - ``` - - :return: None - """ - command = f"viur-2to3 {path}" - for option, value in kwargs.items(): - if value: - command += f" --{option}" - - os.system(command) - -@tool.command() -@click.option('--version', '-v') -@click.option('--package', '-p') -@click.option('--target', '-t') -@click.option('--help', '-h') -def pyodide(additional_args, version, package, target, help): - """ - The 'pyodide' command allows you to run the 'get_pyodide' command for Pyodide installation. - - :param additional_args: tuple - Additional arguments to pass to the 'get_pyodide' command. - :param version: str, optional - Specify the version of Pyodide. - :param package: str, optional - Specify the package for Pyodide. - :param target: str, optional - Specify the target for Pyodide. - :param help: bool, optional - Display help for the 'get_pyodide' command. - - Example Usage: - ``` - viur tool pyodide -v 0.19.1 -p mypackage -t mytarget - ``` - - :return: None - """ - command = "get-pyodide" - if help: - os.system("get-pyodide -h") - - if version: - command += f" -v {version}" - - if package: - command += f" -p {package}" - - if target: - command += f" -t {target}" - - os.system(command) - - -@tool.command() -def ssl_fix(): - """ - SSL certificate fix for macOS. - - The 'ssl_fix' command is used to perform an SSL certificate fix for macOS. - - Example Usage: - ``` - viur tool ssl_fix - ``` - - :return: None - """ - os.system("chmod +x scripts/macos_certificate_fix.command && ./scripts/macos_certificate_fix.command") +import click +import os + +from . import cli + + +@cli.group() +def tool(): + """ + Run different ViUR-related scripts. + + The 'tool' group allows you to execute various ViUR-related scripts that help with tasks such as project porting, + Pyodide installation, and SSL certificate fixes. + + Available Commands: + + - 'pyodide': Run the get_pyodide command. + + - 'ssl_fix': SSL certificate fix for macOS. + """ + + +@tool.command() +@click.option('--version', '-v') +@click.option('--package', '-p') +@click.option('--target', '-t') +@click.option('--help', '-h') +def pyodide(additional_args, version, package, target, help): + """ + The 'pyodide' command allows you to run the 'get_pyodide' command for Pyodide installation. + + :param additional_args: tuple + Additional arguments to pass to the 'get_pyodide' command. + :param version: str, optional + Specify the version of Pyodide. + :param package: str, optional + Specify the package for Pyodide. + :param target: str, optional + Specify the target for Pyodide. + :param help: bool, optional + Display help for the 'get_pyodide' command. + + Example Usage: + ``` + viur tool pyodide -v 0.19.1 -p mypackage -t mytarget + ``` + + :return: None + """ + command = "get-pyodide" + if help: + os.system("get-pyodide -h") + + if version: + command += f" -v {version}" + + if package: + command += f" -p {package}" + + if target: + command += f" -t {target}" + + os.system(command) + + +@tool.command() +def ssl_fix(): + """ + SSL certificate fix for macOS. + + The 'ssl_fix' command is used to perform an SSL certificate fix for macOS. + + Example Usage: + ``` + viur tool ssl_fix + ``` + + :return: None + """ + os.system("chmod +x scripts/macos_certificate_fix.command && ./scripts/macos_certificate_fix.command")