Spaces:
Sleeping
Sleeping
terminal
Browse files
main.py
CHANGED
@@ -1,7 +1,63 @@
|
|
1 |
-
from fastapi import FastAPI
|
2 |
-
|
3 |
|
4 |
app = FastAPI()
|
5 |
|
6 |
-
#
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from fastapi import FastAPI, WebSocket
|
2 |
+
import subprocess
|
3 |
|
4 |
app = FastAPI()
|
5 |
|
6 |
+
# HTML template for the terminal interface
|
7 |
+
index_html = """
|
8 |
+
<!DOCTYPE html>
|
9 |
+
<html lang="en">
|
10 |
+
<head>
|
11 |
+
<meta charset="UTF-8">
|
12 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
13 |
+
<title>Web Terminal</title>
|
14 |
+
<style>
|
15 |
+
/* Add CSS styles to customize the appearance of the terminal */
|
16 |
+
</style>
|
17 |
+
</head>
|
18 |
+
<body>
|
19 |
+
<div id="terminal"></div>
|
20 |
+
<script>
|
21 |
+
const terminal = document.getElementById("terminal");
|
22 |
+
const ws = new WebSocket("ws://" + window.location.host + "/terminal");
|
23 |
+
|
24 |
+
ws.onmessage = function(event) {
|
25 |
+
terminal.innerText += event.data + "\\n";
|
26 |
+
};
|
27 |
+
|
28 |
+
function sendCommand() {
|
29 |
+
const command = prompt("Enter command:");
|
30 |
+
ws.send(command);
|
31 |
+
}
|
32 |
+
</script>
|
33 |
+
</body>
|
34 |
+
</html>
|
35 |
+
"""
|
36 |
+
|
37 |
+
# Store active websocket connections
|
38 |
+
connections = []
|
39 |
+
|
40 |
+
@app.websocket("/terminal")
|
41 |
+
async def terminal(websocket: WebSocket):
|
42 |
+
await websocket.accept()
|
43 |
+
connections.append(websocket)
|
44 |
+
try:
|
45 |
+
while True:
|
46 |
+
data = await websocket.receive_text()
|
47 |
+
# Execute the command and send the result back to the client
|
48 |
+
result = await execute_command(data)
|
49 |
+
await websocket.send_text(result)
|
50 |
+
finally:
|
51 |
+
connections.remove(websocket)
|
52 |
+
|
53 |
+
async def execute_command(command: str) -> str:
|
54 |
+
try:
|
55 |
+
# Execute the command using subprocess
|
56 |
+
result = subprocess.check_output(command, shell=True, text=True)
|
57 |
+
except subprocess.CalledProcessError as e:
|
58 |
+
result = f"Error: {e.output}"
|
59 |
+
return result
|
60 |
+
|
61 |
+
@app.get("/")
|
62 |
+
async def index():
|
63 |
+
return index_html
|