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
|
"""
Hub web application — serves the MeshBay web client at /.
The web client (HTML/JS) is a single-page app that:
- Logs in via the hub API
- Discovers public groups
- Connects to a node URL entered by the user
- Browses the node's file index
- Downloads or streams files via the node HTTP API
Static files are served from meshbay_hub/static/.
API routes remain at /v1/*.
"""
from pathlib import Path
from fastapi import APIRouter
from fastapi.responses import FileResponse, HTMLResponse
STATIC_DIR = Path(__file__).parent.parent / "static"
router = APIRouter(tags=["webapp"])
@router.get("/app.js")
async def app_js():
return FileResponse(STATIC_DIR / "app.js", media_type="application/javascript")
@router.get("/transport.js")
async def transport_js():
return FileResponse(STATIC_DIR / "transport.js", media_type="application/javascript")
@router.get("/crypto.js")
async def crypto_js():
return FileResponse(STATIC_DIR / "crypto.js", media_type="application/javascript")
@router.get("/webrtc-test.html")
async def webrtc_test():
return FileResponse(STATIC_DIR / "webrtc-test.html", media_type="text/html")
@router.get("/", response_class=HTMLResponse)
async def index():
return HTMLResponse(_HTML)
_HTML = """\
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>MeshBay</title>
<style>
*, *::before, *::after { box-sizing: border-box; }
body { font-family: system-ui, sans-serif; margin: 0; background: #f8fafc; color: #1e293b; }
#nav { background: #0f172a; color: #e2e8f0; padding: 12px 24px; }
#nav b { color: #38bdf8; font-size: 1.2em; }
#main { max-width: 960px; margin: 32px auto; padding: 0 16px; }
h2 { color: #0f172a; margin-top: 1.5em; }
input { padding: 8px 12px; border: 1px solid #cbd5e1; border-radius: 6px;
font-size: 1em; margin: 4px; }
button { padding: 8px 16px; background: #0ea5e9; color: #fff; border: none;
border-radius: 6px; cursor: pointer; font-size: 0.9em; margin: 4px; }
button:hover { background: #0284c7; }
.card { background: #fff; border: 1px solid #e2e8f0; border-radius: 8px;
padding: 16px; margin: 8px 0; cursor: pointer; }
.card:hover { border-color: #0ea5e9; }
.badge { background: #e0f2fe; color: #0284c7; padding: 2px 8px;
border-radius: 12px; font-size: 0.8em; margin-left: 8px; }
table { width: 100%; border-collapse: collapse; background: #fff;
border: 1px solid #e2e8f0; border-radius: 8px; overflow: hidden; }
th { background: #f1f5f9; padding: 10px; text-align: left; }
td { padding: 10px; border-top: 1px solid #f1f5f9; }
video { border-radius: 8px; box-shadow: 0 4px 16px rgba(0,0,0,.15); }
a { color: #0ea5e9; text-decoration: none; }
a:hover { text-decoration: underline; }
</style>
</head>
<body>
<div id="nav"></div>
<div id="main"><p>Loading…</p></div>
<script src="/app.js"></script>
</body>
</html>
"""
|