2024-06-09 21:15:19 +00:00
|
|
|
"""Continuous Deployment."""
|
|
|
|
|
2024-04-26 19:58:35 +00:00
|
|
|
import os
|
2024-06-09 16:09:53 +00:00
|
|
|
from pathlib import Path
|
2024-04-26 19:58:35 +00:00
|
|
|
|
2024-06-08 22:01:38 +00:00
|
|
|
import env
|
|
|
|
from rwx import fs, ps
|
|
|
|
|
2024-04-27 13:32:33 +00:00
|
|
|
from cd.project import Project
|
|
|
|
from cd.projects import Projects
|
2024-04-26 23:10:30 +00:00
|
|
|
|
2024-06-07 08:26:18 +00:00
|
|
|
COMMANDS_PREFIX = "cd-"
|
2024-04-26 21:55:20 +00:00
|
|
|
|
2024-06-10 12:22:07 +00:00
|
|
|
projects = Projects()
|
2024-04-27 15:09:51 +00:00
|
|
|
project = Project(projects)
|
2024-04-27 13:32:33 +00:00
|
|
|
|
2024-04-26 21:55:20 +00:00
|
|
|
|
2024-06-09 15:23:57 +00:00
|
|
|
def cd_browse_workspace() -> None:
|
2024-06-06 08:17:02 +00:00
|
|
|
browse(project.root)
|
2024-05-29 22:21:42 +00:00
|
|
|
|
|
|
|
|
2024-06-09 15:23:57 +00:00
|
|
|
def cd_build_project() -> None:
|
2024-06-07 08:26:18 +00:00
|
|
|
for extension in ["py", "sh"]:
|
2024-06-09 16:09:53 +00:00
|
|
|
path = Path(project.root) / f"build.{extension}"
|
|
|
|
if path.exists():
|
2024-05-30 10:35:05 +00:00
|
|
|
ps.run(path)
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2024-06-09 15:23:57 +00:00
|
|
|
def cd_clone_branch() -> None:
|
2024-06-10 19:29:11 +00:00
|
|
|
print(projects, end="")
|
|
|
|
split()
|
|
|
|
print(project, end="")
|
|
|
|
split()
|
2024-06-07 08:26:18 +00:00
|
|
|
print(f"""\
|
2024-04-28 16:36:34 +00:00
|
|
|
{project.url}
|
|
|
|
↓
|
2024-06-07 08:36:24 +00:00
|
|
|
""", end="", flush=True)
|
2024-06-07 08:26:18 +00:00
|
|
|
ps.run("git",
|
|
|
|
"clone",
|
|
|
|
"--branch", project.branch,
|
|
|
|
"--",
|
2024-04-27 13:32:33 +00:00
|
|
|
project.url,
|
2024-05-30 10:03:15 +00:00
|
|
|
project.root,
|
2024-04-26 23:10:30 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2024-06-09 15:23:57 +00:00
|
|
|
def cd_list_environment() -> None:
|
2024-05-30 22:29:12 +00:00
|
|
|
for variable, value in sorted(projects.environment.items()):
|
2024-06-07 08:26:18 +00:00
|
|
|
print(variable, "=", value)
|
2024-04-26 21:55:20 +00:00
|
|
|
|
2024-04-26 19:58:35 +00:00
|
|
|
|
2024-06-09 15:23:57 +00:00
|
|
|
def cd_synchronize() -> None:
|
2024-06-07 08:26:18 +00:00
|
|
|
host = "rwx.work"
|
|
|
|
source = "out"
|
|
|
|
user = "cd"
|
2024-06-01 13:25:23 +00:00
|
|
|
#
|
2024-06-09 16:09:53 +00:00
|
|
|
root = Path(os.sep) / user / project.branch / projects.group / project.name
|
2024-06-01 13:25:23 +00:00
|
|
|
#
|
2024-06-07 08:26:18 +00:00
|
|
|
target = f"{user}@{host}:{root}"
|
|
|
|
ps.run("rsync",
|
|
|
|
"--archive",
|
|
|
|
"--delete-before",
|
|
|
|
"--verbose",
|
|
|
|
f"{source}/",
|
|
|
|
f"{target}/",
|
|
|
|
"--dry-run",
|
2024-06-01 13:25:23 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2024-06-09 15:23:57 +00:00
|
|
|
def browse(root: str) -> None:
|
2024-06-06 08:17:02 +00:00
|
|
|
paths = []
|
|
|
|
for directory, _, files in os.walk(root):
|
|
|
|
for file in files:
|
2024-06-09 16:09:53 +00:00
|
|
|
absolute_path = Path(directory) / file
|
2024-06-06 08:17:02 +00:00
|
|
|
relative_path = os.path.relpath(absolute_path, start=root)
|
|
|
|
paths.append(relative_path)
|
2024-06-09 19:00:01 +00:00
|
|
|
frame(root)
|
2024-06-06 08:17:02 +00:00
|
|
|
for path in sorted(paths):
|
|
|
|
print(path)
|
2024-06-06 08:53:19 +00:00
|
|
|
shut(root)
|
2024-06-06 08:17:02 +00:00
|
|
|
|
|
|
|
|
2024-06-09 15:23:57 +00:00
|
|
|
def cat(file: str) -> None:
|
2024-06-09 19:00:01 +00:00
|
|
|
frame(file)
|
2024-06-06 14:01:59 +00:00
|
|
|
print(fs.read_file_text(file).rstrip())
|
2024-06-06 12:41:06 +00:00
|
|
|
shut(file)
|
|
|
|
|
|
|
|
|
2024-06-09 18:28:09 +00:00
|
|
|
def install_commands(path: str) -> None:
|
2024-06-07 08:26:18 +00:00
|
|
|
step("Install commands")
|
2024-06-09 16:09:53 +00:00
|
|
|
user = Path("/usr/local/bin")
|
2024-04-26 23:10:30 +00:00
|
|
|
for command in [
|
2024-06-07 08:26:18 +00:00
|
|
|
"browse-workspace",
|
|
|
|
"build-project",
|
|
|
|
"clone-branch",
|
|
|
|
"list-environment",
|
|
|
|
"synchronize",
|
2024-04-26 23:10:30 +00:00
|
|
|
]:
|
2024-04-28 11:00:18 +00:00
|
|
|
print(command)
|
2024-06-09 18:28:09 +00:00
|
|
|
(user / f"{COMMANDS_PREFIX}{command}").symlink_to(path)
|
2024-05-30 22:29:12 +00:00
|
|
|
|
|
|
|
|
2024-06-09 18:55:32 +00:00
|
|
|
def set_ssh(*arguments: str) -> None:
|
2024-06-07 08:26:18 +00:00
|
|
|
step("Set SSH")
|
2024-06-05 15:04:06 +00:00
|
|
|
#
|
2024-06-01 22:51:21 +00:00
|
|
|
ssh_key, ssh_hosts = arguments
|
2024-06-05 09:55:25 +00:00
|
|
|
#
|
2024-06-07 08:26:18 +00:00
|
|
|
ssh_type = "ed25519"
|
2024-05-30 22:29:12 +00:00
|
|
|
#
|
2024-06-09 16:09:53 +00:00
|
|
|
home = Path("~").expanduser()
|
2024-05-30 22:29:12 +00:00
|
|
|
#
|
2024-06-09 16:09:53 +00:00
|
|
|
ssh = home / ".ssh"
|
2024-06-09 16:52:29 +00:00
|
|
|
ssh.mkdir(exist_ok=True, parents=True)
|
2024-06-09 16:09:53 +00:00
|
|
|
ssh.chmod(0o700)
|
2024-05-30 22:29:12 +00:00
|
|
|
#
|
2024-06-09 16:09:53 +00:00
|
|
|
key = ssh / f"id_{ssh_type}"
|
2024-05-30 22:29:12 +00:00
|
|
|
if ssh_key:
|
|
|
|
fs.write(key, ssh_key)
|
2024-06-09 16:09:53 +00:00
|
|
|
key.chmod(0o400)
|
2024-05-30 22:29:12 +00:00
|
|
|
#
|
2024-06-09 16:09:53 +00:00
|
|
|
known = ssh / "known_hosts"
|
2024-05-30 22:29:12 +00:00
|
|
|
if ssh_hosts:
|
|
|
|
fs.write(known, ssh_hosts)
|
2024-06-09 16:09:53 +00:00
|
|
|
known.chmod(0o400)
|
2024-06-06 08:17:02 +00:00
|
|
|
#
|
2024-06-06 09:36:06 +00:00
|
|
|
browse(ssh)
|
2024-06-08 21:51:37 +00:00
|
|
|
cat(known)
|
2024-06-05 09:41:47 +00:00
|
|
|
|
|
|
|
|
2024-06-09 19:00:01 +00:00
|
|
|
def frame(*arguments: str) -> None:
|
2024-06-07 08:36:24 +00:00
|
|
|
print(env.CD_OPEN, end="")
|
2024-06-05 10:45:54 +00:00
|
|
|
print(*arguments, flush=True)
|
|
|
|
|
|
|
|
|
2024-06-09 18:55:32 +00:00
|
|
|
def shut(*arguments: str) -> None:
|
2024-06-07 08:36:24 +00:00
|
|
|
print(env.CD_SHUT, end="")
|
2024-06-05 10:45:54 +00:00
|
|
|
print(*arguments, flush=True)
|
|
|
|
|
|
|
|
|
2024-06-09 15:23:57 +00:00
|
|
|
def split() -> None:
|
2024-06-05 12:46:56 +00:00
|
|
|
print(env.CD_SPLT, flush=True)
|
2024-06-05 09:45:41 +00:00
|
|
|
|
|
|
|
|
2024-06-09 18:55:32 +00:00
|
|
|
def step(*arguments: str) -> None:
|
2024-06-05 10:45:54 +00:00
|
|
|
env.CD_STEP += 1
|
|
|
|
print(env.CD_DOWN)
|
2024-06-05 12:48:19 +00:00
|
|
|
print(env.CD_VERT, env.CD_STEP, *arguments)
|
2024-06-05 12:49:24 +00:00
|
|
|
print(env.CD___UP, flush=True)
|