forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcmd-doctor.sh
More file actions
385 lines (324 loc) · 11.1 KB
/
Copy pathcmd-doctor.sh
File metadata and controls
385 lines (324 loc) · 11.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
#!/usr/bin/env bash
# showcase doctor — diagnose common local stack issues
# Sourced by the main dispatcher; do not execute directly.
CMD_DOCTOR_DESC="Diagnose common local stack issues"
usage_doctor() {
cat <<'HELP'
Usage: showcase doctor
Diagnose common issues with the local showcase stack.
Checks performed:
- Docker engine and Compose availability
- Depot CLI interception (common build gotcha)
- ENV file and API keys
- Compose file validity
- Container status and stale images
- Aimock health and fixture files
- Port conflicts
HELP
}
# ── Color helpers ────────────────────────────────────────────────────────────
_doctor_has_color() {
[ -t 1 ] && { [ "${TERM:-dumb}" != "dumb" ] || [ -n "${FORCE_COLOR:-}" ]; }
}
_doctor_pass() {
if _doctor_has_color; then
printf '\033[0;32m%-22s\033[0m %s\n' " ✓ $1" "$2"
else
printf '%-22s %s\n' " ✓ $1" "$2"
fi
_DOCTOR_PASS=$((_DOCTOR_PASS + 1))
}
_doctor_warn() {
if _doctor_has_color; then
printf '\033[1;33m%-22s\033[0m %s\n' " ⚠ $1" "$2"
else
printf '%-22s %s\n' " ⚠ $1" "$2"
fi
_DOCTOR_WARN=$((_DOCTOR_WARN + 1))
}
_doctor_fail() {
if _doctor_has_color; then
printf '\033[1;31m%-22s\033[0m %s\n' " ✗ $1" "$2"
else
printf '%-22s %s\n' " ✗ $1" "$2"
fi
_DOCTOR_FAIL=$((_DOCTOR_FAIL + 1))
}
# ── Individual checks ───────────────────────────────────────────────────────
_check_docker_engine() {
if ! docker info >/dev/null 2>&1; then
_doctor_fail "Docker engine" "Not running — start Docker Desktop or dockerd"
return
fi
local version
version="$(docker version --format '{{.Server.Version}}' 2>/dev/null || echo "unknown")"
_doctor_pass "Docker engine" "Docker $version"
}
_check_docker_compose() {
if ! docker compose version >/dev/null 2>&1; then
_doctor_fail "Docker Compose" "Not available — install docker-compose-plugin"
return
fi
local version
version="$(docker compose version --short 2>/dev/null || echo "unknown")"
_doctor_pass "Docker Compose" "v$version"
}
_check_depot_interception() {
local docker_path
docker_path="$(which docker 2>/dev/null || true)"
if [ -n "$docker_path" ] && echo "$docker_path" | grep -qi "depot"; then
_doctor_warn "Depot CLI" "Detected — use DEPOT_DISABLE=1 for local builds"
return
fi
# Also check if depot's buildx builder is active even without shim
if DEPOT_DISABLE=1 docker buildx ls 2>/dev/null | grep -q "depot"; then
_doctor_warn "Depot CLI" "Depot buildx builder active — use --builder desktop-linux"
return
fi
_doctor_pass "Depot CLI" "No Depot interception detected"
}
_check_env_file() {
if [ ! -f "$ENV_FILE" ]; then
_doctor_fail "ENV file" ".env missing — copy showcase/.env.example"
return
fi
local key_count=0
local has_openai=false
while IFS= read -r line; do
# Skip comments and empty lines
[[ "$line" =~ ^[[:space:]]*# ]] && continue
[[ "$line" =~ ^[[:space:]]*$ ]] && continue
# Count lines with = sign (key=value pairs)
if [[ "$line" == *"="* ]]; then
key_count=$((key_count + 1))
if [[ "$line" == OPENAI_API_KEY=* ]]; then
local val="${line#OPENAI_API_KEY=}"
# Strip quotes
val="${val#\"}"
val="${val%\"}"
val="${val#\'}"
val="${val%\'}"
[ -n "$val" ] && has_openai=true
fi
fi
done < "$ENV_FILE"
if [ "$has_openai" = false ]; then
_doctor_warn "ENV file" ".env present ($key_count keys) but missing OPENAI_API_KEY"
return
fi
_doctor_pass "ENV file" ".env present ($key_count keys)"
}
_check_compose_file() {
if [ ! -f "$COMPOSE_FILE" ]; then
_doctor_fail "Compose file" "docker-compose.local.yml missing"
return
fi
if ! docker compose -f "$COMPOSE_FILE" config --quiet 2>/dev/null; then
_doctor_fail "Compose file" "docker-compose.local.yml failed to parse"
return
fi
local service_count
service_count="$(docker compose -f "$COMPOSE_FILE" config --services 2>/dev/null | wc -l | tr -d ' ')"
_doctor_pass "Compose file" "docker-compose.local.yml valid ($service_count services)"
}
_check_running_containers() {
local containers
containers="$(docker ps -a --filter "name=showcase-" --format '{{.Names}}|{{.Status}}|{{.Image}}' 2>/dev/null || true)"
if [ -z "$containers" ]; then
_doctor_warn "Running containers" "No showcase containers found"
return
fi
local running=0
local total=0
while IFS='|' read -r name status image; do
total=$((total + 1))
if echo "$status" | grep -qi "^up"; then
running=$((running + 1))
fi
done <<< "$containers"
if [ "$running" -eq 0 ]; then
_doctor_warn "Running containers" "0 of $total running"
else
_doctor_pass "Running containers" "$running of $total running"
fi
}
_check_stale_images() {
local containers
containers="$(docker ps --filter "name=showcase-" --format '{{.Names}}' 2>/dev/null || true)"
if [ -z "$containers" ]; then
# No running containers, nothing to check
_doctor_pass "Stale images" "No running containers to check"
return
fi
local stale_list=""
while IFS= read -r cname; do
local slug="${cname#showcase-}"
# Get the image ID the container is running
local container_image_id
container_image_id="$(docker inspect --format='{{.Image}}' "$cname" 2>/dev/null || true)"
[ -z "$container_image_id" ] && continue
# Get the latest local image ID for this slug
local latest_image_id
latest_image_id="$(docker images --format '{{.ID}}' "showcase-${slug}:local" 2>/dev/null | head -1)"
[ -z "$latest_image_id" ] && continue
# Compare (container image is sha256:xxx, local image is short hash)
if ! echo "$container_image_id" | grep -q "$latest_image_id"; then
if [ -n "$stale_list" ]; then
stale_list="$stale_list, $slug"
else
stale_list="$slug"
fi
fi
done <<< "$containers"
if [ -n "$stale_list" ]; then
_doctor_warn "Stale images" "$stale_list using old image (recreate to fix)"
else
_doctor_pass "Stale images" "All containers using latest images"
fi
}
_check_aimock_health() {
local container="showcase-aimock"
# Check if container exists and is running
local status
status="$(docker inspect --format='{{.State.Status}}' "$container" 2>/dev/null || echo "missing")"
if [ "$status" = "missing" ] || [ "$status" = "exited" ]; then
_doctor_warn "Aimock" "Container not running"
return
fi
local health
health="$(docker inspect --format='{{.State.Health.Status}}' "$container" 2>/dev/null || echo "unknown")"
if [ "$health" = "healthy" ]; then
# Try to get fixture count from the health endpoint
local fixture_info=""
local health_response
health_response="$(curl -s --max-time 3 http://localhost:4010/health 2>/dev/null || true)"
if [ -n "$health_response" ] && command -v jq &>/dev/null; then
local fixture_count
fixture_count="$(echo "$health_response" | jq -r '.fixtures // .fixtureCount // empty' 2>/dev/null || true)"
[ -n "$fixture_count" ] && fixture_info=", $fixture_count fixtures loaded"
fi
_doctor_pass "Aimock" "Healthy${fixture_info}"
else
_doctor_warn "Aimock" "Running but $health"
fi
}
_check_fixture_files() {
local fixture_dir="$SHOWCASE_ROOT/aimock"
local file_count=0
local total_size=0
if [ ! -d "$fixture_dir" ]; then
_doctor_warn "Fixture files" "aimock/ directory not found"
return
fi
for f in "$fixture_dir"/*.json; do
[ -f "$f" ] || continue
file_count=$((file_count + 1))
local fsize
# macOS stat vs GNU stat
if stat --version >/dev/null 2>&1; then
fsize="$(stat -c%s "$f" 2>/dev/null || echo 0)"
else
fsize="$(stat -f%z "$f" 2>/dev/null || echo 0)"
fi
total_size=$((total_size + fsize))
done
if [ "$file_count" -eq 0 ]; then
_doctor_warn "Fixture files" "No .json files in aimock/"
return
fi
# Format size nicely
local size_str
if [ "$total_size" -ge 1048576 ]; then
size_str="$((total_size / 1048576)) MB"
elif [ "$total_size" -ge 1024 ]; then
size_str="$((total_size / 1024)) KB"
else
size_str="$total_size B"
fi
_doctor_pass "Fixture files" "$file_count files ($size_str)"
}
_check_port_conflicts() {
if [ ! -f "$PORTS_FILE" ]; then
_doctor_warn "Port conflicts" "local-ports.json not found"
return
fi
local conflicts=""
local port_list
if command -v jq &>/dev/null; then
port_list="$(jq -r 'to_entries[] | "\(.key):\(.value)"' "$PORTS_FILE" 2>/dev/null)"
else
# Fallback: parse JSON manually
port_list="$(grep -o '"[^"]*"[[:space:]]*:[[:space:]]*[0-9]*' "$PORTS_FILE" | sed 's/"//g; s/[[:space:]]*:[[:space:]]*/:/g')"
fi
# Also check well-known ports: aimock=4010, pocketbase=8090
port_list="$port_list
aimock:4010
pocketbase:8090"
while IFS=':' read -r slug port; do
[ -z "$port" ] && continue
# Check if port is in use by a non-Docker process
local listeners
listeners="$(lsof -i :"$port" -sTCP:LISTEN -P -n 2>/dev/null | tail -n +2 || true)"
[ -z "$listeners" ] && continue
# Filter out Docker/com.docker processes
local non_docker
non_docker="$(echo "$listeners" | grep -vi "docker\|com.docker" || true)"
[ -z "$non_docker" ] && continue
local proc_name
proc_name="$(echo "$non_docker" | head -1 | awk '{print $1}')"
if [ -n "$conflicts" ]; then
conflicts="$conflicts, :$port ($proc_name)"
else
conflicts=":$port ($proc_name)"
fi
done <<< "$port_list"
if [ -n "$conflicts" ]; then
_doctor_warn "Port conflicts" "$conflicts"
else
_doctor_pass "Port conflicts" "None detected"
fi
}
# ── Main entry point ────────────────────────────────────────────────────────
cmd_doctor() {
_DOCTOR_PASS=0
_DOCTOR_WARN=0
_DOCTOR_FAIL=0
echo ""
echo "showcase doctor"
echo "─────────────────────────────────"
_check_docker_engine
_check_docker_compose
_check_depot_interception
_check_env_file
_check_compose_file
_check_running_containers
_check_stale_images
_check_aimock_health
_check_fixture_files
_check_port_conflicts
echo "─────────────────────────────────"
local summary="${_DOCTOR_PASS} passed, ${_DOCTOR_WARN} warning"
[ "$_DOCTOR_WARN" -ne 1 ] && summary="${summary}s"
summary="${summary}, ${_DOCTOR_FAIL} failed"
if [ "$_DOCTOR_FAIL" -gt 0 ]; then
if _doctor_has_color; then
printf '\033[1;31m%s\033[0m\n' " $summary"
else
echo " $summary"
fi
return 1
elif [ "$_DOCTOR_WARN" -gt 0 ]; then
if _doctor_has_color; then
printf '\033[1;33m%s\033[0m\n' " $summary"
else
echo " $summary"
fi
else
if _doctor_has_color; then
printf '\033[0;32m%s\033[0m\n' " $summary"
else
echo " $summary"
fi
fi
echo ""
}