mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
88 lines
2 KiB
Python
88 lines
2 KiB
Python
# -*- coding: utf-8 -*-
|
|
"""Implementation of Pype commands."""
|
|
import os
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
from pype.lib import PypeLogger
|
|
|
|
|
|
class PypeCommands:
|
|
"""Class implementing commands used by Pype.
|
|
|
|
Most of its methods are called by :mod:`cli` module.
|
|
"""
|
|
@staticmethod
|
|
def launch_tray(debug=False):
|
|
PypeLogger.set_process_name("Tray")
|
|
|
|
from pype.tools import tray
|
|
|
|
tray.main()
|
|
|
|
@staticmethod
|
|
def launch_settings_gui(dev):
|
|
from pype.tools import settings
|
|
|
|
# TODO change argument options to allow enum of user roles
|
|
user_role = "developer"
|
|
settings.main(user_role)
|
|
|
|
def launch_eventservercli(self, args):
|
|
from pype.modules import ftrack
|
|
from pype.lib import execute
|
|
|
|
fname = os.path.join(
|
|
os.path.dirname(os.path.abspath(ftrack.__file__)),
|
|
"ftrack_server",
|
|
"event_server_cli.py"
|
|
)
|
|
|
|
return execute([
|
|
sys.executable, "-u", fname
|
|
])
|
|
|
|
def publish(self, gui, paths):
|
|
pass
|
|
|
|
def texture_copy(self, project, asset, path):
|
|
pass
|
|
|
|
def run_pype_tests(self, keyword, id):
|
|
pass
|
|
|
|
def make_docs(self):
|
|
pass
|
|
|
|
def pype_setup_coverage(self):
|
|
pass
|
|
|
|
def run_application(self, app, project, asset, task, tools, arguments):
|
|
pass
|
|
|
|
def validate_jsons(self):
|
|
pass
|
|
|
|
@staticmethod
|
|
def generate_zip(out_path: str):
|
|
"""Generate zip file from current sources.
|
|
|
|
Args:
|
|
out_path (str): Path to generated zip file.
|
|
|
|
"""
|
|
from igniter import bootstrap_repos
|
|
|
|
# create zip file
|
|
bs = bootstrap_repos.BootstrapRepos()
|
|
if out_path:
|
|
out_path = Path(out_path)
|
|
bs.data_dir = out_path.parent
|
|
|
|
print(f">>> Creating zip in {bs.data_dir} ...")
|
|
repo_file = bs.install_live_repos()
|
|
if not repo_file:
|
|
print("!!! Error while creating zip file.")
|
|
exit(1)
|
|
|
|
print(f">>> Created {repo_file}")
|