Spaces:
Paused
Paused
File size: 12,981 Bytes
abfb9f0 f42eae7 abfb9f0 f42eae7 abfb9f0 | 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 | """
THE Z AI β Computer Mode Server
================================
Ψ³ΩΨ±ΩΨ± Ψ§ΩΨͺΨΩΩ
Ψ¨Ψ§ΩΩΩ
Ψ¨ΩΩΨͺΨ± ΨΉΩ Ψ¨ΨΉΨ― ΩΩΨ°ΩΨ§Ψ‘ Ψ§ΩΨ§Ψ΅Ψ·ΩΨ§ΨΉΩ
ΩΩΩΨ±:
- WebSocket ΩΩΨͺΨΩΩ
Ψ§ΩΩΨΨΈΩ (Ψ§ΩΩ
Ψ§ΩΨ³Ψ ΩΩΨΨ© Ψ§ΩΩ
ΩΨ§ΨͺΩΨΨ Ψ§ΩΨͺΨ±Ω
ΩΩΨ§Ω)
- ΨͺΨ΅ΩΩΨ± Ψ³ΩΨ±ΩΩ Ψ΄ΩΨͺ ΩΨ₯Ψ±Ψ³Ψ§ΩΩ ΩΩΨΉΩ
ΩΩ
- Ψ¨Ψ« Ψ΄Ψ§Ψ΄Ψ© Ω
Ψ¨Ψ§Ψ΄Ψ± (base64 frames)
- ΨͺΩΩΩΨ° Ψ£ΩΨ§Ω
Ψ± bash ΩΩΨ±Ψ§Ψ‘Ψ© Ψ§ΩΩΨ§ΨͺΨ¬
"""
import asyncio
import base64
import io
import json
import os
import subprocess
import threading
import time
import traceback
from pathlib import Path
import pyautogui
import pyperclip
from PIL import Image, ImageGrab
from fastapi import FastAPI, WebSocket, WebSocketDisconnect
from fastapi.middleware.cors import CORSMiddleware
from fastapi.responses import JSONResponse
import uvicorn
# βββ ENV ββββββββββββββββββββββββββββββββββββββββββββ
DISPLAY = os.environ.get("DISPLAY", ":1")
os.environ["DISPLAY"] = DISPLAY
pyautogui.FAILSAFE = False
pyautogui.PAUSE = 0.05
app = FastAPI(title="Z-Computer-Mode API")
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
# βββ Active Connections ββββββββββββββββββββββββββββββ
active_connections: list[WebSocket] = []
stream_active = False
stream_quality = 60 # JPEG quality
stream_fps = 3 # frames per second (low to save bandwidth)
stream_scale = 0.5 # downscale factor
# βββ Utility βββββββββββββββββββββββββββββββββββββββββ
def capture_screen(scale=stream_scale, quality=stream_quality) -> str:
"""Capture screen β base64 JPEG string"""
try:
img = ImageGrab.grab()
if scale < 1.0:
w = int(img.width * scale)
h = int(img.height * scale)
img = img.resize((w, h), Image.LANCZOS)
buf = io.BytesIO()
img.convert("RGB").save(buf, format="JPEG", quality=quality, optimize=True)
return base64.b64encode(buf.getvalue()).decode()
except Exception as e:
return ""
def run_command(cmd: str, timeout: int = 30) -> dict:
"""Run a shell command and return stdout/stderr"""
try:
result = subprocess.run(
cmd, shell=True, capture_output=True, text=True,
timeout=timeout, env={**os.environ, "DISPLAY": DISPLAY}
)
return {
"stdout": result.stdout[-8000:] if len(result.stdout) > 8000 else result.stdout,
"stderr": result.stderr[-4000:] if len(result.stderr) > 4000 else result.stderr,
"returncode": result.returncode,
}
except subprocess.TimeoutExpired:
return {"stdout": "", "stderr": f"Command timed out after {timeout}s", "returncode": -1}
except Exception as e:
return {"stdout": "", "stderr": str(e), "returncode": -1}
async def broadcast(msg: dict):
"""Send JSON message to all connected WebSocket clients"""
txt = json.dumps(msg)
disconnected = []
for ws in active_connections:
try:
await ws.send_text(txt)
except Exception:
disconnected.append(ws)
for ws in disconnected:
if ws in active_connections:
active_connections.remove(ws)
# βββ Screen Streaming Loop βββββββββββββββββββββββββββ
async def screen_stream_loop():
global stream_active
interval = 1.0 / stream_fps
while stream_active and active_connections:
try:
frame = capture_screen()
if frame:
await broadcast({"type": "frame", "data": frame})
except Exception:
pass
await asyncio.sleep(interval)
stream_active = False
# βββ Action Handler ββββββββββββββββββββββββββββββββββ
async def handle_action(ws: WebSocket, msg: dict):
action = msg.get("action", "")
data = msg.get("data", {})
# ββ SCREENSHOT ββββββββββββββββββββββββββββββββββ
if action == "screenshot":
frame = capture_screen(scale=0.8, quality=75)
await ws.send_text(json.dumps({
"type": "screenshot",
"data": frame,
"ts": int(time.time() * 1000)
}))
# ββ TERMINAL COMMAND βββββββββββββββββββββββββββββ
elif action == "terminal":
cmd = data.get("cmd", "")
if cmd:
result = run_command(cmd, timeout=data.get("timeout", 30))
await ws.send_text(json.dumps({
"type": "terminal_result",
"cmd": cmd,
"stdout": result["stdout"],
"stderr": result["stderr"],
"returncode": result["returncode"],
}))
# Auto-screenshot after terminal command
await asyncio.sleep(0.5)
frame = capture_screen(scale=0.7, quality=70)
if frame:
await ws.send_text(json.dumps({
"type": "screenshot",
"data": frame,
"ts": int(time.time() * 1000),
"auto": True
}))
# ββ MOUSE MOVE βββββββββββββββββββββββββββββββββββ
elif action == "mouse_move":
x, y = int(data.get("x", 0)), int(data.get("y", 0))
pyautogui.moveTo(x, y, duration=0.1)
await ws.send_text(json.dumps({"type": "ack", "action": "mouse_move"}))
# ββ MOUSE CLICK ββββββββββββββββββββββββββββββββββ
elif action == "mouse_click":
x = int(data.get("x", 0))
y = int(data.get("y", 0))
button = data.get("button", "left")
double = data.get("double", False)
pyautogui.moveTo(x, y, duration=0.08)
if double:
pyautogui.doubleClick(x, y, button=button)
else:
pyautogui.click(x, y, button=button)
await ws.send_text(json.dumps({"type": "ack", "action": "mouse_click"}))
# ββ MOUSE DRAG βββββββββββββββββββββββββββββββββββ
elif action == "mouse_drag":
x1, y1 = int(data.get("x1", 0)), int(data.get("y1", 0))
x2, y2 = int(data.get("x2", 0)), int(data.get("y2", 0))
pyautogui.moveTo(x1, y1)
pyautogui.dragTo(x2, y2, duration=0.3, button="left")
await ws.send_text(json.dumps({"type": "ack", "action": "mouse_drag"}))
# ββ KEYBOARD TYPE ββββββββββββββββββββββββββββββββ
elif action == "keyboard_type":
text = data.get("text", "")
pyautogui.typewrite(text, interval=0.03)
await ws.send_text(json.dumps({"type": "ack", "action": "keyboard_type"}))
# ββ KEYBOARD HOTKEY ββββββββββββββββββββββββββββββ
elif action == "keyboard_hotkey":
keys = data.get("keys", [])
if keys:
pyautogui.hotkey(*keys)
await ws.send_text(json.dumps({"type": "ack", "action": "keyboard_hotkey"}))
# ββ KEYBOARD PRESS βββββββββββββββββββββββββββββββ
elif action == "keyboard_press":
key = data.get("key", "")
if key:
pyautogui.press(key)
await ws.send_text(json.dumps({"type": "ack", "action": "keyboard_press"}))
# ββ CLIPBOARD WRITE ββββββββββββββββββββββββββββββ
elif action == "clipboard_write":
text = data.get("text", "")
pyperclip.copy(text)
await ws.send_text(json.dumps({"type": "ack", "action": "clipboard_write"}))
# ββ CLIPBOARD READ βββββββββββββββββββββββββββββββ
elif action == "clipboard_read":
text = pyperclip.paste()
await ws.send_text(json.dumps({"type": "clipboard_content", "text": text}))
# ββ SCROLL βββββββββββββββββββββββββββββββββββββββ
elif action == "scroll":
x = int(data.get("x", 0))
y = int(data.get("y", 0))
clicks = int(data.get("clicks", 3))
pyautogui.scroll(clicks, x=x, y=y)
await ws.send_text(json.dumps({"type": "ack", "action": "scroll"}))
# ββ OPEN APP βββββββββββββββββββββββββββββββββββββ
elif action == "open_app":
app_cmd = data.get("cmd", "")
if app_cmd:
subprocess.Popen(
app_cmd, shell=True,
env={**os.environ, "DISPLAY": DISPLAY},
stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL
)
await ws.send_text(json.dumps({"type": "ack", "action": "open_app"}))
# Auto-screenshot after app opens (wait for it to load)
await asyncio.sleep(3)
frame = capture_screen(scale=0.7, quality=70)
if frame:
await ws.send_text(json.dumps({
"type": "screenshot",
"data": frame,
"ts": int(time.time() * 1000),
"auto": True
}))
# ββ START STREAM βββββββββββββββββββββββββββββββββ
elif action == "start_stream":
global stream_active, stream_fps, stream_quality, stream_scale
stream_fps = int(data.get("fps", 3))
stream_quality = int(data.get("quality", 60))
stream_scale = float(data.get("scale", 0.5))
if not stream_active:
stream_active = True
asyncio.create_task(screen_stream_loop())
await ws.send_text(json.dumps({"type": "ack", "action": "start_stream"}))
# ββ STOP STREAM ββββββββββββββββββββββββββββββββββ
elif action == "stop_stream":
stream_active = False
await ws.send_text(json.dumps({"type": "ack", "action": "stop_stream"}))
# ββ GET SCREEN INFO ββββββββββββββββββββββββββββββ
elif action == "screen_info":
try:
w, h = pyautogui.size()
mx, my = pyautogui.position()
except:
w, h, mx, my = 1920, 1080, 0, 0
await ws.send_text(json.dumps({
"type": "screen_info",
"width": w, "height": h,
"mouse_x": mx, "mouse_y": my,
}))
else:
await ws.send_text(json.dumps({"type": "error", "msg": f"Unknown action: {action}"}))
# βββ WebSocket Endpoint ββββββββββββββββββββββββββββββ
@app.websocket("/ws")
async def websocket_endpoint(ws: WebSocket):
await ws.accept()
active_connections.append(ws)
# Send welcome
try:
w, h = pyautogui.size()
except:
w, h = 1920, 1080
await ws.send_text(json.dumps({
"type": "connected",
"screen_width": w,
"screen_height": h,
"msg": "Z Computer Mode β Connected"
}))
try:
while True:
raw = await ws.receive_text()
msg = json.loads(raw)
await handle_action(ws, msg)
except WebSocketDisconnect:
pass
except Exception as e:
pass
finally:
if ws in active_connections:
active_connections.remove(ws)
# βββ REST Fallback βββββββββββββββββββββββββββββββββββ
@app.get("/screenshot")
async def rest_screenshot():
frame = capture_screen(scale=0.75, quality=70)
return JSONResponse({"image": frame, "ts": int(time.time() * 1000)})
@app.post("/terminal")
async def rest_terminal(body: dict):
cmd = body.get("cmd", "")
result = run_command(cmd, timeout=body.get("timeout", 30))
return JSONResponse(result)
@app.get("/health")
async def health():
return {"status": "ok", "display": DISPLAY}
# βββ Entry βββββββββββββββββββββββββββββββββββββββββββ
if __name__ == "__main__":
port = int(os.environ.get("PORT", 7860))
uvicorn.run("app:app", host="0.0.0.0", port=port, log_level="warning")
|