summaryrefslogtreecommitdiff
path: root/core/modules/vault-remote.sh
diff options
context:
space:
mode:
authorluisgulo <luisgulo@gmail.com>2025-10-24 18:01:10 +0200
committerluisgulo <luisgulo@gmail.com>2025-10-24 18:01:10 +0200
commit533e79ba959143f0459431a486bfb85c56c72ddc (patch)
tree91974de1bbbdc4c51c76ed591fc5c6e02a3342b6 /core/modules/vault-remote.sh
parent45019c81cfd0fc1d18dce18cdfd5f127c6d61073 (diff)
Releasing code version 1.8.0
Diffstat (limited to 'core/modules/vault-remote.sh')
-rw-r--r--core/modules/vault-remote.sh81
1 files changed, 81 insertions, 0 deletions
diff --git a/core/modules/vault-remote.sh b/core/modules/vault-remote.sh
new file mode 100644
index 0000000..4b3a1c6
--- /dev/null
+++ b/core/modules/vault-remote.sh
@@ -0,0 +1,81 @@
+#!/bin/bash
+# Module: vault-remote
+# Description: Sincroniza secretos cifrados entre vault local y remoto
+# License: GPLv3
+# Author: Luis GuLo
+# Version: 1.1.0
+# Dependencies: ssh, scp, gpg
+
+VAULT_DIR="core/vault"
+
+vault_remote_task() {
+ local host="$1"; shift
+ declare -A args
+ for arg in "$@"; do
+ key="${arg%%=*}"
+ value="${arg#*=}"
+ args["$key"]="$value"
+ done
+
+ local action="${args[action]}"
+ local key="${args[key]}"
+ local remote_path="${args[remote_path]:-/tmp/shflow_vault}"
+ local become="${args[become]}"
+ local prefix=""
+ [ "$become" = "true" ] && prefix="sudo"
+
+ # Cargar traducciones
+ local lang="${shflow_vars[language]:-es}"
+ local trfile="$(dirname "${BASH_SOURCE[0]}")/vault-remote.tr.${lang}"
+ declare -A tr
+ if [[ -f "$trfile" ]]; then
+ while IFS='=' read -r k v; do tr["$k"]="$v"; done < "$trfile"
+ fi
+
+ case "$action" in
+ push)
+ if [ ! -f "$VAULT_DIR/$key.gpg" ]; then
+ echo "$(render_msg "${tr[missing_local]}" "key=$key")"
+ return 1
+ fi
+ scp "$VAULT_DIR/$key.gpg" "$host:$remote_path/$key.gpg"
+ ssh "$host" "$prefix mkdir -p '$remote_path'"
+ echo "$(render_msg "${tr[pushed]}" "key=$key" "host=$host" "path=$remote_path")"
+ ;;
+ pull)
+ ssh "$host" "$prefix test -f '$remote_path/$key.gpg'" || {
+ echo "$(render_msg "${tr[missing_remote]}" "key=$key")"
+ return 1
+ }
+ scp "$host:$remote_path/$key.gpg" "$VAULT_DIR/$key.gpg"
+ echo "$(render_msg "${tr[pulled]}" "key=$key" "host=$host")"
+ ;;
+ sync)
+ ssh "$host" "$prefix mkdir -p '$remote_path'"
+ scp "$VAULT_DIR/"*.gpg "$host:$remote_path/"
+ echo "$(render_msg "${tr[synced]}" "host=$host" "path=$remote_path")"
+ ;;
+ *)
+ echo "$(render_msg "${tr[unsupported]}" "action=$action")"
+ return 1
+ ;;
+ esac
+}
+
+check_dependencies_vault_remote() {
+ local lang="${shflow_vars[language]:-es}"
+ local trfile="$(dirname "${BASH_SOURCE[0]}")/vault-remote.tr.${lang}"
+ declare -A tr
+ if [[ -f "$trfile" ]]; then
+ while IFS='=' read -r k v; do tr["$k"]="$v"; done < "$trfile"
+ fi
+
+ for cmd in ssh scp gpg; do
+ if ! command -v "$cmd" &> /dev/null; then
+ echo "$(render_msg "${tr[missing_deps]}" "cmd=$cmd")"
+ return 1
+ fi
+ done
+ echo "${tr[deps_ok]:-✅ [vault-remote] Dependencias disponibles.}"
+ return 0
+}