Spaces:
Running
Running
Update panel.py
Browse files
panel.py
CHANGED
|
@@ -13,462 +13,429 @@ app.add_middleware(CORSMiddleware, allow_origins=["*"], allow_credentials=True,
|
|
| 13 |
mc_process = None
|
| 14 |
output_history = collections.deque(maxlen=300)
|
| 15 |
connected_clients = set()
|
| 16 |
-
|
| 17 |
-
BASE_DIR = os.path.abspath(os.getcwd())
|
| 18 |
|
| 19 |
# -----------------
|
| 20 |
# HTML FRONTEND (Ultra-Modern UI)
|
| 21 |
# -----------------
|
| 22 |
-
HTML_CONTENT = """
|
| 23 |
-
<
|
|
|
|
| 24 |
<head>
|
| 25 |
-
<meta charset="UTF-8">
|
| 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 |
-
/* FILE MANAGER */
|
| 73 |
-
.fm-wrap{display:flex;flex-direction:column;flex:1;overflow:hidden}
|
| 74 |
-
.fm-toolbar{padding:12px 16px;background:var(--s1);border-bottom:1px solid var(--b1);display:flex;align-items:center;gap:8px;flex-wrap:wrap}
|
| 75 |
-
.fm-breadcrumb{flex:1;display:flex;align-items:center;gap:4px;font-size:13px;color:var(--t2);overflow:hidden;min-width:0}
|
| 76 |
-
.fm-breadcrumb span{cursor:pointer;transition:color .15s;white-space:nowrap}
|
| 77 |
-
.fm-breadcrumb span:hover{color:var(--accent)}
|
| 78 |
-
.fm-breadcrumb .sep{color:var(--t3)}
|
| 79 |
-
.tb-btn{height:32px;padding:0 12px;background:var(--s2);border:1px solid var(--b1);color:var(--t2);border-radius:6px;cursor:pointer;font-size:12px;font-family:var(--font);display:flex;align-items:center;gap:6px;transition:var(--trans);white-space:nowrap}
|
| 80 |
-
.tb-btn:hover{background:var(--s3);color:var(--t1)}
|
| 81 |
-
.tb-btn.danger:hover{border-color:var(--red);color:var(--red)}
|
| 82 |
-
.fm-list{flex:1;overflow-y:auto;padding:8px;scrollbar-width:thin;scrollbar-color:var(--b2) transparent}
|
| 83 |
-
.fm-list::-webkit-scrollbar{width:4px}
|
| 84 |
-
.fm-list::-webkit-scrollbar-thumb{background:var(--b2)}
|
| 85 |
-
.fm-empty{display:flex;align-items:center;justify-content:center;height:100%;color:var(--t3);font-size:13px}
|
| 86 |
-
.fm-item{display:flex;align-items:center;padding:9px 12px;border-radius:6px;cursor:pointer;transition:background .1s;gap:10px;user-select:none}
|
| 87 |
-
.fm-item:hover{background:var(--s2)}
|
| 88 |
-
.fm-item.selected{background:rgba(74,222,128,.08);outline:1px solid rgba(74,222,128,.2)}
|
| 89 |
-
.fm-icon{width:20px;text-align:center;font-size:14px;flex-shrink:0}
|
| 90 |
-
.fi-dir{color:var(--blue)}.fi-cfg{color:var(--yellow)}.fi-jar{color:var(--accent)}.fi-log{color:var(--t3)}.fi-other{color:var(--t2)}
|
| 91 |
-
.fm-name{flex:1;font-size:13px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
|
| 92 |
-
.fm-size{font-size:11px;color:var(--t3);flex-shrink:0}
|
| 93 |
-
.ctx-menu{position:fixed;background:#1a1a1a;border:1px solid var(--b1);border-radius:8px;padding:6px;z-index:1000;min-width:160px;box-shadow:0 8px 32px rgba(0,0,0,.6);animation:ctxIn .12s ease}
|
| 94 |
-
@keyframes ctxIn{from{opacity:0;transform:scale(.95)}to{opacity:1;transform:none}}
|
| 95 |
-
.ctx-item{padding:7px 12px;border-radius:5px;cursor:pointer;font-size:13px;color:var(--t2);display:flex;align-items:center;gap:8px;transition:var(--trans)}
|
| 96 |
-
.ctx-item:hover{background:var(--s3);color:var(--t1)}
|
| 97 |
-
.ctx-item.danger{color:var(--red)}.ctx-item.danger:hover{background:rgba(248,113,113,.1)}
|
| 98 |
-
.ctx-sep{height:1px;background:var(--b1);margin:4px 0}
|
| 99 |
-
|
| 100 |
-
/* CONFIG */
|
| 101 |
-
.cfg-wrap{flex:1;overflow-y:auto;padding:16px;scrollbar-width:thin;scrollbar-color:var(--b2) transparent}
|
| 102 |
-
.cfg-section{background:var(--s1);border:1px solid var(--b1);border-radius:10px;margin-bottom:16px;overflow:hidden}
|
| 103 |
-
.cfg-section-head{padding:12px 16px;border-bottom:1px solid var(--b1);font-size:12px;font-weight:600;color:var(--t3);text-transform:uppercase;letter-spacing:.06em}
|
| 104 |
-
.cfg-row{display:flex;align-items:center;padding:10px 16px;border-bottom:1px solid rgba(255,255,255,.03);gap:12px}
|
| 105 |
-
.cfg-row:last-child{border-bottom:none}
|
| 106 |
-
.cfg-key{flex:1;font-family:var(--mono);font-size:12.5px;color:var(--t2)}
|
| 107 |
-
.cfg-val{flex:1;background:var(--s2);border:1px solid var(--b1);color:var(--t1);font-family:var(--mono);font-size:12px;padding:5px 10px;border-radius:6px;outline:none;transition:var(--trans)}
|
| 108 |
-
.cfg-val:focus{border-color:var(--accent)}
|
| 109 |
-
.cfg-save{margin:0 16px 16px;background:var(--accent);color:#000;border:none;padding:9px 20px;border-radius:var(--r);font-weight:600;font-size:13px;cursor:pointer;transition:var(--trans)}
|
| 110 |
-
.cfg-save:hover{background:var(--accent2)}
|
| 111 |
-
.coming-soon{display:flex;align-items:center;justify-content:center;height:100%;flex-direction:column;gap:12px;color:var(--t3)}
|
| 112 |
-
.coming-soon i{font-size:36px;opacity:.3}
|
| 113 |
-
|
| 114 |
-
/* MODALS */
|
| 115 |
-
.overlay{position:fixed;inset:0;background:rgba(0,0,0,.7);z-index:500;display:flex;align-items:center;justify-content:center;animation:fadeIn .15s ease;backdrop-filter:blur(4px)}
|
| 116 |
-
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
|
| 117 |
-
.modal{background:#161616;border:1px solid var(--b1);border-radius:12px;padding:24px;width:90%;max-width:480px;animation:modalIn .2s ease;box-shadow:0 24px 64px rgba(0,0,0,.6)}
|
| 118 |
-
.modal.wide{max-width:760px}
|
| 119 |
-
@keyframes modalIn{from{opacity:0;transform:translateY(12px) scale(.98)}to{opacity:1;transform:none}}
|
| 120 |
-
.modal h3{font-size:15px;font-weight:600;margin-bottom:16px;color:var(--t1)}
|
| 121 |
-
.modal input,.modal textarea{width:100%;background:var(--s2);border:1px solid var(--b1);color:var(--t1);font-family:var(--mono);font-size:13px;padding:9px 12px;border-radius:var(--r);outline:none;transition:var(--trans);margin-bottom:12px}
|
| 122 |
-
.modal input:focus,.modal textarea:focus{border-color:var(--accent)}
|
| 123 |
-
.modal textarea{min-height:320px;resize:vertical;line-height:1.6}
|
| 124 |
-
.modal-actions{display:flex;justify-content:flex-end;gap:8px;margin-top:4px}
|
| 125 |
-
.btn-ghost{background:transparent;border:1px solid var(--b1);color:var(--t2);padding:7px 16px;border-radius:6px;cursor:pointer;font-family:var(--font);font-size:13px;transition:var(--trans)}
|
| 126 |
-
.btn-ghost:hover{border-color:var(--b2);color:var(--t1)}
|
| 127 |
-
.btn-primary{background:var(--accent);color:#000;border:none;padding:7px 16px;border-radius:6px;font-family:var(--font);font-weight:600;font-size:13px;cursor:pointer;transition:var(--trans)}
|
| 128 |
-
.btn-primary:hover{background:var(--accent2)}
|
| 129 |
-
.btn-danger{background:transparent;border:1px solid var(--red);color:var(--red);padding:7px 16px;border-radius:6px;cursor:pointer;font-family:var(--font);font-size:13px;transition:var(--trans)}
|
| 130 |
-
.btn-danger:hover{background:rgba(248,113,113,.1)}
|
| 131 |
-
.upload-zone{border:2px dashed var(--b2);border-radius:8px;padding:32px;text-align:center;color:var(--t3);cursor:pointer;transition:var(--trans);margin-bottom:12px}
|
| 132 |
-
.upload-zone:hover,.upload-zone.drag{border-color:var(--accent);color:var(--accent);background:rgba(74,222,128,.04)}
|
| 133 |
-
.upload-zone i{font-size:24px;margin-bottom:8px;display:block}
|
| 134 |
-
.upload-zone p{font-size:13px}
|
| 135 |
-
.status-dot{width:7px;height:7px;border-radius:50%;background:var(--accent);box-shadow:0 0 6px var(--accent);display:inline-block;margin-right:6px;animation:pulse 2s infinite}
|
| 136 |
-
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.5}}
|
| 137 |
-
@media(max-width:600px){.sidebar{width:48px}.tb-btn span{display:none}.tb-btn{padding:0 10px}.fm-size{display:none}}
|
| 138 |
-
</style>
|
| 139 |
</head>
|
| 140 |
-
<body>
|
| 141 |
-
|
| 142 |
-
|
| 143 |
-
|
| 144 |
-
|
| 145 |
-
|
| 146 |
-
</
|
| 147 |
-
|
| 148 |
-
<
|
| 149 |
-
|
| 150 |
-
|
| 151 |
-
|
| 152 |
-
|
| 153 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 154 |
</div>
|
| 155 |
-
<div class="console-input-bar">
|
| 156 |
-
<span class="prompt">$</span>
|
| 157 |
-
<input id="cmd-input" type="text" placeholder="Enter command..." autocomplete="off" spellcheck="false" onkeydown="cmdKey(event)">
|
| 158 |
-
<button class="send-btn" onclick="sendCmd()"><i class="fa-solid fa-paper-plane"></i></button>
|
| 159 |
-
</div>
|
| 160 |
-
</div>
|
| 161 |
-
|
| 162 |
-
<!-- FILES -->
|
| 163 |
-
<div class="panel" id="tab-files">
|
| 164 |
-
<div class="fm-toolbar">
|
| 165 |
-
<div class="fm-breadcrumb" id="breadcrumb"></div>
|
| 166 |
-
<button class="tb-btn" onclick="showMkdir()"><i class="fa-solid fa-folder-plus"></i><span>New Folder</span></button>
|
| 167 |
-
<button class="tb-btn" onclick="showUpload()"><i class="fa-solid fa-upload"></i><span>Upload</span></button>
|
| 168 |
-
</div>
|
| 169 |
-
<div class="fm-list" id="fm-list"></div>
|
| 170 |
-
</div>
|
| 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 |
-
function
|
| 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 |
-
// MODAL
|
| 444 |
-
const M={el:null,body:null,actions:null};
|
| 445 |
-
function openModal(title,cls=''){
|
| 446 |
-
const ov=document.getElementById('overlay');
|
| 447 |
-
const mo=document.getElementById('modal');
|
| 448 |
-
mo.className='modal'+(cls?' '+cls:'');
|
| 449 |
-
document.getElementById('modal-title').textContent=title;
|
| 450 |
-
M.body=document.getElementById('modal-body');M.body.innerHTML='';
|
| 451 |
-
M.actions=document.getElementById('modal-actions');M.actions.innerHTML='';
|
| 452 |
-
ov.style.display='flex';
|
| 453 |
-
}
|
| 454 |
-
function closeModal(e){
|
| 455 |
-
if(e&&e.target!==document.getElementById('overlay'))return;
|
| 456 |
-
document.getElementById('overlay').style.display='none';
|
| 457 |
-
}
|
| 458 |
-
document.addEventListener('keydown',e=>{if(e.key==='Escape')document.getElementById('overlay').style.display='none';});
|
| 459 |
-
|
| 460 |
-
// TOAST
|
| 461 |
-
function toast(msg){
|
| 462 |
-
const t=document.createElement('div');
|
| 463 |
-
t.style.cssText='position:fixed;bottom:80px;left:50%;transform:translateX(-50%);background:#1a1a1a;border:1px solid var(--b1);color:var(--t1);padding:8px 18px;border-radius:8px;font-size:13px;z-index:9999;animation:fadeIn .2s ease;white-space:nowrap;box-shadow:0 8px 24px rgba(0,0,0,.5)';
|
| 464 |
-
t.textContent=msg;document.body.appendChild(t);
|
| 465 |
-
setTimeout(()=>t.remove(),2200);
|
| 466 |
-
}
|
| 467 |
-
function escHtml(s){return s.replace(/&/g,'&').replace(/</g,'<').replace(/>/g,'>').replace(/"/g,'"');}
|
| 468 |
-
|
| 469 |
-
// Init
|
| 470 |
-
loadDir('');
|
| 471 |
-
</script>
|
| 472 |
</body>
|
| 473 |
</html>
|
| 474 |
"""
|
|
@@ -480,7 +447,7 @@ def get_safe_path(subpath: str):
|
|
| 480 |
subpath = (subpath or "").strip("/")
|
| 481 |
target = os.path.abspath(os.path.join(BASE_DIR, subpath))
|
| 482 |
if not target.startswith(BASE_DIR):
|
| 483 |
-
raise HTTPException(status_code=403, detail="Access denied outside
|
| 484 |
return target
|
| 485 |
|
| 486 |
async def broadcast(message: str):
|
|
@@ -598,23 +565,6 @@ async def fs_upload(path: str = Form(""), file: UploadFile = File(...)):
|
|
| 598 |
shutil.copyfileobj(file.file, buffer)
|
| 599 |
return {"status": "ok"}
|
| 600 |
|
| 601 |
-
@app.post("/api/fs/rename")
|
| 602 |
-
def fs_rename(path: str = Form(...), new_name: str = Form(...)):
|
| 603 |
-
target = get_safe_path(path)
|
| 604 |
-
if not os.path.exists(target):
|
| 605 |
-
raise HTTPException(404, "File not found")
|
| 606 |
-
if "/" in new_name or "\\" in new_name:
|
| 607 |
-
raise HTTPException(400, "Invalid new name")
|
| 608 |
-
new_target = get_safe_path(os.path.join(os.path.dirname(path), new_name))
|
| 609 |
-
os.rename(target, new_target)
|
| 610 |
-
return {"status": "ok"}
|
| 611 |
-
|
| 612 |
-
@app.post("/api/fs/mkdir")
|
| 613 |
-
def fs_mkdir(path: str = Form(...)):
|
| 614 |
-
target = get_safe_path(path)
|
| 615 |
-
os.makedirs(target, exist_ok=True)
|
| 616 |
-
return {"status": "ok"}
|
| 617 |
-
|
| 618 |
@app.post("/api/fs/delete")
|
| 619 |
def fs_delete(path: str = Form(...)):
|
| 620 |
target = get_safe_path(path)
|
|
|
|
| 13 |
mc_process = None
|
| 14 |
output_history = collections.deque(maxlen=300)
|
| 15 |
connected_clients = set()
|
| 16 |
+
BASE_DIR = os.path.abspath("/app")
|
|
|
|
| 17 |
|
| 18 |
# -----------------
|
| 19 |
# HTML FRONTEND (Ultra-Modern UI)
|
| 20 |
# -----------------
|
| 21 |
+
HTML_CONTENT = """
|
| 22 |
+
<!DOCTYPE html>
|
| 23 |
+
<html lang="en" class="dark">
|
| 24 |
<head>
|
| 25 |
+
<meta charset="UTF-8">
|
| 26 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
| 27 |
+
<title>Server Console</title>
|
| 28 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 29 |
+
<script src="https://unpkg.com/lucide@latest"></script>
|
| 30 |
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/xterm/css/xterm.css" />
|
| 31 |
+
<script src="https://cdn.jsdelivr.net/npm/xterm/lib/xterm.js"></script>
|
| 32 |
+
<script src="https://cdn.jsdelivr.net/npm/xterm-addon-fit/lib/xterm-addon-fit.js"></script>
|
| 33 |
+
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
|
| 34 |
+
<style>
|
| 35 |
+
:root { --bg: #09090b; --surface: #18181b; --surface-hover: #27272a; --border: #27272a; --text: #fafafa; --text-muted: #a1a1aa; --accent: #3b82f6; }
|
| 36 |
+
body { background-color: var(--bg); color: var(--text); font-family: 'Inter', sans-serif; overflow: hidden; -webkit-font-smoothing: antialiased; }
|
| 37 |
+
.font-mono { font-family: 'JetBrains Mono', monospace; }
|
| 38 |
+
|
| 39 |
+
/* Glass Navbar */
|
| 40 |
+
.glass-nav { background: rgba(9, 9, 11, 0.8); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); z-index: 40; }
|
| 41 |
+
|
| 42 |
+
/* Animations */
|
| 43 |
+
.fade-in { animation: fadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
|
| 44 |
+
@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }
|
| 45 |
+
|
| 46 |
+
/* Terminal Styling with Top Fade */
|
| 47 |
+
.term-container { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; position: relative; }
|
| 48 |
+
.term-wrapper { padding: 12px; height: calc(100vh - 180px); width: 100%; mask-image: linear-gradient(to bottom, transparent 0%, black 5%, black 100%); -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 5%, black 100%); }
|
| 49 |
+
.xterm-viewport::-webkit-scrollbar { width: 8px; }
|
| 50 |
+
.xterm-viewport::-webkit-scrollbar-thumb { background: #3f3f46; border-radius: 4px; }
|
| 51 |
+
|
| 52 |
+
/* File Manager Layout */
|
| 53 |
+
.file-row { transition: all 0.15s ease; border-bottom: 1px solid var(--border); }
|
| 54 |
+
.file-row:hover { background: var(--surface-hover); }
|
| 55 |
+
.file-row:last-child { border-bottom: none; }
|
| 56 |
+
|
| 57 |
+
/* Custom Scrollbars */
|
| 58 |
+
::-webkit-scrollbar { width: 6px; height: 6px; }
|
| 59 |
+
::-webkit-scrollbar-track { background: transparent; }
|
| 60 |
+
::-webkit-scrollbar-thumb { background: #3f3f46; border-radius: 3px; }
|
| 61 |
+
::-webkit-scrollbar-thumb:hover { background: #52525b; }
|
| 62 |
+
|
| 63 |
+
/* Loader */
|
| 64 |
+
.loader { animation: spin 1s linear infinite; }
|
| 65 |
+
@keyframes spin { 100% { transform: rotate(360deg); } }
|
| 66 |
+
|
| 67 |
+
/* Utility */
|
| 68 |
+
.hidden-tab { display: none !important; }
|
| 69 |
+
input[type="text"]:focus, textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
|
| 70 |
+
</style>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 71 |
</head>
|
| 72 |
+
<body class="flex flex-col h-screen w-full">
|
| 73 |
+
|
| 74 |
+
<!-- Top Navigation -->
|
| 75 |
+
<nav class="glass-nav w-full px-4 sm:px-6 py-3 flex justify-between items-center fixed top-0 left-0 right-0 h-[60px]">
|
| 76 |
+
<div class="flex items-center gap-3">
|
| 77 |
+
<div class="bg-blue-500/10 p-2 rounded-lg border border-blue-500/20">
|
| 78 |
+
<i data-lucide="server" class="w-5 h-5 text-blue-400"></i>
|
| 79 |
+
</div>
|
| 80 |
+
<span class="font-semibold tracking-tight text-sm sm:text-base text-gray-100">Minecraft Engine</span>
|
| 81 |
+
<span class="px-2 py-0.5 rounded-full bg-green-500/10 text-green-400 border border-green-500/20 text-[10px] font-bold tracking-wide uppercase hidden sm:block">Online</span>
|
| 82 |
+
</div>
|
| 83 |
+
|
| 84 |
+
<div class="flex gap-1 sm:gap-2 bg-zinc-900 p-1 rounded-lg border border-zinc-800">
|
| 85 |
+
<button onclick="switchTab('console')" id="btn-console" class="flex items-center gap-2 px-3 py-1.5 sm:px-4 sm:py-2 bg-zinc-800 text-gray-100 rounded-md text-xs sm:text-sm font-medium transition-all shadow-sm">
|
| 86 |
+
<i data-lucide="terminal" class="w-4 h-4"></i><span class="hidden sm:inline">Console</span>
|
| 87 |
+
</button>
|
| 88 |
+
<button onclick="switchTab('files')" id="btn-files" class="flex items-center gap-2 px-3 py-1.5 sm:px-4 sm:py-2 text-zinc-400 hover:text-gray-200 rounded-md text-xs sm:text-sm font-medium transition-all">
|
| 89 |
+
<i data-lucide="folder-code" class="w-4 h-4"></i><span class="hidden sm:inline">Files</span>
|
| 90 |
+
</button>
|
| 91 |
+
</div>
|
| 92 |
+
</nav>
|
| 93 |
+
|
| 94 |
+
<!-- Main Content Area -->
|
| 95 |
+
<main class="mt-[60px] flex-grow p-3 sm:p-4 overflow-hidden relative">
|
| 96 |
+
|
| 97 |
+
<!-- Console Tab -->
|
| 98 |
+
<div id="tab-console" class="h-full w-full max-w-7xl mx-auto flex flex-col fade-in">
|
| 99 |
+
<div class="term-container shadow-2xl flex-grow flex flex-col">
|
| 100 |
+
<div class="bg-zinc-900 border-b border-zinc-800 px-4 py-2 flex items-center gap-2 text-xs text-zinc-400 font-mono">
|
| 101 |
+
<div class="flex gap-1.5"><div class="w-2.5 h-2.5 rounded-full bg-red-500/80"></div><div class="w-2.5 h-2.5 rounded-full bg-yellow-500/80"></div><div class="w-2.5 h-2.5 rounded-full bg-green-500/80"></div></div>
|
| 102 |
+
<span class="ml-2">server-stdout</span>
|
| 103 |
+
</div>
|
| 104 |
+
<div id="terminal" class="term-wrapper"></div>
|
| 105 |
+
</div>
|
| 106 |
+
|
| 107 |
+
<div class="mt-3 sm:mt-4 relative">
|
| 108 |
+
<div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none text-zinc-500">
|
| 109 |
+
<i data-lucide="chevron-right" class="w-5 h-5"></i>
|
| 110 |
+
</div>
|
| 111 |
+
<input type="text" id="cmd-input" class="w-full bg-zinc-900 border border-zinc-800 text-gray-200 rounded-lg pl-10 pr-12 py-3 text-sm font-mono transition-all shadow-inner placeholder-zinc-600" placeholder="Execute command...">
|
| 112 |
+
<button onclick="sendCommand()" class="absolute inset-y-1 right-1 px-3 bg-blue-600 hover:bg-blue-500 text-white rounded-md transition-colors flex items-center justify-center">
|
| 113 |
+
<i data-lucide="send" class="w-4 h-4"></i>
|
| 114 |
+
</button>
|
| 115 |
+
</div>
|
| 116 |
+
</div>
|
| 117 |
+
|
| 118 |
+
<!-- File Manager Tab -->
|
| 119 |
+
<div id="tab-files" class="hidden-tab h-full w-full max-w-7xl mx-auto flex flex-col bg-[#18181b] rounded-xl border border-zinc-800 shadow-2xl overflow-hidden">
|
| 120 |
+
<!-- File Header / Breadcrumbs -->
|
| 121 |
+
<div class="bg-zinc-900/50 px-4 py-3 border-b border-zinc-800 flex flex-col sm:flex-row justify-between items-start sm:items-center gap-3">
|
| 122 |
+
<div class="flex items-center text-sm font-mono text-zinc-400 overflow-x-auto whitespace-nowrap hide-scrollbar w-full sm:w-auto" id="breadcrumbs">
|
| 123 |
+
<!-- Injected via JS -->
|
| 124 |
+
</div>
|
| 125 |
+
<div class="flex items-center gap-2 shrink-0">
|
| 126 |
+
<input type="file" id="file-upload" class="hidden" onchange="uploadFile(event)">
|
| 127 |
+
<button onclick="document.getElementById('file-upload').click()" class="flex items-center gap-1.5 bg-zinc-800 hover:bg-zinc-700 border border-zinc-700 px-3 py-1.5 rounded-md text-xs font-medium text-gray-200 transition-colors">
|
| 128 |
+
<i data-lucide="upload-cloud" class="w-4 h-4 text-blue-400"></i> Upload
|
| 129 |
+
</button>
|
| 130 |
+
<button onclick="loadFiles(currentPath)" class="flex items-center justify-center bg-zinc-800 hover:bg-zinc-700 border border-zinc-700 w-8 h-8 rounded-md transition-colors">
|
| 131 |
+
<i data-lucide="refresh-cw" class="w-4 h-4 text-zinc-400"></i>
|
| 132 |
+
</button>
|
| 133 |
+
</div>
|
| 134 |
+
</div>
|
| 135 |
+
|
| 136 |
+
<!-- File List Columns -->
|
| 137 |
+
<div class="hidden sm:grid grid-cols-12 gap-4 px-5 py-2 border-b border-zinc-800 bg-zinc-900/80 text-xs font-semibold text-zinc-500 uppercase tracking-wider">
|
| 138 |
+
<div class="col-span-7">Name</div>
|
| 139 |
+
<div class="col-span-3 text-right">Size</div>
|
| 140 |
+
<div class="col-span-2 text-right">Actions</div>
|
| 141 |
+
</div>
|
| 142 |
+
|
| 143 |
+
<!-- File List -->
|
| 144 |
+
<div class="flex-grow overflow-y-auto" id="file-list">
|
| 145 |
+
<!-- Injected via JS -->
|
| 146 |
+
</div>
|
| 147 |
+
</div>
|
| 148 |
+
</main>
|
| 149 |
+
|
| 150 |
+
<!-- Code Editor Modal -->
|
| 151 |
+
<div id="editor-modal" class="fixed inset-0 bg-black/60 backdrop-blur-sm hidden items-center justify-center p-2 sm:p-6 z-50 opacity-0 transition-opacity duration-300">
|
| 152 |
+
<div class="bg-[#18181b] rounded-xl border border-zinc-800 w-full max-w-5xl h-[90vh] sm:h-[85vh] flex flex-col shadow-2xl transform scale-95 transition-transform duration-300" id="editor-card">
|
| 153 |
+
<div class="bg-zinc-900 px-4 py-3 flex justify-between items-center border-b border-zinc-800 rounded-t-xl">
|
| 154 |
+
<div class="flex items-center gap-2 text-sm font-mono text-gray-300">
|
| 155 |
+
<i data-lucide="file-code" class="w-4 h-4 text-blue-400"></i>
|
| 156 |
+
<span id="editor-title">filename.txt</span>
|
| 157 |
+
</div>
|
| 158 |
+
<div class="flex items-center gap-2">
|
| 159 |
+
<button onclick="closeEditor()" class="px-3 py-1.5 hover:bg-zinc-800 rounded text-xs font-medium text-zinc-400 transition-colors">Cancel</button>
|
| 160 |
+
<button onclick="saveFile()" class="px-4 py-1.5 bg-blue-600 hover:bg-blue-500 text-white rounded text-xs font-semibold transition-colors flex items-center gap-1.5 shadow-lg shadow-blue-500/20">
|
| 161 |
+
<i data-lucide="save" class="w-3.5 h-3.5"></i> Save
|
| 162 |
+
</button>
|
| 163 |
+
</div>
|
| 164 |
+
</div>
|
| 165 |
+
<textarea id="editor-content" class="flex-grow bg-[#0e0e11] text-zinc-300 p-4 font-mono text-xs sm:text-sm resize-none focus:outline-none w-full leading-relaxed" spellcheck="false"></textarea>
|
| 166 |
+
</div>
|
| 167 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 168 |
|
| 169 |
+
<!-- Toast Notifications -->
|
| 170 |
+
<div id="toast-container" class="fixed bottom-4 right-4 z-[100] flex flex-col gap-2"></div>
|
| 171 |
+
|
| 172 |
+
<script>
|
| 173 |
+
// Initialize Lucide Icons
|
| 174 |
+
lucide.createIcons();
|
| 175 |
+
|
| 176 |
+
// --- Toast System ---
|
| 177 |
+
function showToast(message, type = 'info') {
|
| 178 |
+
const container = document.getElementById('toast-container');
|
| 179 |
+
const toast = document.createElement('div');
|
| 180 |
+
|
| 181 |
+
let icon = '<i data-lucide="info" class="w-4 h-4 text-blue-400"></i>';
|
| 182 |
+
let border = 'border-blue-500/20';
|
| 183 |
+
if(type === 'success') { icon = '<i data-lucide="check-circle" class="w-4 h-4 text-green-400"></i>'; border = 'border-green-500/20'; }
|
| 184 |
+
if(type === 'error') { icon = '<i data-lucide="alert-circle" class="w-4 h-4 text-red-400"></i>'; border = 'border-red-500/20'; }
|
| 185 |
+
|
| 186 |
+
toast.className = `flex items-center gap-3 bg-zinc-900 border ${border} text-sm text-gray-200 px-4 py-3 rounded-lg shadow-xl translate-y-8 opacity-0 transition-all duration-300`;
|
| 187 |
+
toast.innerHTML = `${icon} <span>${message}</span>`;
|
| 188 |
+
|
| 189 |
+
container.appendChild(toast);
|
| 190 |
+
lucide.createIcons();
|
| 191 |
+
|
| 192 |
+
// Animate In
|
| 193 |
+
requestAnimationFrame(() => {
|
| 194 |
+
toast.classList.remove('translate-y-8', 'opacity-0');
|
| 195 |
+
});
|
| 196 |
+
|
| 197 |
+
// Animate Out
|
| 198 |
+
setTimeout(() => {
|
| 199 |
+
toast.classList.add('translate-y-8', 'opacity-0');
|
| 200 |
+
setTimeout(() => toast.remove(), 300);
|
| 201 |
+
}, 3000);
|
| 202 |
+
}
|
| 203 |
+
|
| 204 |
+
// --- UI Navigation ---
|
| 205 |
+
function switchTab(tab) {
|
| 206 |
+
document.getElementById('tab-console').classList.add('hidden-tab');
|
| 207 |
+
document.getElementById('tab-files').classList.add('hidden-tab');
|
| 208 |
+
|
| 209 |
+
document.getElementById('btn-console').className = "flex items-center gap-2 px-3 py-1.5 sm:px-4 sm:py-2 text-zinc-400 hover:text-gray-200 rounded-md text-xs sm:text-sm font-medium transition-all";
|
| 210 |
+
document.getElementById('btn-files').className = "flex items-center gap-2 px-3 py-1.5 sm:px-4 sm:py-2 text-zinc-400 hover:text-gray-200 rounded-md text-xs sm:text-sm font-medium transition-all";
|
| 211 |
+
|
| 212 |
+
document.getElementById('tab-' + tab).classList.remove('hidden-tab');
|
| 213 |
+
document.getElementById('tab-' + tab).classList.add('fade-in');
|
| 214 |
+
|
| 215 |
+
const activeBtn = document.getElementById('btn-' + tab);
|
| 216 |
+
activeBtn.className = "flex items-center gap-2 px-3 py-1.5 sm:px-4 sm:py-2 bg-zinc-800 text-gray-100 rounded-md text-xs sm:text-sm font-medium transition-all shadow-sm";
|
| 217 |
+
|
| 218 |
+
if(tab === 'console' && fitAddon) { setTimeout(() => fitAddon.fit(), 50); }
|
| 219 |
+
if(tab === 'files' && !currentPathLoaded) { loadFiles(''); currentPathLoaded = true; }
|
| 220 |
+
}
|
| 221 |
+
|
| 222 |
+
// --- Terminal Logic ---
|
| 223 |
+
const term = new Terminal({
|
| 224 |
+
theme: { background: 'transparent', foreground: '#e4e4e7', cursor: '#3b82f6', selectionBackground: 'rgba(59, 130, 246, 0.3)' },
|
| 225 |
+
convertEol: true, cursorBlink: true, fontFamily: "'JetBrains Mono', monospace", fontSize: 13, fontWeight: 400
|
| 226 |
+
});
|
| 227 |
+
const fitAddon = new FitAddon.FitAddon();
|
| 228 |
+
term.loadAddon(fitAddon);
|
| 229 |
+
term.open(document.getElementById('terminal'));
|
| 230 |
+
|
| 231 |
+
// Wait slightly for DOM to render to fit exactly
|
| 232 |
+
setTimeout(() => fitAddon.fit(), 100);
|
| 233 |
+
window.addEventListener('resize', () => { if(!document.getElementById('tab-console').classList.contains('hidden-tab')) fitAddon.fit(); });
|
| 234 |
+
|
| 235 |
+
const wsUrl = (location.protocol === 'https:' ? 'wss://' : 'ws://') + location.host + '/ws';
|
| 236 |
+
let ws;
|
| 237 |
+
|
| 238 |
+
function connectWS() {
|
| 239 |
+
ws = new WebSocket(wsUrl);
|
| 240 |
+
ws.onopen = () => term.write('\\x1b[32m\\x1b[1m[Panel]\\x1b[0m Connected to server stream.\\r\\n');
|
| 241 |
+
ws.onmessage = e => term.write(e.data + '\\n');
|
| 242 |
+
ws.onclose = () => { term.write('\\r\\n\\x1b[31m\\x1b[1m[Panel]\\x1b[0m Connection lost. Reconnecting in 3s...\\r\\n'); setTimeout(connectWS, 3000); };
|
| 243 |
+
}
|
| 244 |
+
connectWS();
|
| 245 |
+
|
| 246 |
+
const cmdInput = document.getElementById('cmd-input');
|
| 247 |
+
cmdInput.addEventListener('keypress', e => { if (e.key === 'Enter') sendCommand(); });
|
| 248 |
+
|
| 249 |
+
function sendCommand() {
|
| 250 |
+
const val = cmdInput.value.trim();
|
| 251 |
+
if(val && ws && ws.readyState === WebSocket.OPEN) {
|
| 252 |
+
term.write(`\\x1b[90m> ${val}\\x1b[0m\\r\\n`);
|
| 253 |
+
ws.send(val);
|
| 254 |
+
cmdInput.value = '';
|
| 255 |
+
}
|
| 256 |
+
}
|
| 257 |
+
|
| 258 |
+
// --- File Manager Logic ---
|
| 259 |
+
let currentPath = '';
|
| 260 |
+
let currentPathLoaded = false;
|
| 261 |
+
let editingFilePath = '';
|
| 262 |
+
|
| 263 |
+
function renderBreadcrumbs(path) {
|
| 264 |
+
const parts = path.split('/').filter(p => p);
|
| 265 |
+
let html = `<button onclick="loadFiles('')" class="hover:text-gray-200 transition-colors"><i data-lucide="home" class="w-4 h-4"></i></button>`;
|
| 266 |
+
let buildPath = '';
|
| 267 |
+
|
| 268 |
+
if (parts.length > 0) {
|
| 269 |
+
parts.forEach((part, index) => {
|
| 270 |
+
buildPath += (buildPath ? '/' : '') + part;
|
| 271 |
+
html += ` <i data-lucide="chevron-right" class="w-3.5 h-3.5 mx-1 opacity-50"></i> `;
|
| 272 |
+
if(index === parts.length - 1) {
|
| 273 |
+
html += `<span class="text-blue-400 font-medium">${part}</span>`;
|
| 274 |
+
} else {
|
| 275 |
+
html += `<button onclick="loadFiles('${buildPath}')" class="hover:text-gray-200 transition-colors">${part}</button>`;
|
| 276 |
+
}
|
| 277 |
+
});
|
| 278 |
+
}
|
| 279 |
+
document.getElementById('breadcrumbs').innerHTML = html;
|
| 280 |
+
lucide.createIcons();
|
| 281 |
+
}
|
| 282 |
+
|
| 283 |
+
async function loadFiles(path) {
|
| 284 |
+
currentPath = path;
|
| 285 |
+
renderBreadcrumbs(path);
|
| 286 |
+
const list = document.getElementById('file-list');
|
| 287 |
+
list.innerHTML = `<div class="flex justify-center py-8"><i data-lucide="loader-2" class="w-6 h-6 text-zinc-500 loader"></i></div>`;
|
| 288 |
+
lucide.createIcons();
|
| 289 |
+
|
| 290 |
+
try {
|
| 291 |
+
const res = await fetch(`/api/fs/list?path=${encodeURIComponent(path)}`);
|
| 292 |
+
if(!res.ok) throw new Error('Failed to load');
|
| 293 |
+
const files = await res.json();
|
| 294 |
+
list.innerHTML = '';
|
| 295 |
+
|
| 296 |
+
if (path !== '') {
|
| 297 |
+
const parent = path.split('/').slice(0, -1).join('/');
|
| 298 |
+
list.innerHTML += `
|
| 299 |
+
<div class="file-row flex items-center px-5 py-3 cursor-pointer" onclick="loadFiles('${parent}')">
|
| 300 |
+
<div class="flex items-center gap-3 w-full">
|
| 301 |
+
<i data-lucide="corner-left-up" class="w-4 h-4 text-zinc-500"></i>
|
| 302 |
+
<span class="text-sm font-mono text-zinc-400">..</span>
|
| 303 |
+
</div>
|
| 304 |
+
</div>`;
|
| 305 |
+
}
|
| 306 |
+
|
| 307 |
+
if(files.length === 0 && path === '') {
|
| 308 |
+
list.innerHTML += `<div class="text-center py-8 text-zinc-500 text-sm">Directory is empty</div>`;
|
| 309 |
+
}
|
| 310 |
+
|
| 311 |
+
files.forEach(f => {
|
| 312 |
+
const icon = f.is_dir ? '<i data-lucide="folder" class="w-4 h-4 text-blue-400 fill-blue-400/10"></i>' : '<i data-lucide="file" class="w-4 h-4 text-zinc-400"></i>';
|
| 313 |
+
const sizeStr = f.is_dir ? '--' : (f.size > 1024*1024 ? (f.size/(1024*1024)).toFixed(1) + ' MB' : (f.size / 1024).toFixed(1) + ' KB');
|
| 314 |
+
const fullPath = path ? `${path}/${f.name}` : f.name;
|
| 315 |
+
const actionClick = f.is_dir ? `onclick="loadFiles('${fullPath}')"` : '';
|
| 316 |
+
const pointer = f.is_dir ? 'cursor-pointer' : '';
|
| 317 |
+
|
| 318 |
+
list.innerHTML += `
|
| 319 |
+
<div class="file-row flex flex-col sm:grid sm:grid-cols-12 items-start sm:items-center px-5 py-3 gap-2 sm:gap-4 group">
|
| 320 |
+
<div class="col-span-7 flex items-center gap-3 w-full ${pointer}" ${actionClick}>
|
| 321 |
+
${icon}
|
| 322 |
+
<span class="text-sm font-mono text-gray-200 truncate group-hover:text-blue-400 transition-colors">${f.name}</span>
|
| 323 |
+
</div>
|
| 324 |
+
<div class="col-span-3 text-right text-xs text-zinc-500 font-mono hidden sm:block">${sizeStr}</div>
|
| 325 |
+
<div class="col-span-2 flex justify-end gap-1 sm:gap-2 w-full sm:w-auto mt-2 sm:mt-0 sm:opacity-0 group-hover:opacity-100 transition-opacity">
|
| 326 |
+
${!f.is_dir ? `<button onclick="editFile('${fullPath}')" class="p-1.5 text-zinc-400 hover:text-blue-400 hover:bg-blue-500/10 rounded transition-colors" title="Edit"><i data-lucide="edit-3" class="w-4 h-4"></i></button>` : ''}
|
| 327 |
+
${!f.is_dir ? `<a href="/api/fs/download?path=${encodeURIComponent(fullPath)}" class="p-1.5 text-zinc-400 hover:text-green-400 hover:bg-green-500/10 rounded transition-colors inline-block" title="Download"><i data-lucide="download" class="w-4 h-4"></i></a>` : ''}
|
| 328 |
+
<button onclick="deleteFile('${fullPath}')" class="p-1.5 text-zinc-400 hover:text-red-400 hover:bg-red-500/10 rounded transition-colors" title="Delete"><i data-lucide="trash-2" class="w-4 h-4"></i></button>
|
| 329 |
+
</div>
|
| 330 |
+
</div>`;
|
| 331 |
+
});
|
| 332 |
+
lucide.createIcons();
|
| 333 |
+
} catch (err) {
|
| 334 |
+
showToast("Failed to load directory", "error");
|
| 335 |
+
list.innerHTML = `<div class="text-center py-8 text-red-400 text-sm">Error loading files</div>`;
|
| 336 |
+
}
|
| 337 |
+
}
|
| 338 |
+
|
| 339 |
+
async function editFile(path) {
|
| 340 |
+
try {
|
| 341 |
+
const res = await fetch(`/api/fs/read?path=${encodeURIComponent(path)}`);
|
| 342 |
+
if(res.ok) {
|
| 343 |
+
const text = await res.text();
|
| 344 |
+
editingFilePath = path;
|
| 345 |
+
document.getElementById('editor-content').value = text;
|
| 346 |
+
document.getElementById('editor-title').innerText = path.split('/').pop();
|
| 347 |
+
|
| 348 |
+
const modal = document.getElementById('editor-modal');
|
| 349 |
+
const card = document.getElementById('editor-card');
|
| 350 |
+
modal.classList.remove('hidden');
|
| 351 |
+
modal.classList.add('flex');
|
| 352 |
+
|
| 353 |
+
// Animate In
|
| 354 |
+
requestAnimationFrame(() => {
|
| 355 |
+
modal.classList.remove('opacity-0');
|
| 356 |
+
card.classList.remove('scale-95');
|
| 357 |
+
});
|
| 358 |
+
} else {
|
| 359 |
+
showToast('Cannot open file (might be binary)', 'error');
|
| 360 |
+
}
|
| 361 |
+
} catch {
|
| 362 |
+
showToast('Failed to open file', 'error');
|
| 363 |
+
}
|
| 364 |
+
}
|
| 365 |
+
|
| 366 |
+
function closeEditor() {
|
| 367 |
+
const modal = document.getElementById('editor-modal');
|
| 368 |
+
const card = document.getElementById('editor-card');
|
| 369 |
+
modal.classList.add('opacity-0');
|
| 370 |
+
card.classList.add('scale-95');
|
| 371 |
+
setTimeout(() => {
|
| 372 |
+
modal.classList.add('hidden');
|
| 373 |
+
modal.classList.remove('flex');
|
| 374 |
+
}, 300);
|
| 375 |
+
}
|
| 376 |
+
|
| 377 |
+
async function saveFile() {
|
| 378 |
+
const btn = document.querySelector('#editor-modal button.bg-blue-600');
|
| 379 |
+
const originalHTML = btn.innerHTML;
|
| 380 |
+
btn.innerHTML = `<i data-lucide="loader-2" class="w-3.5 h-3.5 loader"></i> Saving...`;
|
| 381 |
+
lucide.createIcons();
|
| 382 |
+
|
| 383 |
+
const content = document.getElementById('editor-content').value;
|
| 384 |
+
const formData = new FormData();
|
| 385 |
+
formData.append('path', editingFilePath);
|
| 386 |
+
formData.append('content', content);
|
| 387 |
+
|
| 388 |
+
try {
|
| 389 |
+
const res = await fetch('/api/fs/write', { method: 'POST', body: formData });
|
| 390 |
+
if(res.ok) {
|
| 391 |
+
showToast('File saved successfully', 'success');
|
| 392 |
+
closeEditor();
|
| 393 |
+
} else throw new Error();
|
| 394 |
+
} catch {
|
| 395 |
+
showToast('Failed to save file', 'error');
|
| 396 |
+
} finally {
|
| 397 |
+
btn.innerHTML = originalHTML;
|
| 398 |
+
lucide.createIcons();
|
| 399 |
+
}
|
| 400 |
+
}
|
| 401 |
+
|
| 402 |
+
async function deleteFile(path) {
|
| 403 |
+
if(confirm('Are you sure you want to delete ' + path.split('/').pop() + '?')) {
|
| 404 |
+
const formData = new FormData(); formData.append('path', path);
|
| 405 |
+
try {
|
| 406 |
+
const res = await fetch('/api/fs/delete', { method: 'POST', body: formData });
|
| 407 |
+
if(res.ok) {
|
| 408 |
+
showToast('Deleted successfully', 'success');
|
| 409 |
+
loadFiles(currentPath);
|
| 410 |
+
} else throw new Error();
|
| 411 |
+
} catch {
|
| 412 |
+
showToast('Failed to delete', 'error');
|
| 413 |
+
}
|
| 414 |
+
}
|
| 415 |
+
}
|
| 416 |
+
|
| 417 |
+
async function uploadFile(e) {
|
| 418 |
+
const fileInput = e.target;
|
| 419 |
+
if(!fileInput.files.length) return;
|
| 420 |
+
|
| 421 |
+
showToast('Uploading ' + fileInput.files[0].name + '...', 'info');
|
| 422 |
+
|
| 423 |
+
const formData = new FormData();
|
| 424 |
+
formData.append('path', currentPath);
|
| 425 |
+
formData.append('file', fileInput.files[0]);
|
| 426 |
+
|
| 427 |
+
try {
|
| 428 |
+
const res = await fetch('/api/fs/upload', { method: 'POST', body: formData });
|
| 429 |
+
if(res.ok) {
|
| 430 |
+
showToast('Upload complete', 'success');
|
| 431 |
+
loadFiles(currentPath);
|
| 432 |
+
} else throw new Error();
|
| 433 |
+
} catch {
|
| 434 |
+
showToast('Upload failed', 'error');
|
| 435 |
+
}
|
| 436 |
+
fileInput.value = '';
|
| 437 |
+
}
|
| 438 |
+
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 439 |
</body>
|
| 440 |
</html>
|
| 441 |
"""
|
|
|
|
| 447 |
subpath = (subpath or "").strip("/")
|
| 448 |
target = os.path.abspath(os.path.join(BASE_DIR, subpath))
|
| 449 |
if not target.startswith(BASE_DIR):
|
| 450 |
+
raise HTTPException(status_code=403, detail="Access denied outside /app")
|
| 451 |
return target
|
| 452 |
|
| 453 |
async def broadcast(message: str):
|
|
|
|
| 565 |
shutil.copyfileobj(file.file, buffer)
|
| 566 |
return {"status": "ok"}
|
| 567 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 568 |
@app.post("/api/fs/delete")
|
| 569 |
def fs_delete(path: str = Form(...)):
|
| 570 |
target = get_safe_path(path)
|