"""Tasks for automating certain actions and interacting with InvenTree from the CLI.""" import json import os import pathlib import re import shutil import sys from pathlib import Path from invoke import task def apps(): """Returns a list of installed apps.""" return [ 'build', 'common', 'company', 'label', 'order', 'part', 'report', 'stock', 'users', 'plugin', 'InvenTree', ] def content_excludes(): """Returns a list of content types to exclude from import/export.""" excludes = [ "contenttypes", "auth.permission", "authtoken.token", "error_report.error", "admin.logentry", "django_q.schedule", "django_q.task", "django_q.ormq", "users.owner", "exchange.rate", "exchange.exchangebackend", "common.notificationentry", "common.notificationmessage", "user_sessions.session", ] output = "" for e in excludes: output += f"--exclude {e} " return output def localDir() -> Path: """Returns the directory of *THIS* file. Used to ensure that the various scripts always run in the correct directory. """ return Path(__file__).parent.resolve() def managePyDir(): """Returns the directory of the manage.py file.""" return localDir().joinpath('InvenTree') def managePyPath(): """Return the path of the manage.py file.""" return managePyDir().joinpath('manage.py') def manage(c, cmd, pty: bool = False): """Runs a given command against django's "manage.py" script. Args: c: Command line context. cmd: Django command to run. pty (bool, optional): Run an interactive session. Defaults to False. """ c.run('cd "{path}" && python3 manage.py {cmd}'.format( path=managePyDir(), cmd=cmd ), pty=pty) # Install tasks @task def plugins(c): """Installs all plugins as specified in 'plugins.txt'.""" from InvenTree.InvenTree.config import get_plugin_file plugin_file = get_plugin_file() print(f"Installing plugin packages from '{plugin_file}'") # Install the plugins c.run(f"pip3 install --disable-pip-version-check -U -r '{plugin_file}'") @task(post=[plugins]) def install(c): """Installs required python packages.""" print("Installing required python packages from 'requirements.txt'") # Install required Python packages with PIP c.run('pip3 install --upgrade pip') c.run('pip3 install --no-cache-dir --disable-pip-version-check -U -r requirements.txt') @task(help={'tests': 'Set up test dataset at the end'}) def setup_dev(c, tests=False): """Sets up everything needed for the dev enviroment.""" print("Installing required python packages from 'requirements-dev.txt'") # Install required Python packages with PIP c.run('pip3 install -U -r requirements-dev.txt') # Install pre-commit hook print("Installing pre-commit for checks before git commits...") c.run('pre-commit install') # Update all the hooks c.run('pre-commit autoupdate') print("pre-commit set up is done...") # Set up test-data if flag is set if tests: setup_test(c) # Setup / maintenance tasks @task def superuser(c): """Create a superuser/admin account for the database.""" manage(c, 'createsuperuser', pty=True) @task def rebuild_models(c): """Rebuild database models with MPTT structures.""" manage(c, "rebuild_models", pty=True) @task def rebuild_thumbnails(c): """Rebuild missing image thumbnails.""" manage(c, "rebuild_thumbnails", pty=True) @task def clean_settings(c): """Clean the setting tables of old settings.""" manage(c, "clean_settings") @task(help={'mail': 'mail of the user whos MFA should be disabled'}) def remove_mfa(c, mail=''): """Remove MFA for a user.""" if not mail: print('You must provide a users mail') manage(c, f"remove_mfa {mail}") @task def static(c): """Copies required static files to the STATIC_ROOT directory, as per Django requirements.""" manage(c, "prerender") manage(c, "collectstatic --no-input") @task def translate_stats(c): """Collect translation stats. The file generated from this is needed for the UI. """ path = Path('InvenTree', 'script', 'translation_stats.py') c.run(f'python3 {path}') @task(post=[translate_stats, static]) def translate(c): """Rebuild translation source files. Advanced use only! Note: This command should not be used on a local install, it is performed as part of the InvenTree translation toolchain. """ # Translate applicable .py / .html / .js files manage(c, "makemessages --all -e py,html,js --no-wrap") manage(c, "compilemessages") @task def backup(c): """Backup the database and media files.""" print("Backing up InvenTree database...") manage(c, "dbbackup --noinput --clean --compress") print("Backing up InvenTree media files...") manage(c, "mediabackup --noinput --clean --compress") @task def restore(c): """Restore the database and media files.""" print("Restoring InvenTree database...") manage(c, "dbrestore --noinput --uncompress") print("Restoring InvenTree media files...") manage(c, "mediarestore --noinput --uncompress") @task(pre=[backup, ], post=[rebuild_models, rebuild_thumbnails]) def migrate(c): """Performs database migrations. This is a critical step if the database schema have been altered! """ print("Running InvenTree database migrations...") print("========================================") manage(c, "makemigrations") manage(c, "migrate --noinput") manage(c, "migrate --run-syncdb") manage(c, "check") print("========================================") print("InvenTree database migrations completed!") @task(pre=[install, migrate, static, clean_settings, translate_stats]) def update(c): """Update InvenTree installation. This command should be invoked after source code has been updated, e.g. downloading new code from GitHub. The following tasks are performed, in order: - install - migrate - static - clean_settings - translate_stats """ # Recompile the translation files (.mo) # We do not run 'invoke translate' here, as that will touch the source (.po) files too! try: manage(c, 'compilemessages', pty=True) except Exception: print("WARNING: Translation files could not be compiled:") # Data tasks @task(help={ 'filename': "Output filename (default = 'data.json')", 'overwrite': "Overwrite existing files without asking first (default = off/False)", 'include_permissions': "Include user and group permissions in the output file (filename) (default = off/False)", 'delete_temp': "Delete temporary files (containing permissions) at end of run. Note that this will delete temporary files from previous runs as well. (default = off/False)" }) def export_records(c, filename='data.json', overwrite=False, include_permissions=False, delete_temp=False): """Export all database records to a file. Write data to the file defined by filename. If --overwrite is not set, the user will be prompted about overwriting an existing files. If --include-permissions is not set, the file defined by filename will have permissions specified for a user or group removed. If --delete-temp is not set, the temporary file (which includes permissions) will not be deleted. This file is named filename.tmp For historical reasons, calling this function without any arguments will thus result in two files: - data.json: does not include permissions - data.json.tmp: includes permissions If you want the script to overwrite any existing files without asking, add argument -o / --overwrite. If you only want one file, add argument - d / --delete-temp. If you want only one file, with permissions, then additionally add argument -i / --include-permissions """ # Get an absolute path to the file if not os.path.isabs(filename): filename = localDir().joinpath(filename).resolve() print(f"Exporting database records to file '{filename}'") if Path(filename).is_file() and overwrite is False: response = input("Warning: file already exists. Do you want to overwrite? [y/N]: ") response = str(response).strip().lower() if response not in ['y', 'yes']: print("Cancelled export operation") sys.exit(1) tmpfile = f"{filename}.tmp" cmd = f"dumpdata --indent 2 --output '{tmpfile}' {content_excludes()}" # Dump data to temporary file manage(c, cmd, pty=True) print("Running data post-processing step...") # Post-process the file, to remove any "permissions" specified for a user or group with open(tmpfile, "r") as f_in: data = json.loads(f_in.read()) if include_permissions is False: for entry in data: if "model" in entry: # Clear out any permissions specified for a group if entry["model"] == "auth.group": entry["fields"]["permissions"] = [] # Clear out any permissions specified for a user if entry["model"] == "auth.user": entry["fields"]["user_permissions"] = [] # Write the processed data to file with open(filename, "w") as f_out: f_out.write(json.dumps(data, indent=2)) print("Data export completed") if delete_temp is True: print("Removing temporary file") os.remove(tmpfile) @task(help={'filename': 'Input filename', 'clear': 'Clear existing data before import'}, post=[rebuild_models, rebuild_thumbnails]) def import_records(c, filename='data.json', clear=False): """Import database records from a file.""" # Get an absolute path to the supplied filename if not os.path.isabs(filename): filename = localDir().joinpath(filename) if not os.path.exists(filename): print(f"Error: File '{filename}' does not exist") sys.exit(1) if clear: delete_data(c, force=True) print(f"Importing database records from '{filename}'") # Pre-process the data, to remove any "permissions" specified for a user or group tmpfile = f"{filename}.tmp.json" with open(filename, "r") as f_in: data = json.loads(f_in.read()) for entry in data: if "model" in entry: # Clear out any permissions specified for a group if entry["model"] == "auth.group": entry["fields"]["permissions"] = [] # Clear out any permissions specified for a user if entry["model"] == "auth.user": entry["fields"]["user_permissions"] = [] # Write the processed data to the tmp file with open(tmpfile, "w") as f_out: f_out.write(json.dumps(data, indent=2)) cmd = f"loaddata '{tmpfile}' -i {content_excludes()}" manage(c, cmd, pty=True) print("Data import completed") @task def delete_data(c, force=False): """Delete all database records! Warning: This will REALLY delete all records in the database!! """ print("Deleting all data from InvenTree database...") if force: manage(c, 'flush --noinput') else: manage(c, 'flush') @task(post=[rebuild_models, rebuild_thumbnails]) def import_fixtures(c): """Import fixture data into the database. This command imports all existing test fixture data into the database. Warning: - Intended for testing / development only! - Running this command may overwrite existing database data!! - Don't say you were not warned... """ fixtures = [ # Build model 'build', # Common models 'settings', # Company model 'company', 'price_breaks', 'supplier_part', # Order model 'order', # Part model 'bom', 'category', 'params', 'part', 'test_templates', # Stock model 'location', 'stock_tests', 'stock', # Users 'users' ] command = 'loaddata ' + ' '.join(fixtures) manage(c, command, pty=True) # Execution tasks @task def wait(c): """Wait until the database connection is ready.""" return manage(c, "wait_for_db") @task(pre=[wait], help={'address': 'Server address:port (default=127.0.0.1:8000)'}) def server(c, address="127.0.0.1:8000"): """Launch a (deveopment) server using Django's in-built webserver. Note: This is *not* sufficient for a production installation. """ manage(c, "runserver {address}".format(address=address), pty=True) @task(pre=[wait]) def worker(c): """Run the InvenTree background worker process.""" manage(c, 'qcluster', pty=True) # Testing tasks @task def render_js_files(c): """Render templated javascript files (used for static testing).""" manage(c, "test InvenTree.ci_render_js") @task(post=[translate_stats, static, server]) def test_translations(c): """Add a fictional language to test if each component is ready for translations.""" import django from django.conf import settings # setup django base_path = Path.cwd() new_base_path = pathlib.Path('InvenTree').resolve() sys.path.append(str(new_base_path)) os.chdir(new_base_path) os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'InvenTree.settings') django.setup() # Add language print("Add dummy language...") print("========================================") manage(c, "makemessages -e py,html,js --no-wrap -l xx") # change translation print("Fill in dummy translations...") print("========================================") file_path = pathlib.Path(settings.LOCALE_PATHS[0], 'xx', 'LC_MESSAGES', 'django.po') new_file_path = str(file_path) + '_new' # complie regex reg = re.compile( r"[a-zA-Z0-9]{1}" + # match any single letter and number # noqa: W504 r"(?![^{\(\<]*[}\)\>])" + # that is not inside curly brackets, brackets or a tag # noqa: W504 r"(? replace regex matches with x in the read in (multi)string file_new.write(f'msgstr "{reg.sub("x", last_string[7:-2])}"\n') last_string = "" # reset (multi)string elif line.startswith('msgid "'): last_string = last_string + line # a new translatable string starts -> start append file_new.write(line) else: if last_string: last_string = last_string + line # a string is beeing read in -> continue appending file_new.write(line) # change out translation files file_path.rename(str(file_path) + '_old') new_file_path.rename(file_path) # compile languages print("Compile languages ...") print("========================================") manage(c, "compilemessages") # reset cwd os.chdir(base_path) # set env flag os.environ['TEST_TRANSLATIONS'] = 'True' @task def test(c, database=None): """Run unit-tests for InvenTree codebase.""" # Run sanity check on the django install manage(c, 'check') # Run coverage tests manage(c, 'test', pty=True) @task(help={'dev': 'Set up development environment at the end'}) def setup_test(c, ignore_update=False, dev=False, path="inventree-demo-dataset"): """Setup a testing enviroment.""" from InvenTree.InvenTree.config import get_media_dir if not ignore_update: update(c) # Remove old data directory if os.path.exists(path): print("Removing old data ...") c.run(f'rm {path} -r') # Get test data print("Cloning demo dataset ...") c.run(f'git clone https://github.com/inventree/demo-dataset {path} -v') print("========================================") # Make sure migrations are done - might have just deleted sqlite database if not ignore_update: migrate(c) # Load data print("Loading database records ...") import_records(c, filename=f'{path}/inventree_data.json', clear=True) # Copy media files print("Copying media files ...") src = Path(path).joinpath('media').resolve() dst = get_media_dir() shutil.copytree(src, dst, dirs_exist_ok=True) print("Done setting up test enviroment...") print("========================================") # Set up development setup if flag is set if dev: setup_dev(c) @task def coverage(c): """Run code-coverage of the InvenTree codebase, using the 'coverage' code-analysis tools. Generates a code coverage report (available in the htmlcov directory) """ # Run sanity check on the django install manage(c, 'check') # Run coverage tests c.run('coverage run {manage} test {apps}'.format( manage=managePyPath(), apps=' '.join(apps()) )) # Generate coverage report c.run('coverage html')