40 lines
1.1 KiB
Python
40 lines
1.1 KiB
Python
import os
|
|
import subprocess
|
|
import sys
|
|
|
|
from cpl.configuration.configuration_abc import ConfigurationABC
|
|
from cpl.console.console import Console
|
|
from cpl_cli.command_abc import CommandABC
|
|
from cpl_cli.configuration.workspace_settings import WorkspaceSettings
|
|
|
|
|
|
class CustomScriptService(CommandABC):
|
|
|
|
def __init__(self, config: ConfigurationABC, ws: WorkspaceSettings):
|
|
"""
|
|
Service for CLI scripts
|
|
"""
|
|
CommandABC.__init__(self)
|
|
|
|
self._config = config
|
|
self._workspace = ws
|
|
|
|
@property
|
|
def help_message(self) -> str:
|
|
return ''
|
|
|
|
def run(self, args: list[str]):
|
|
cmd = args[0] if len(args) > 0 else self._config.additional_arguments[0]
|
|
|
|
for script in self._workspace.scripts:
|
|
if script == cmd:
|
|
command = self._workspace.scripts[script]
|
|
try:
|
|
run_command = []
|
|
for word in command.split(' '):
|
|
run_command.append(word)
|
|
|
|
subprocess.run(run_command)
|
|
except Exception as e:
|
|
Console.error(str(e))
|