Mirror the restic system-config adapters for the other two engines, each in that engine's own convention, so system backup/restore/status/retention work on any location regardless of engine: - kopia: BackupSystemToLocation (--tags system:config), SystemSnapshotsJson (filter tag system:config), RestoreSystemLatest, ForgetSystem (per-source policy on $configs_dir + maintenance). - borg: BackupSystemToLocation (archive system-<host>-<ts>, comment system=config; no app is named "system" so the namespace can't collide), SystemSnapshotsJson (--glob-archives system-<host>-*), RestoreSystemLatest, ForgetSystem (prune the system-<host>-* glob). No dispatcher change needed — engineBackupSystem/SystemSnapshotsJson/ RestoreSystemLatest/ForgetSystem already resolve <engine><fn> per location. All three engines now define the full set; syntax clean. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> Signed-off-by: librelad <librelad@digitalangels.vip>
126 lines
3.2 KiB
Bash
126 lines
3.2 KiB
Bash
#!/bin/bash
|
|
|
|
# Re-shape `borg list --json` output to match the restic-style snapshot JSON
|
|
# the frontend consumes: each entry has short_id, id, time, hostname, tags,
|
|
# paths. Tags are reconstructed from the comment field we wrote at create time.
|
|
|
|
borgSnapshotsJson()
|
|
{
|
|
local idx="$1"
|
|
local app_filter="$2"
|
|
local host_filter="$3"
|
|
|
|
borgEnvExport "$idx" || return 1
|
|
|
|
local args=(list --json)
|
|
if [[ -n "$app_filter" || -n "$host_filter" ]]; then
|
|
local glob="${app_filter:-*}-${host_filter:-*}-*"
|
|
args+=(--glob-archives "$glob")
|
|
fi
|
|
|
|
local raw
|
|
raw=$(runBackupOp borg "${args[@]}" 2>/dev/null)
|
|
local rc=$?
|
|
borgEnvUnset
|
|
[[ $rc -ne 0 || -z "$raw" ]] && { echo "[]"; return $rc; }
|
|
|
|
if command -v jq >/dev/null 2>&1; then
|
|
echo "$raw" | jq -c '[.archives[] | {
|
|
id: .id,
|
|
short_id: .name,
|
|
time: .time,
|
|
hostname: .hostname,
|
|
tags: (.comment | split(" ") | map(select(test("^[a-z_]+=")))),
|
|
paths: []
|
|
}]'
|
|
else
|
|
# Fallback: emit minimal entries without jq (no comment parsing).
|
|
echo "$raw" | python3 -c '
|
|
import json, sys
|
|
raw = json.load(sys.stdin)
|
|
out = []
|
|
for a in raw.get("archives", []):
|
|
comment = a.get("comment", "")
|
|
tags = [t for t in comment.split() if "=" in t]
|
|
out.append({
|
|
"id": a.get("id"),
|
|
"short_id": a.get("name"),
|
|
"time": a.get("time"),
|
|
"hostname": a.get("hostname"),
|
|
"tags": tags,
|
|
"paths": []
|
|
})
|
|
print(json.dumps(out))
|
|
' 2>/dev/null || echo "[]"
|
|
fi
|
|
}
|
|
|
|
borgSystemSnapshotsJson()
|
|
{
|
|
local idx="$1"
|
|
local host_filter="$2"
|
|
|
|
borgEnvExport "$idx" || return 1
|
|
|
|
local glob="system-${host_filter:-*}-*"
|
|
local raw
|
|
raw=$(runBackupOp borg list --json --glob-archives "$glob" 2>/dev/null)
|
|
local rc=$?
|
|
borgEnvUnset
|
|
[[ $rc -ne 0 || -z "$raw" ]] && { echo "[]"; return $rc; }
|
|
|
|
if command -v jq >/dev/null 2>&1; then
|
|
echo "$raw" | jq -c '[.archives[] | {
|
|
id: .id,
|
|
short_id: .name,
|
|
time: .time,
|
|
hostname: .hostname,
|
|
tags: (.comment | split(" ") | map(select(test("^[a-z_]+=")))),
|
|
paths: []
|
|
}]'
|
|
else
|
|
echo "$raw" | python3 -c '
|
|
import json, sys
|
|
raw = json.load(sys.stdin)
|
|
out = []
|
|
for a in raw.get("archives", []):
|
|
comment = a.get("comment", "")
|
|
tags = [t for t in comment.split() if "=" in t]
|
|
out.append({
|
|
"id": a.get("id"),
|
|
"short_id": a.get("name"),
|
|
"time": a.get("time"),
|
|
"hostname": a.get("hostname"),
|
|
"tags": tags,
|
|
"paths": []
|
|
})
|
|
print(json.dumps(out))
|
|
' 2>/dev/null || echo "[]"
|
|
fi
|
|
}
|
|
|
|
borgSnapshotLatestId()
|
|
{
|
|
local idx="$1"
|
|
local app_name="$2"
|
|
local host="${3:-$CFG_INSTALL_NAME}"
|
|
|
|
borgEnvExport "$idx" || return 1
|
|
local id
|
|
id=$(runBackupOp borg list --json --glob-archives "${app_name}-${host}-*" --last 1 2>/dev/null \
|
|
| grep -o '"name":"[^"]*"' | head -1 | cut -d'"' -f4)
|
|
borgEnvUnset
|
|
echo "$id"
|
|
}
|
|
|
|
borgSnapshotListFiles()
|
|
{
|
|
local idx="$1"
|
|
local snapshot_id="$2"
|
|
borgEnvExport "$idx" || return 1
|
|
runBackupOp borg list --json-lines "::$snapshot_id" 2>/dev/null
|
|
local rc=$?
|
|
borgEnvUnset
|
|
return $rc
|
|
}
|