2024-06-21 15:01:29 +02:00
|
|
|
"""Python Integration, Delivery & Deployment."""
|
2024-06-09 23:15:19 +02:00
|
|
|
|
2024-06-14 14:25:21 +02:00
|
|
|
__version__ = "0.0.1"
|
|
|
|
|
2024-04-26 21:58:35 +02:00
|
|
|
import os
|
2024-06-21 12:10:09 +02:00
|
|
|
import sys
|
2024-06-09 18:09:53 +02:00
|
|
|
from pathlib import Path
|
2024-04-26 21:58:35 +02:00
|
|
|
|
2024-06-09 00:01:38 +02:00
|
|
|
import env
|
2024-06-24 15:33:12 +02:00
|
|
|
from rwx import fs
|
2024-06-13 12:34:05 +02:00
|
|
|
from rwx.log import stream as log
|
2024-06-09 00:01:38 +02:00
|
|
|
|
2024-06-21 14:57:57 +02:00
|
|
|
import pidd
|
|
|
|
from pidd.project import Project
|
|
|
|
from pidd.projects import Projects
|
2024-04-27 01:10:30 +02:00
|
|
|
|
2024-06-21 14:57:57 +02:00
|
|
|
COMMANDS_PREFIX = "pidd-"
|
2024-04-26 23:55:20 +02:00
|
|
|
|
2024-06-10 14:22:07 +02:00
|
|
|
projects = Projects()
|
2024-04-27 17:09:51 +02:00
|
|
|
project = Project(projects)
|
2024-04-27 15:32:33 +02:00
|
|
|
|
2024-04-26 23:55:20 +02:00
|
|
|
|
2024-06-09 17:23:57 +02:00
|
|
|
def browse(root: str) -> None:
|
2024-06-06 10:17:02 +02:00
|
|
|
paths = []
|
|
|
|
for directory, _, files in os.walk(root):
|
|
|
|
for file in files:
|
2024-06-09 18:09:53 +02:00
|
|
|
absolute_path = Path(directory) / file
|
2024-06-06 10:17:02 +02:00
|
|
|
relative_path = os.path.relpath(absolute_path, start=root)
|
|
|
|
paths.append(relative_path)
|
2024-06-09 21:00:01 +02:00
|
|
|
frame(root)
|
2024-06-06 10:17:02 +02:00
|
|
|
for path in sorted(paths):
|
2024-06-13 13:44:59 +02:00
|
|
|
log.info(path)
|
2024-06-06 10:53:19 +02:00
|
|
|
shut(root)
|
2024-06-06 10:17:02 +02:00
|
|
|
|
|
|
|
|
2024-06-09 17:23:57 +02:00
|
|
|
def cat(file: str) -> None:
|
2024-06-09 21:00:01 +02:00
|
|
|
frame(file)
|
2024-06-13 13:44:59 +02:00
|
|
|
log.info(fs.read_file_text(file).rstrip())
|
2024-06-06 14:41:06 +02:00
|
|
|
shut(file)
|
|
|
|
|
|
|
|
|
2024-06-09 20:28:09 +02:00
|
|
|
def install_commands(path: str) -> None:
|
2024-06-07 10:26:18 +02:00
|
|
|
step("Install commands")
|
2024-06-09 18:09:53 +02:00
|
|
|
user = Path("/usr/local/bin")
|
2024-04-27 01:10:30 +02:00
|
|
|
for command in [
|
2024-06-07 10:26:18 +02:00
|
|
|
"browse-workspace",
|
|
|
|
"build-project",
|
|
|
|
"clone-branch",
|
|
|
|
"list-environment",
|
|
|
|
"synchronize",
|
2024-04-27 01:10:30 +02:00
|
|
|
]:
|
2024-06-13 13:44:59 +02:00
|
|
|
log.info(command)
|
2024-06-09 20:28:09 +02:00
|
|
|
(user / f"{COMMANDS_PREFIX}{command}").symlink_to(path)
|
2024-05-31 00:29:12 +02:00
|
|
|
|
|
|
|
|
2024-06-21 16:26:33 +02:00
|
|
|
def main(main: str) -> None:
|
2024-06-21 12:10:09 +02:00
|
|
|
path, *arguments = sys.argv
|
|
|
|
name = Path(path).name
|
|
|
|
if name == "__main__.py":
|
2024-06-21 14:57:57 +02:00
|
|
|
pidd.set_ssh(*arguments)
|
2024-06-21 16:26:33 +02:00
|
|
|
pidd.install_commands(main)
|
2024-06-21 12:10:09 +02:00
|
|
|
else:
|
2024-06-21 14:57:57 +02:00
|
|
|
function = getattr(pidd, name.replace("-", "_"))
|
2024-06-21 12:10:09 +02:00
|
|
|
function(*arguments)
|
|
|
|
|
|
|
|
|
2024-06-24 00:11:48 +02:00
|
|
|
def set_ssh(*arguments: list[str]) -> None:
|
2024-06-07 10:26:18 +02:00
|
|
|
step("Set SSH")
|
2024-06-05 17:04:06 +02:00
|
|
|
#
|
2024-06-02 00:51:21 +02:00
|
|
|
ssh_key, ssh_hosts = arguments
|
2024-06-05 11:55:25 +02:00
|
|
|
#
|
2024-06-07 10:26:18 +02:00
|
|
|
ssh_type = "ed25519"
|
2024-05-31 00:29:12 +02:00
|
|
|
#
|
2024-06-09 18:09:53 +02:00
|
|
|
home = Path("~").expanduser()
|
2024-05-31 00:29:12 +02:00
|
|
|
#
|
2024-06-09 18:09:53 +02:00
|
|
|
ssh = home / ".ssh"
|
2024-06-09 18:52:29 +02:00
|
|
|
ssh.mkdir(exist_ok=True, parents=True)
|
2024-06-09 18:09:53 +02:00
|
|
|
ssh.chmod(0o700)
|
2024-05-31 00:29:12 +02:00
|
|
|
#
|
2024-06-09 18:09:53 +02:00
|
|
|
key = ssh / f"id_{ssh_type}"
|
2024-05-31 00:29:12 +02:00
|
|
|
if ssh_key:
|
|
|
|
fs.write(key, ssh_key)
|
2024-06-09 18:09:53 +02:00
|
|
|
key.chmod(0o400)
|
2024-05-31 00:29:12 +02:00
|
|
|
#
|
2024-06-09 18:09:53 +02:00
|
|
|
known = ssh / "known_hosts"
|
2024-05-31 00:29:12 +02:00
|
|
|
if ssh_hosts:
|
|
|
|
fs.write(known, ssh_hosts)
|
2024-06-09 18:09:53 +02:00
|
|
|
known.chmod(0o400)
|
2024-06-06 10:17:02 +02:00
|
|
|
#
|
2024-06-06 11:36:06 +02:00
|
|
|
browse(ssh)
|
2024-06-08 23:51:37 +02:00
|
|
|
cat(known)
|
2024-06-05 11:41:47 +02:00
|
|
|
|
|
|
|
|
2024-06-13 13:44:59 +02:00
|
|
|
def frame(text: str) -> None:
|
2024-06-21 14:57:57 +02:00
|
|
|
log.info(f"{env.PIDD_OPEN}{text}")
|
2024-06-05 12:45:54 +02:00
|
|
|
|
|
|
|
|
2024-06-13 13:44:59 +02:00
|
|
|
def shut(text: str) -> None:
|
2024-06-21 14:57:57 +02:00
|
|
|
log.info(f"{env.PIDD_SHUT}{text}")
|
2024-06-05 12:45:54 +02:00
|
|
|
|
|
|
|
|
2024-06-09 17:23:57 +02:00
|
|
|
def split() -> None:
|
2024-06-21 14:57:57 +02:00
|
|
|
log.info(env.PIDD_SPLT)
|
2024-06-05 11:45:41 +02:00
|
|
|
|
|
|
|
|
2024-06-13 13:44:59 +02:00
|
|
|
def step(text: str) -> None:
|
2024-06-21 14:57:57 +02:00
|
|
|
env.PIDD_STEP += 1
|
|
|
|
log.info(env.PIDD_DOWN)
|
|
|
|
log.info(f"{env.PIDD_VERT} {env.PIDD_STEP} {text}")
|
|
|
|
log.info(env.PIDD___UP)
|