Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Jm2auWk6RP71CjaAb4FMoG
42 lines
2.3 KiB
Bash
Executable File
42 lines
2.3 KiB
Bash
Executable File
#!/bin/bash
|
|
# Mirror the player reports, the keeper's replies and the players' screenshots
|
|
# to a local folder, and write a digest beside them for reading.
|
|
# deploy/pull-reports.sh [host] [folder] (default ~/Desktop/hnefatafl-reports)
|
|
set -euo pipefail
|
|
HOST="${1:-209.97.148.244}"
|
|
OUT="${2:-$HOME/Desktop/hnefatafl-reports}"
|
|
mkdir -p "$OUT/images"
|
|
scp -q "root@$HOST:/var/lib/hnefatafl/feedback.jsonl" "$OUT/feedback.jsonl" 2>/dev/null || : > "$OUT/feedback.jsonl"
|
|
rsync -aq "root@$HOST:/var/lib/hnefatafl/feedback-images/" "$OUT/images/" 2>/dev/null || true
|
|
python3 - "$OUT" <<'PY'
|
|
import json, sys, os
|
|
out = sys.argv[1]
|
|
reports, order = {}, []
|
|
for raw in open(os.path.join(out, "feedback.jsonl"), encoding="utf8"):
|
|
raw = raw.strip()
|
|
if not raw: continue
|
|
line = json.loads(raw)
|
|
if "reportId" in line:
|
|
r = reports.get(line["reportId"])
|
|
if not r: continue
|
|
if "image" in line: r["image"] = line["image"]
|
|
else: r["replies"].append(line) # the keeper's replies and the player's answers alike, in order
|
|
continue
|
|
reports[line["id"]] = dict(line, replies=[]); order.append(line["id"])
|
|
lines = ["# Hnefatafl reports", "", f"{len(order)} reports; newest first. Pictures are in `images/`.", ""]
|
|
for rid in reversed(order):
|
|
r = reports[rid]
|
|
lines.append(f"## {r.get('at','')[:16].replace('T',' ')} — {r.get('player','?')} in {r.get('roomId','?')} (turn {r.get('turn','?')}, seq {r.get('seq','?')}) — id {rid}")
|
|
lines.append("")
|
|
lines.append(f"**What happened:** {r.get('happened','').strip()}")
|
|
if r.get("expected","").strip(): lines.append(f"**What they expected:** {r['expected'].strip()}")
|
|
if r.get("image"): lines.append(f"**Picture:** ![{r['image']}](images/{r['image']})")
|
|
for rep in r["replies"]:
|
|
who = f"{r.get('player','the player')} answers" if rep.get("from") == "player" else f"**{rep.get('status','')}**"
|
|
lines.append(f"> {who} ({rep.get('at','')[:16].replace('T',' ')}): {rep.get('text','').strip()}")
|
|
if not r["replies"] or r["replies"][-1].get("from") == "player": lines.append("> _awaiting the keeper_")
|
|
lines.append("")
|
|
open(os.path.join(out, "reports.md"), "w", encoding="utf8").write("\n".join(lines))
|
|
print(f"{len(order)} reports, {sum(1 for r in reports.values() if r.get('image'))} with pictures -> {out}/reports.md")
|
|
PY
|