-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi.py
More file actions
555 lines (423 loc) Β· 20.3 KB
/
Copy pathapi.py
File metadata and controls
555 lines (423 loc) Β· 20.3 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
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
"""
api.py - FastAPI REST endpoints
"""
import asyncio
import json
import os
import urllib.request
from fastapi import FastAPI, HTTPException
from fastapi.staticfiles import StaticFiles
from fastapi.responses import FileResponse, StreamingResponse
from pydantic import BaseModel
from typing import Optional
import collector
import storage
app = FastAPI(title="PingPlotter API", version="1.0")
_geo_cache: dict = {} # ip -> {country, org, city, region}
# ββ Pydantic models ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class DeviceCreate(BaseModel):
name: str
host: str
probe_type: str = "icmp"
interval_sec: int = 5
packet_size: Optional[int] = None
df_bit: bool = False
enabled: bool = True
thresholds: Optional[dict] = {}
notes: Optional[str] = ""
tag_color: Optional[str] = None
group_id: Optional[int] = None
class DeviceUpdate(BaseModel):
name: Optional[str] = None
host: Optional[str] = None
probe_type: Optional[str] = None
interval_sec: Optional[int] = None
packet_size: Optional[int] = None
df_bit: Optional[bool] = None
enabled: Optional[bool] = None
thresholds: Optional[dict] = None
notes: Optional[str] = None
tag_color: Optional[str] = None
group_id: Optional[int] = None
# ββ Device endpoints βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.get("/api/devices")
def list_devices():
devices = storage.load_devices()
statuses = {s["device_id"]: s for s in collector.get_live_status()}
for d in devices:
s = statuses.get(d["id"], {})
d["live"] = s
return devices
@app.post("/api/devices", status_code=201)
def create_device(payload: DeviceCreate):
device = storage.add_device(payload.model_dump())
if device.get("enabled", True):
collector.start_device(device["id"])
return device
@app.delete("/api/devices/{device_id}")
def delete_device(device_id: int):
collector.stop_device(device_id)
storage.remove_device(device_id)
return {"ok": True}
@app.patch("/api/devices/{device_id}")
def update_device(device_id: int, payload: DeviceUpdate):
updates = payload.model_dump(exclude_unset=True)
storage.update_device(device_id, updates)
collector.restart_device(device_id)
return {"ok": True}
@app.post("/api/devices/{device_id}/enable")
def enable_device(device_id: int):
storage.update_device(device_id, {"enabled": True})
collector.start_device(device_id)
return {"ok": True}
@app.post("/api/devices/{device_id}/disable")
def disable_device(device_id: int):
storage.update_device(device_id, {"enabled": False})
collector.stop_device(device_id)
return {"ok": True}
# ββ Groups endpoints βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class GroupCreate(BaseModel):
name: str
@app.get("/api/groups")
def list_groups():
return storage.load_groups()
@app.post("/api/groups", status_code=201)
def create_group(payload: GroupCreate):
return storage.add_group(payload.name)
@app.delete("/api/groups/{group_id}")
def delete_group(group_id: int):
storage.remove_group(group_id)
return {"ok": True}
@app.patch("/api/groups/{group_id}")
def update_group(group_id: int, payload: GroupCreate):
groups = storage.load_groups()
for g in groups:
if g["id"] == group_id:
g["name"] = payload.name
storage.save_groups(groups)
return {"ok": True}
# ββ Maintenance window endpoints ββββββββββββββββββββββββββββββββββββββββββββββ
class MaintenanceCreate(BaseModel):
label: str
start: str # ISO datetime UTC
end: str # ISO datetime UTC
device_id: Optional[int] = None # None = all devices
@app.get("/api/maintenance")
def list_maintenance():
return storage.load_maintenance()
@app.post("/api/maintenance", status_code=201)
def create_maintenance(payload: MaintenanceCreate):
return storage.add_maintenance(payload.model_dump())
@app.delete("/api/maintenance/{window_id}")
def delete_maintenance(window_id: int):
storage.remove_maintenance(window_id)
return {"ok": True}
# ββ Results & stats endpoints ββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.get("/api/devices/{device_id}/results")
def get_results(device_id: int, hours: int = 1):
return storage.load_results(device_id, hours)
@app.get("/api/devices/{device_id}/summary")
def get_summary(device_id: int, hours: int = 1):
return storage.load_results_summary(device_id, hours)
@app.get("/api/devices/{device_id}/hops")
def get_hops(device_id: int, runs: int = 50):
return storage.load_trace_stats(device_id, runs)
@app.get("/api/status")
def get_all_status():
return collector.get_live_status()
# ββ Alert log endpoint βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.get("/api/alerts")
def get_alerts(limit: int = 100):
return storage.load_alerts(limit)
# ββ Health check βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.get("/api/health")
def health():
return {"status": "ok", "devices": len(storage.load_devices())}
# ββ Settings endpoints βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.get("/api/settings")
def get_settings():
s = storage.load_settings()
# Env var overrides stored webhook
if os.environ.get("SLACK_WEBHOOK_URL"):
s["slack_webhook_url"] = os.environ["SLACK_WEBHOOK_URL"]
return s
@app.post("/api/settings")
def update_settings(payload: dict):
return storage.save_settings(payload)
@app.post("/api/settings/test-slack")
def test_slack():
s = storage.load_settings()
url = os.environ.get("SLACK_WEBHOOK_URL") or s.get("slack_webhook_url", "")
if not url:
raise HTTPException(status_code=400, detail="No Slack webhook URL configured")
body = b'{"text": "PingPlotter test message - Slack alerts are working!"}'
req = urllib.request.Request(url, data=body, headers={"Content-Type": "application/json"})
try:
with urllib.request.urlopen(req, timeout=5) as resp:
return {"ok": resp.status == 200}
except Exception as e:
raise HTTPException(status_code=502, detail=str(e))
@app.post("/api/settings/test-discord")
def test_discord():
s = storage.load_settings()
url = s.get("discord_webhook_url", "")
if not url:
raise HTTPException(status_code=400, detail="No Discord webhook URL configured")
import json
payload = json.dumps({"content": "β
PingPlotter test β Discord alerts are working!"}).encode()
req = urllib.request.Request(url, data=payload, headers={"Content-Type": "application/json"})
try:
with urllib.request.urlopen(req, timeout=5) as resp:
return {"ok": True}
except Exception as e:
raise HTTPException(status_code=502, detail=str(e))
@app.post("/api/settings/test-teams")
def test_teams():
s = storage.load_settings()
url = s.get("teams_webhook_url", "")
if not url:
raise HTTPException(status_code=400, detail="No Teams webhook URL configured")
import json
payload = json.dumps({"@type": "MessageCard", "@context": "http://schema.org/extensions", "text": "β
PingPlotter test β Teams alerts are working!"}).encode()
req = urllib.request.Request(url, data=payload, headers={"Content-Type": "application/json"})
try:
with urllib.request.urlopen(req, timeout=5) as resp:
return {"ok": True}
except Exception as e:
raise HTTPException(status_code=502, detail=str(e))
@app.post("/api/settings/test-email")
def test_email():
from alerts import _send_email
try:
_send_email("PingPlotter Test", "PingPlotter email alerts are working!")
return {"ok": True}
except Exception as e:
raise HTTPException(status_code=502, detail=str(e))
# ββ Report endpoint ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.get("/api/report")
def get_report(hours: int = 24):
devices = storage.load_devices()
statuses = {s["device_id"]: s for s in collector.get_live_status()}
report = []
for d in devices:
summary = storage.load_results_summary(d["id"], hours)
live = statuses.get(d["id"], {})
report.append({
"id": d["id"],
"name": d["name"],
"host": d["host"],
"status": live.get("status", "unknown"),
**summary,
})
return report
# ββ Per-device uptime / incidents / heatmap ββββββββββββββββββββββββββββββββββββ
@app.get("/api/devices/{device_id}/uptime")
def get_uptime(device_id: int, hours: int = 24):
return storage.load_uptime_stats(device_id, hours)
@app.get("/api/devices/{device_id}/incidents")
def get_incidents(device_id: int, hours: int = 168):
return storage.load_incidents(device_id, hours)
@app.get("/api/devices/{device_id}/heatmap")
def get_heatmap(device_id: int):
return storage.load_heatmap(device_id)
@app.get("/api/devices/{device_id}/baseline")
def get_baseline_stats(device_id: int):
import baseline as bl
return bl.get_baseline(device_id) or {"mean": None, "stddev": None, "samples": 0}
# ββ Compare endpoint βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# ββ DNS reverse lookup endpoint ββββββββββββββββββββββββββββββββββββββββββββββββ
@app.get("/api/resolve")
def resolve_ip(ip: str):
import socket
try:
hostname = socket.gethostbyaddr(ip)[0]
except Exception:
hostname = None
return {"ip": ip, "hostname": hostname}
# ββ Sparklines endpoint ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.get("/api/sparklines")
def get_sparklines(minutes: int = 10):
"""Return last N minutes of latency for all devices (for sidebar sparklines)."""
from datetime import datetime, timedelta
devices = storage.load_devices()
result = {}
for d in devices:
rows = storage.load_results(d["id"], hours=1)
cutoff = datetime.utcnow() - timedelta(minutes=minutes)
recent = [r["latency_ms"] for r in rows
if r["latency_ms"] is not None
and datetime.fromisoformat(r["timestamp"]) >= cutoff]
result[d["id"]] = recent
return result
# ββ MTU discovery endpoint βββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.post("/api/devices/{device_id}/mtu-discover")
def mtu_discover(device_id: int):
devices = storage.load_devices()
device = next((d for d in devices if d["id"] == device_id), None)
if device is None:
raise HTTPException(status_code=404, detail="Device not found")
result = collector.discover_mtu(device["host"])
return result
# ββ Network events endpoint ββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.get("/api/events")
def get_network_events(limit: int = 50):
return storage.load_network_events(limit)
# ββ SSE live-push endpoint βββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.get("/api/sse")
async def sse_events():
"""Server-Sent Events stream: pushes device status every 3 seconds."""
async def event_stream():
while True:
statuses = collector.get_live_status()
data = json.dumps(statuses)
yield f"data: {data}\n\n"
await asyncio.sleep(3)
return StreamingResponse(
event_stream(),
media_type="text/event-stream",
headers={"Cache-Control": "no-cache", "X-Accel-Buffering": "no"},
)
# ββ Histogram / SLA endpoints ββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.get("/api/devices/{device_id}/histogram")
def get_histogram(device_id: int, hours: int = 1, buckets: int = 20):
return storage.load_latency_histogram(device_id, hours, buckets)
@app.get("/api/devices/{device_id}/sla")
def get_sla(device_id: int, days: int = 30):
return storage.load_sla_report(device_id, days)
# ββ CSV export βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.get("/api/devices/{device_id}/export.csv")
def export_csv(device_id: int, hours: int = 8760):
import io, csv as _csv
devices_list = storage.load_devices()
device = next((d for d in devices_list if d["id"] == device_id), None)
if device is None:
raise HTTPException(status_code=404, detail="Device not found")
results = storage.load_results(device_id, hours)
fields = ["timestamp", "latency_ms", "success", "jitter_ms"]
def generate():
buf = io.StringIO()
w = _csv.DictWriter(buf, fieldnames=fields, extrasaction="ignore")
w.writeheader()
for row in results:
w.writerow(row)
yield buf.getvalue()
fname = f"device_{device_id}_{device['name'].replace(' ', '_')}.csv"
return StreamingResponse(
generate(),
media_type="text/csv",
headers={"Content-Disposition": f'attachment; filename="{fname}"'},
)
# ββ Geo lookup βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.get("/api/geo")
def geo_lookup(ip: str):
if ip in _geo_cache:
return _geo_cache[ip]
if len(_geo_cache) > 2000:
_geo_cache.clear()
try:
with urllib.request.urlopen(f"https://ipwho.is/{ip}", timeout=4) as resp:
data = json.loads(resp.read().decode("utf-8"))
conn = data.get("connection") or {}
asn = conn.get("asn")
org_name = conn.get("org") or conn.get("isp")
org = f"AS{asn} {org_name}" if asn and org_name else org_name or None
lat = data.get("latitude")
lon = data.get("longitude")
result = {
"ip": data.get("ip", ip),
"country": data.get("country_code") or data.get("country"),
"org": org,
"city": data.get("city"),
"region": data.get("region"),
"loc": f"{lat},{lon}" if lat is not None and lon is not None else None,
}
except Exception:
result = {"ip": ip, "country": None, "org": None, "city": None, "region": None, "loc": None}
_geo_cache[ip] = result
return result
# ββ Ping-now endpoint ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.post("/api/devices/{device_id}/ping-now")
def ping_now(device_id: int):
devices_list = storage.load_devices()
if not any(d["id"] == device_id for d in devices_list):
raise HTTPException(status_code=404, detail="Device not found")
collector.restart_device(device_id)
return {"ok": True}
# ββ Retention / purge endpoint βββββββββββββββββββββββββββββββββββββββββββββββββ
@app.post("/api/retention/purge")
def retention_purge():
s = storage.load_settings()
rows_purged = storage.purge_old_data(s.get("retention_days", 30))
return {"ok": True, "rows_purged": rows_purged}
import threading as _threading
import speedtest_runner
import digest as digest_mod
_speedtest_lock = _threading.Lock()
# ββ Digest endpoints ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.get("/api/digest")
def get_digest(hours: int = 24):
return digest_mod.build_digest(hours)
@app.post("/api/digest/send")
def send_digest(hours: int = 24):
from alerts import _send_email, _send_slack
d = digest_mod.build_digest(hours)
text = digest_mod.format_digest_text(d)
subject = f"PingPlotter {hours}h Digest"
_send_email(subject, text)
_send_slack(f"```{text[:2900]}```")
return {"ok": True, "text": text}
# ββ Speedtest endpoints βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.post("/api/speedtest/run")
async def run_speedtest_endpoint():
"""Run a speedtest in a thread pool, return results."""
import asyncio
result = await asyncio.to_thread(speedtest_runner.run_once)
if result:
storage.save_speedtest(result)
return result or {"error": "Speedtest failed"}
@app.get("/api/speedtest/results")
def get_speedtest_results(hours: int = 168):
return storage.load_speedtest(hours)
@app.get("/api/speedtest/stream")
async def speedtest_stream():
"""SSE: streams real-time speedtest progress (download/upload speed every ~300ms)."""
if not _speedtest_lock.acquire(blocking=False):
async def _busy():
yield 'data: {"phase":"error","message":"Speedtest already running"}\n\n'
return StreamingResponse(_busy(), media_type="text/event-stream",
headers={"Cache-Control": "no-cache", "X-Accel-Buffering": "no"})
queue: asyncio.Queue = asyncio.Queue()
loop = asyncio.get_running_loop()
def _emit(phase, payload):
loop.call_soon_threadsafe(queue.put_nowait, json.dumps({"phase": phase, **payload}))
def _run():
try:
result = speedtest_runner.run_once_streaming(_emit)
if result:
storage.save_speedtest(result)
finally:
loop.call_soon_threadsafe(queue.put_nowait, None)
_speedtest_lock.release()
_threading.Thread(target=_run, daemon=True).start()
async def event_stream():
yield ": connected\n\n" # flush headers immediately so EventSource opens
try:
while True:
item = await asyncio.wait_for(queue.get(), timeout=120)
if item is None:
break
yield f"data: {item}\n\n"
except (asyncio.TimeoutError, asyncio.CancelledError):
yield 'data: {"phase":"error","message":"Speedtest timed out"}\n\n'
except Exception as exc:
yield f'data: {{"phase":"error","message":{json.dumps(str(exc))}}}\n\n'
return StreamingResponse(
event_stream(),
media_type="text/event-stream",
headers={"Cache-Control": "no-cache", "X-Accel-Buffering": "no"},
)
# ββ Static frontend ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
app.mount("/static", StaticFiles(directory="static"), name="static")
@app.get("/")
def serve_frontend():
return FileResponse("static/index.html")