Compare commits
5 Commits
v0.6
...
ff72c95012
Author | SHA1 | Date | |
---|---|---|---|
ff72c95012 | |||
3576bf93c2 | |||
d7c7686a9e | |||
a179a3ad23 | |||
56744155cb |
8
.vscode/tasks.json
vendored
8
.vscode/tasks.json
vendored
@ -72,6 +72,14 @@
|
|||||||
"problemMatcher": [],
|
"problemMatcher": [],
|
||||||
"detail": "Copy home.tar.gz to /home/infilytics/"
|
"detail": "Copy home.tar.gz to /home/infilytics/"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"label": "GitOps(Update): gitconfig.template",
|
||||||
|
"type": "shell",
|
||||||
|
"command": ".bin/gitops update gitconfig",
|
||||||
|
"group": "build",
|
||||||
|
"problemMatcher": [],
|
||||||
|
"detail": "Copy gitconfig.template to /home/infilytics/"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"label": "Create home tarball",
|
"label": "Create home tarball",
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
|
182
gitops_router.sh
182
gitops_router.sh
@ -1,114 +1,128 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
|
||||||
PERSON="$1"
|
PERSON="${1:?Missing PERSON argument}"
|
||||||
HOST="alps:3222"
|
HOST="alps:3222"
|
||||||
PROTOCOL="http"
|
PROTOCOL="http"
|
||||||
REPO="babbarc/workspaces"
|
REPO="babbarc/workspaces"
|
||||||
BRANCH="master"
|
BRANCH="master"
|
||||||
|
|
||||||
LOG_FILE="/tmp/.gitops-router-${PERSON}.log"
|
LOG_FILE="/tmp/.gitops-router-${PERSON}.log"
|
||||||
|
|
||||||
|
# ─────────────────────────────────────────────
|
||||||
|
# ANSI color codes
|
||||||
|
readonly C_RESET='\033[0m'
|
||||||
|
readonly C_INFO='\033[1;34m' # bold blue
|
||||||
|
readonly C_WARN='\033[1;33m' # bold yellow
|
||||||
|
readonly C_ERROR='\033[1;31m' # bold red
|
||||||
|
|
||||||
|
# ─────────────────────────────────────────────
|
||||||
|
# log <level> <message...> with emojis
|
||||||
log() {
|
log() {
|
||||||
local level="${1^^}" # convert to uppercase
|
local lvl="${1^^}"
|
||||||
shift
|
shift
|
||||||
echo "[$(date '+%Y-%m-%d %H:%M:%S')] [$level] $*" | tee -a "$LOG_FILE"
|
local icon color
|
||||||
|
|
||||||
|
case "$lvl" in
|
||||||
|
INFO) icon="ℹ️" color="$C_INFO" ;;
|
||||||
|
WARN) icon="⚠️" color="$C_WARN" ;;
|
||||||
|
ERROR) icon="❌" color="$C_ERROR" ;;
|
||||||
|
*) icon="🔹" color="$C_RESET" ;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
local ts
|
||||||
|
ts="$(date '+%Y-%m-%d %H:%M:%S')"
|
||||||
|
printf '%b%s [%s] [%s] %s%b\n' \
|
||||||
|
"$color" "$icon" "$ts" "$lvl" "$*" "$C_RESET" |
|
||||||
|
tee -a "$LOG_FILE"
|
||||||
}
|
}
|
||||||
|
|
||||||
log info "Received SSH_ORIGINAL_COMMAND: $SSH_ORIGINAL_COMMAND"
|
# ─────────────────────────────────────────────
|
||||||
|
# Build the raw URL for fetching files
|
||||||
|
geturl() {
|
||||||
|
local type="$1" file="$2"
|
||||||
|
printf '%s://%s/%s/%s/branch/%s/%s\n' \
|
||||||
|
"$PROTOCOL" "$HOST" "$REPO" "$type" "$BRANCH" "$file"
|
||||||
|
}
|
||||||
|
|
||||||
# Ensure the variable is set
|
# ─────────────────────────────────────────────
|
||||||
|
# Run a local script
|
||||||
|
run() {
|
||||||
|
local script="$1"
|
||||||
|
"$HOME/.local/bin/$script"
|
||||||
|
}
|
||||||
|
|
||||||
|
# ─────────────────────────────────────────────
|
||||||
|
# Download & install an artifact
|
||||||
|
# update <file> <target-dir> <mode> [<type>]
|
||||||
|
update() {
|
||||||
|
local file="$1" dir="$2" mode="$3" type="${4:-raw}"
|
||||||
|
local url out
|
||||||
|
|
||||||
|
out="$HOME/$dir/$(basename "$file")"
|
||||||
|
url="$(geturl "$type" "$file")"
|
||||||
|
|
||||||
|
[[ -f "$out" ]] && chmod 700 "$out"
|
||||||
|
|
||||||
|
if curl -fsSL "$url" -o "$out"; then
|
||||||
|
log info "Downloaded $url → $out"
|
||||||
|
chmod "$mode" "$out"
|
||||||
|
else
|
||||||
|
log error "Failed to download $url"
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
# ─────────────────────────────────────────────
|
||||||
|
# Clean up dangling podman images
|
||||||
|
clean_images() {
|
||||||
|
local dangling
|
||||||
|
dangling="$(podman images -f dangling=true -q)"
|
||||||
|
if [[ -z "$dangling" ]]; then
|
||||||
|
log info "No dangling images to remove."
|
||||||
|
else
|
||||||
|
log warn "Removing dangling images..."
|
||||||
|
echo "$dangling" | xargs podman rmi
|
||||||
|
log info "Dangling images removed."
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
# ─────────────────────────────────────────────
|
||||||
|
# Entry & command parsing
|
||||||
if [[ -z "${SSH_ORIGINAL_COMMAND:-}" ]]; then
|
if [[ -z "${SSH_ORIGINAL_COMMAND:-}" ]]; then
|
||||||
log error "No SSH_ORIGINAL_COMMAND provided."
|
log error "No SSH_ORIGINAL_COMMAND provided."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
geturl() {
|
log info "SSH_ORIGINAL_COMMAND: $SSH_ORIGINAL_COMMAND"
|
||||||
echo "$PROTOCOL://$HOST/$REPO/$1/branch/$BRANCH/$2"
|
read -r cmd arg <<<"$SSH_ORIGINAL_COMMAND"
|
||||||
}
|
|
||||||
|
|
||||||
function run() {
|
# ─────────────────────────────────────────────
|
||||||
"$HOME"/.local/bin/"$1"
|
# Dispatch
|
||||||
}
|
case "$cmd" in
|
||||||
|
|
||||||
function update() {
|
|
||||||
type=${4:-raw}
|
|
||||||
fname=$(basename "$1")
|
|
||||||
output_path="$HOME/$2/$fname"
|
|
||||||
url=$(geturl "$type" "$1")
|
|
||||||
|
|
||||||
[ -f "$output_path" ] && chmod 700 "$output_path"
|
|
||||||
curl -fsSL "$url" -o "$output_path" && log info "Downloaded $url to $output_path"
|
|
||||||
chmod "$3" "$output_path"
|
|
||||||
}
|
|
||||||
|
|
||||||
clean_images() {
|
|
||||||
# Get list of image IDs with <none> tag (dangling images)
|
|
||||||
dangling_images=$(podman images -f "dangling=true" -q)
|
|
||||||
|
|
||||||
if [ -z "$dangling_images" ]; then
|
|
||||||
echo "✅ No dangling images to remove."
|
|
||||||
else
|
|
||||||
echo "⚠️ Removing dangling images..."
|
|
||||||
echo "$dangling_images" | xargs podman rmi
|
|
||||||
echo "🧹 Done!"
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
# Strip arguments and parse command
|
|
||||||
read -r command args <<<"$SSH_ORIGINAL_COMMAND"
|
|
||||||
|
|
||||||
# Define command routing
|
|
||||||
case "$command" in
|
|
||||||
build)
|
build)
|
||||||
case "$args" in
|
case "$arg" in
|
||||||
base)
|
base) run build-base.sh ;;
|
||||||
run build-base.sh
|
workspace) run build-workspace.sh ;;
|
||||||
;;
|
*) log error "build: invalid arg '$arg'" ;;
|
||||||
workspace)
|
|
||||||
run build-workspace.sh
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
log error "Invalid arguments for build command: $args"
|
|
||||||
;;
|
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
update)
|
update)
|
||||||
case "$args" in
|
case "$arg" in
|
||||||
workspace)
|
base) update build-base.sh .local/bin 500 ;;
|
||||||
update build-workspace.sh .local/bin 500
|
workspace) update build-workspace.sh .local/bin 500 ;;
|
||||||
;;
|
access) update access.yml . 400 ;;
|
||||||
base)
|
ssh_router) update ssh_router.sh .local/bin 500 ;;
|
||||||
update build-base.sh .local/bin 500
|
gitops_router) update gitops_router.sh .local/bin 500 ;;
|
||||||
;;
|
home_tar) update home.tar.gz . 500 media ;;
|
||||||
access)
|
gitconfig) update gitconfig.template . 500 ;;
|
||||||
update access.yml . 400
|
*) log error "update: invalid arg '$arg'" ;;
|
||||||
;;
|
|
||||||
ssh_router)
|
|
||||||
update ssh_router.sh .local/bin 500
|
|
||||||
;;
|
|
||||||
gitops_router)
|
|
||||||
update gitops_router.sh .local/bin 500
|
|
||||||
;;
|
|
||||||
home_tar)
|
|
||||||
update home.tar.gz . 500 media
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
log error "Invalid arguments for update command: $args"
|
|
||||||
;;
|
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
clean)
|
clean) clean_images ;;
|
||||||
clean_images
|
status) podman images ;;
|
||||||
;;
|
remove) podman rm "$arg" ;;
|
||||||
status)
|
|
||||||
podman images
|
|
||||||
;;
|
|
||||||
remove)
|
|
||||||
podman rm "$args"
|
|
||||||
;;
|
|
||||||
*)
|
*)
|
||||||
log error "Unknown command: $command"
|
log error "Unknown command: '$cmd'"
|
||||||
exit 127
|
exit 127
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
258
ssh_router.sh
258
ssh_router.sh
@ -1,187 +1,209 @@
|
|||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
PERSON="$1"
|
PERSON="${1:?Usage: $0 <person>}"
|
||||||
WORKSPACE="$SSH_ORIGINAL_COMMAND"
|
WORKSPACE="${SSH_ORIGINAL_COMMAND:-}"
|
||||||
IMAGE="localhost/analytics-backend-workspace:latest"
|
IMAGE="localhost/analytics-backend-workspace:latest"
|
||||||
DEV_USER="devuser"
|
DEV_USER="devuser"
|
||||||
|
|
||||||
XDG_RUNTIME_DIR="/run/user/$(id -u)"
|
XDG_RUNTIME_DIR="/run/user/$(id -u)"
|
||||||
LOG_FILE="/tmp/.ssh-router-${PERSON}.log"
|
LOG_FILE="/tmp/.ssh-router-${PERSON}.log"
|
||||||
|
|
||||||
|
# ─────────────────────────────────────────────
|
||||||
|
# ANSI colors & emojis
|
||||||
|
readonly C_RESET='\033[0m'
|
||||||
|
readonly C_INFO='\033[1;34m' # blue
|
||||||
|
readonly C_WARN='\033[1;33m' # yellow
|
||||||
|
readonly C_ERROR='\033[1;31m' # red
|
||||||
|
|
||||||
log() {
|
log() {
|
||||||
echo "[$(date '+%Y-%m-%d %H:%M:%S')] $*" >>"$LOG_FILE"
|
local level="${1^^}"
|
||||||
|
shift
|
||||||
|
local icon color
|
||||||
|
case "$level" in
|
||||||
|
INFO) icon="ℹ️" color="$C_INFO" ;;
|
||||||
|
WARN) icon="⚠️" color="$C_WARN" ;;
|
||||||
|
ERROR) icon="❌" color="$C_ERROR" ;;
|
||||||
|
*) icon="🔹" color="$C_RESET" ;;
|
||||||
|
esac
|
||||||
|
local ts
|
||||||
|
ts="$(date '+%Y-%m-%d %H:%M:%S')"
|
||||||
|
printf '%b%s [%s] %s%b\n' \
|
||||||
|
"$color" "$icon" "$ts" "[$level] $*" "$C_RESET" |
|
||||||
|
tee -a "$LOG_FILE"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# ─────────────────────────────────────────────
|
||||||
|
# Check for interactive TTY
|
||||||
if [[ ! -t 0 ]]; then
|
if [[ ! -t 0 ]]; then
|
||||||
log "❌ No TTY allocated — refusing to run tmux without an interactive terminal"
|
log ERROR "No TTY allocated—refusing to run without an interactive terminal"
|
||||||
echo "Error: No TTY. Use 'ssh -t'" >&2
|
echo "Error: No TTY. Use 'ssh -t'" >&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# log "🧩 IMAGE = '$IMAGE'"
|
# ─────────────────────────────────────────────
|
||||||
# log "🧩 WORKSPACE = '$WORKSPACE'"
|
# Default WORKSPACE if empty
|
||||||
# log "🧩 PERSON = '$PERSON'"
|
if [[ -z "$WORKSPACE" ]]; then
|
||||||
|
|
||||||
# Fallbacks
|
|
||||||
if [[ -z "${WORKSPACE:-}" ]]; then
|
|
||||||
WORKSPACE="$PERSON"
|
WORKSPACE="$PERSON"
|
||||||
log "ℹ️ Defaulted WORKSPACE to $WORKSPACE"
|
log INFO "Defaulted WORKSPACE → $WORKSPACE"
|
||||||
fi
|
fi
|
||||||
|
TMUX_SESSION="${WORKSPACE}|analytics-backend"
|
||||||
|
|
||||||
TMUX_SESSION="$WORKSPACE|analytics-backend"
|
# ─────────────────────────────────────────────
|
||||||
|
# Ensure Podman socket is up
|
||||||
# Start podman socket service if it's not running
|
ensure_podman() {
|
||||||
if [[ ! -S "$XDG_RUNTIME_DIR/podman/podman.sock" ]]; then
|
local sock="$XDG_RUNTIME_DIR/podman/podman.sock"
|
||||||
log "🔄 Starting Podman socket service for user $USER"
|
if [[ ! -S "$sock" ]]; then
|
||||||
systemctl --user start podman.socket || {
|
log INFO "Starting podman.socket for user $(id -un)"
|
||||||
log "❌ Failed to start podman.socket via systemd"
|
systemctl --user start podman.socket || {
|
||||||
|
log ERROR "Failed to start podman.socket"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
sleep 1
|
||||||
|
fi
|
||||||
|
[[ -S "$sock" ]] || {
|
||||||
|
log ERROR "Podman socket still missing"
|
||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
ensure_podman
|
||||||
|
|
||||||
# Wait briefly for socket to appear
|
# ─────────────────────────────────────────────
|
||||||
sleep 1
|
# Ensure IMAGE is present
|
||||||
fi
|
ensure_image() {
|
||||||
|
if ! podman image exists "$IMAGE"; then
|
||||||
if [[ ! -S "$XDG_RUNTIME_DIR/podman/podman.sock" ]]; then
|
log WARN "Image $IMAGE not found—pulling"
|
||||||
log "❌ Podman socket still missing after startup attempt"
|
podman pull --tls-verify=false "$IMAGE" || {
|
||||||
exit 1
|
log ERROR "Failed to pull $IMAGE"
|
||||||
fi
|
exit 1
|
||||||
|
}
|
||||||
# Check if image exists locally
|
log INFO "Pulled $IMAGE"
|
||||||
if ! podman image exists "$IMAGE"; then
|
|
||||||
log "📦 Image $IMAGE not found locally. Pulling from registry..."
|
|
||||||
|
|
||||||
# Attempt to pull the image from the local registry (insecure HTTP)
|
|
||||||
if ! podman pull --tls-verify=false "$IMAGE"; then
|
|
||||||
log "❌ Failed to pull image from $IMAGE"
|
|
||||||
exit 1
|
|
||||||
fi
|
fi
|
||||||
|
}
|
||||||
|
ensure_image
|
||||||
|
|
||||||
log "✅ Successfully pulled $IMAGE"
|
# ─────────────────────────────────────────────
|
||||||
fi
|
# Disallow file transfers
|
||||||
|
|
||||||
case "$SSH_ORIGINAL_COMMAND" in
|
case "$SSH_ORIGINAL_COMMAND" in
|
||||||
*scp* | *sftp* | *rsync* | *tar*)
|
*scp* | *sftp* | *rsync* | *tar*)
|
||||||
log "❌ File transfers are disabled"
|
log ERROR "File transfers are disabled"
|
||||||
exit 1
|
exit 1
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
# Function to start the container if not running
|
# ─────────────────────────────────────────────
|
||||||
|
# Generate per-user gitconfig
|
||||||
|
generate_gitconfig() {
|
||||||
|
local access="$HOME/access.yml"
|
||||||
|
local template="$HOME/gitconfig.template"
|
||||||
|
local userdir="$HOME/secrets/$PERSON"
|
||||||
|
local name email
|
||||||
|
|
||||||
|
name=$(yq -r ".\"$PERSON\".name" "$access" 2>/dev/null || echo)
|
||||||
|
email=$(yq -r ".\"$PERSON\".email" "$access" 2>/dev/null || echo)
|
||||||
|
|
||||||
|
if [[ -z "$name" || -z "$email" ]]; then
|
||||||
|
log ERROR "Missing name/email for '$PERSON' in $access"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
mkdir -p "$userdir"
|
||||||
|
GIT_NAME="$name" GIT_EMAIL="$email" \
|
||||||
|
envsubst <"$template" >"$userdir/gitconfig"
|
||||||
|
log INFO ".gitconfig created → $userdir/gitconfig"
|
||||||
|
}
|
||||||
|
|
||||||
|
# ─────────────────────────────────────────────
|
||||||
|
# Start container if absent or stopped
|
||||||
start_container_if_needed() {
|
start_container_if_needed() {
|
||||||
if ! podman container exists "$WORKSPACE"; then
|
if ! podman container exists "$WORKSPACE"; then
|
||||||
log "🚀 Creating container $WORKSPACE..."
|
log INFO "Creating container '$WORKSPACE'"
|
||||||
|
generate_gitconfig
|
||||||
podman run -dit \
|
podman run -dit \
|
||||||
--userns=keep-id \
|
|
||||||
--name "$WORKSPACE" \
|
--name "$WORKSPACE" \
|
||||||
|
--userns=keep-id \
|
||||||
--user "$DEV_USER" \
|
--user "$DEV_USER" \
|
||||||
--hostname "$WORKSPACE" \
|
--hostname "$WORKSPACE" \
|
||||||
--label auto-cleanup=true \
|
--label auto-cleanup=true \
|
||||||
-v "${XDG_RUNTIME_DIR}"/podman/podman.sock:/run/podman/podman.sock \
|
-v "${XDG_RUNTIME_DIR}/podman/podman.sock:/run/podman/podman.sock:Z" \
|
||||||
-v /home/infilytics/data/"$WORKSPACE":/app \
|
-v "/home/infilytics/data/$WORKSPACE:/app:Z" \
|
||||||
-v /home/infilytics/secrets/"$WORKSPACE"/gitconfig:/home/"$DEV_USER"/.gitconfig:ro \
|
-v "/home/infilytics/secrets/$WORKSPACE/gitconfig:/home/$DEV_USER/.gitconfig:ro,Z" \
|
||||||
-v /home/infilytics/secrets/"$WORKSPACE"/id_ed25519:/home/"$DEV_USER"/.ssh/id_ed25519:ro \
|
-v "/home/infilytics/secrets/$WORKSPACE/id_ed25519:/home/$DEV_USER/.ssh/id_ed25519:ro,Z" \
|
||||||
-v /home/infilytics/secrets/"$WORKSPACE"/id_ed25519.pub:/home/"$DEV_USER"/.ssh/id_ed25519.pub:ro \
|
-v "/home/infilytics/secrets/$WORKSPACE/id_ed25519.pub:/home/$DEV_USER/.ssh/id_ed25519.pub:ro,Z" \
|
||||||
--entrypoint "/home/$DEV_USER/start.sh" \
|
--entrypoint "/home/$DEV_USER/start.sh" \
|
||||||
"$IMAGE" "${TMUX_SESSION}"
|
"$IMAGE" "$TMUX_SESSION"
|
||||||
elif ! podman inspect -f '{{.State.Running}}' "$WORKSPACE" | grep -q true; then
|
elif ! podman inspect -f '{{.State.Running}}' "$WORKSPACE" | grep -q true; then
|
||||||
log "⚡ Starting existing container $WORKSPACE..."
|
log INFO "Starting existing container '$WORKSPACE'"
|
||||||
podman start "$WORKSPACE" >/dev/null 2>&1
|
podman start "$WORKSPACE" >/dev/null
|
||||||
fi
|
fi
|
||||||
sleep 1
|
sleep 1
|
||||||
}
|
}
|
||||||
|
|
||||||
# After devuser exits...
|
# ─────────────────────────────────────────────
|
||||||
|
# Detach logic: stop container when devuser has left
|
||||||
check_devuser_attached() {
|
check_devuser_attached() {
|
||||||
# Get list of clients
|
local clients
|
||||||
client_users=$(podman exec "$WORKSPACE" tmux list-clients -t "$TMUX_SESSION" -F "#{client_user}" 2>/dev/null)
|
clients=$(podman exec "$WORKSPACE" tmux list-clients -t "$TMUX_SESSION" -F "#{client_user}" 2>/dev/null)
|
||||||
|
if grep -q "^${DEV_USER}\$" <<<"$clients"; then
|
||||||
if echo "$client_users" | grep -q "$DEV_USER"; then
|
log INFO "devuser still attached—keeping container running"
|
||||||
log "💡 devuser still attached — container stays running"
|
|
||||||
return 0
|
|
||||||
else
|
else
|
||||||
log "🏃 $PERSON has logged out — stopping container"
|
log INFO "devuser detached—stopping container"
|
||||||
podman stop "$WORKSPACE" >/dev/null 2>&1
|
podman stop "$WORKSPACE" >/dev/null
|
||||||
return 1
|
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# ─────────────────────────────────────────────
|
||||||
|
# Determine access mode (rw|ro) or exit
|
||||||
get_access_mode() {
|
get_access_mode() {
|
||||||
local yaml_file="access.yml"
|
local yaml="access.yml" user="$PERSON" ws="$WORKSPACE"
|
||||||
local workspace="$1"
|
[[ ! "$ws" =~ ^[A-Za-z0-9._-]+$ ]] && {
|
||||||
local person="$2"
|
log ERROR "Invalid workspace name"
|
||||||
|
exit 1
|
||||||
if [[ ! "$workspace" =~ ^[a-zA-Z0-9._-]+$ ]]; then
|
}
|
||||||
log "❌ Invalid container name: $WORKSPACE"
|
if [[ "$user" == "$ws" ]]; then
|
||||||
|
echo rw
|
||||||
|
elif yq -e '.["'"$user"'"].rw[]?' "$yaml" | grep -qx "$ws"; then
|
||||||
|
echo rw
|
||||||
|
elif yq -e '.["'"$user"'"].ro[]?' "$yaml" | grep -qx "$ws"; then
|
||||||
|
echo ro
|
||||||
|
else
|
||||||
|
log ERROR "$user has no access to $ws"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Special case: user accessing their own workspace
|
|
||||||
if [[ "$workspace" == "$person" ]]; then
|
|
||||||
echo "access=rw"
|
|
||||||
return 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Check rw
|
|
||||||
if yq '.["'"$person"'"].rw // []' "$yaml_file" | grep -q "\b$workspace\b"; then
|
|
||||||
echo "access=rw"
|
|
||||||
return 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Check ro
|
|
||||||
if yq '.["'"$person"'"].ro // []' "$yaml_file" | grep -q "\b$workspace\b"; then
|
|
||||||
echo "access=ro"
|
|
||||||
return 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
# No access → exit with error
|
|
||||||
log "❌ $person has no access to $workspace" >&2
|
|
||||||
exit 1
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# === Main ===
|
MODE="$(get_access_mode)"
|
||||||
|
|
||||||
read -r access_line < <(get_access_mode "$WORKSPACE" "$PERSON") || exit 1
|
|
||||||
MODE="${access_line#access=}"
|
|
||||||
|
|
||||||
|
# ─────────────────────────────────────────────
|
||||||
|
# Main dispatch
|
||||||
case "$MODE" in
|
case "$MODE" in
|
||||||
rw)
|
rw)
|
||||||
start_container_if_needed
|
start_container_if_needed
|
||||||
|
|
||||||
# Run tmux session inside the container
|
# Ensure tmux session exists
|
||||||
if ! podman exec -it --user "$DEV_USER" "$WORKSPACE" tmux has-session -t "$TMUX_SESSION" >/dev/null 2>&1; then
|
if ! podman exec -it --user "$DEV_USER" "$WORKSPACE" tmux has-session -t "$TMUX_SESSION" 2>/dev/null; then
|
||||||
if ! podman exec -it -e EDITOR=nvim --user "$DEV_USER" "$WORKSPACE" tmux new-session -d -s "$TMUX_SESSION" >/dev/null 2>&1; then
|
podman exec -it --user "$DEV_USER" "$WORKSPACE" \
|
||||||
log "❌ Could not create new tmux session. Please contact admin or try again later."
|
tmux new-session -d -s "$TMUX_SESSION"
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
log "⚡ $PERSON is working on $WORKSPACE's workspace"
|
log INFO "$PERSON attaching to workspace '$WORKSPACE'"
|
||||||
if ! podman exec -it -e TERM="$TERM" --user "$DEV_USER" "$WORKSPACE" tmux attach -t "$TMUX_SESSION"; then
|
podman exec -it -e TERM="$TERM" --user "$DEV_USER" "$WORKSPACE" \
|
||||||
log "❌ Could not attach to tmux session. Please contact admin or try again later."
|
tmux attach -t "$TMUX_SESSION"
|
||||||
exit 1
|
log INFO "$PERSON detached from '$WORKSPACE'"
|
||||||
fi
|
|
||||||
log "⚡ $PERSON finished working on $WORKSPACE's worksapce"
|
|
||||||
|
|
||||||
check_devuser_attached
|
check_devuser_attached
|
||||||
exit 0
|
|
||||||
;;
|
;;
|
||||||
ro)
|
ro)
|
||||||
if (podman container exists "$WORKSPACE" && podman inspect -f '{{.State.Running}}' "$WORKSPACE" | grep -q true) >/dev/null 2>&1; then
|
if podman inspect -f '{{.State.Running}}' "$WORKSPACE" 2>/dev/null | grep -q true; then
|
||||||
log "📜 $PERSON is viewing $WORKSPACE's workspace"
|
log INFO "$PERSON viewing workspace '$WORKSPACE'"
|
||||||
if ! podman exec -it -e TERM="$TERM" --user "$DEV_USER" "$WORKSPACE" tmux attach -r -t "$TMUX_SESSION"; then
|
podman exec -it -e TERM="$TERM" --user "$DEV_USER" "$WORKSPACE" \
|
||||||
log "❌ Could not attach to tmux session. Please contact admin or try again later."
|
tmux attach -r -t "$TMUX_SESSION"
|
||||||
exit 1
|
log INFO "$PERSON stopped viewing '$WORKSPACE'"
|
||||||
fi
|
|
||||||
log "🏃 $PERSON stopped viewing $WORKSPACE's workspace"
|
|
||||||
exit 0
|
|
||||||
else
|
else
|
||||||
log "❌ Workspace for $WORKSPACE does not exist."
|
log ERROR "Workspace '$WORKSPACE' is not running"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
log "❌ Invalid access mode: $MODE"
|
log ERROR "Unknown access mode: '$MODE'"
|
||||||
exit 1
|
exit 1
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
Reference in New Issue
Block a user