File size: 11,613 Bytes
a893e94
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f36d727
 
 
a893e94
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c374e99
a893e94
 
 
c374e99
 
a893e94
 
 
 
 
c374e99
a893e94
 
 
 
 
 
 
 
 
3a04c12
c374e99
 
 
 
a893e94
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c374e99
a893e94
 
 
 
c374e99
a893e94
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c374e99
a893e94
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c374e99
a893e94
c374e99
a893e94
c5340db
 
 
a893e94
 
 
 
 
 
 
 
 
 
 
 
 
c374e99
 
 
a893e94
c374e99
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a893e94
 
c374e99
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a893e94
 
44cb235
c374e99
44cb235
 
 
 
c374e99
 
44cb235
 
a893e94
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c374e99
 
a893e94
c374e99
a893e94
 
 
c374e99
a893e94
 
 
 
 
 
 
c374e99
a893e94
 
 
c374e99
 
a893e94
 
 
 
 
 
 
 
 
c374e99
a893e94
 
c374e99
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
import asyncio
import json
import os
import uuid
from datetime import datetime
from json import dumps

from fastapi import Body, FastAPI, HTTPException, Request
from fastapi.middleware.cors import CORSMiddleware
from fastapi.responses import (FileResponse, HTMLResponse, JSONResponse, StreamingResponse)
from fastapi.staticfiles import StaticFiles
from fastapi.templating import Jinja2Templates
from pydantic import BaseModel
from loguru import logger
import uvicorn
import aiohttp

app = FastAPI()

OPENMANUS_ENDPOINT_URL = os.getenv("OPENMANUS_ENDPOINT_URL")
if not OPENMANUS_ENDPOINT_URL:
    raise EnvironmentError("OPENMANUS_ENDPOINT_URL environment variable must be set")

app.mount("/static", StaticFiles(directory="static"), name="static")
templates = Jinja2Templates(directory="templates")

app.add_middleware(
    CORSMiddleware,
    allow_origins=["*"],
    allow_credentials=True,
    allow_methods=["*"],
    allow_headers=["*"],
)

class Task(BaseModel):
    id: str
    prompt: str
    created_at: datetime
    status: str
    steps: list = []

    def model_dump(self, *args, **kwargs):
        data = super().model_dump(*args, **kwargs)
        data["created_at"] = self.created_at.isoformat()
        return data

class TaskManager:
    def __init__(self):
        self.tasks = {}
        self.queues = {}

    def create_task(self, prompt: str) -> Task:
        task_id = str(uuid.uuid4())
        task = Task(
            id=task_id, prompt=prompt, created_at=datetime.now(), status="pending"
        )
        self.tasks[task_id] = task
        self.queues[task_id] = asyncio.Queue()
        return task

    async def update_task_step(self, task_id: str, step: int, result: str, step_type: str = "step"):
        if task_id in self.tasks:
            task = self.tasks[task_id]
            task.steps.append({"step": step, "result": result, "type": step_type})
            await self.queues[task_id].put({"type": step_type, "step": step, "result": result})
            await self.queues[task_id].put({"type": "status", "status": task.status, "steps": task.steps})

    async def complete_task(self, task_id: str):
        if task_id in self.tasks:
            task = self.tasks[task_id]
            task.status = "completed"
            await self.queues[task_id].put({"type": "status", "status": task.status, "steps": task.steps})
            await self.queues[task_id].put({"type": "complete"})

    async def fail_task(self, task_id: str, error: str):
        if task_id in self.tasks:
            self.tasks[task_id].status = f"failed: {error}"
            await self.queues[task_id].put({"type": "error", "message": error})

task_manager = TaskManager()

def make_sse_handler(task_id):
    handler = SSELogHandler(task_id)
    def sink(message):
        asyncio.create_task(handler(str(message)))
    return sink

def get_available_themes():
    themes_dir = "static/themes"
    if not os.path.exists(themes_dir):
        return [{"id": "openmanus", "name": "Manus", "description": "默认主题"}]

    themes = []
    for item in os.listdir(themes_dir):
        theme_path = os.path.join(themes_dir, item)
        if os.path.isdir(theme_path):
            templates_dir = os.path.join(theme_path, "templates")
            static_dir = os.path.join(theme_path, "static")
            config_file = os.path.join(theme_path, "theme.json")

            if os.path.exists(templates_dir) and os.path.exists(static_dir):
                if os.path.exists(os.path.join(templates_dir, "chat.html")):
                    theme_info = {"id": item, "name": item, "description": ""}
                    if os.path.exists(config_file):
                        try:
                            with open(config_file, "r", encoding="utf-8") as f:
                                config = json.load(f)
                                theme_info["name"] = config.get("name", item)
                                theme_info["description"] = config.get("description", "")
                        except Exception as e:
                            print(f"读取主题配置文件出错: {str(e)}")
                    themes.append(theme_info)

    if not any(theme["id"] == "openmanus" for theme in themes):
        themes.append({"id": "openmanus", "name": "Manus", "description": "默认主题"})

    return themes

@app.get("/", response_class=HTMLResponse)
async def index(request: Request):
    themes = get_available_themes()
    sorted_themes = []
    normal_theme = None
    cyberpunk_theme = None
    other_themes = []

    for theme in themes:
        if theme["id"] == "openmanus":
            normal_theme = theme
        elif theme["id"] == "cyberpunk":
            cyberpunk_theme = theme
        else:
            other_themes.append(theme)

    if normal_theme:
        sorted_themes.append(normal_theme)
    if cyberpunk_theme:
        sorted_themes.append(cyberpunk_theme)
    sorted_themes.extend(other_themes)

    return templates.TemplateResponse("index.html", {"request": request, "themes": sorted_themes})

@app.get("/chat", response_class=HTMLResponse)
async def chat(request: Request):
    theme = request.query_params.get("theme", "openmanus")
    theme_chat_path = f"static/themes/{theme}/templates/chat.html"
    if os.path.exists(theme_chat_path):
        with open(theme_chat_path, "r", encoding="utf-8") as f:
            content = f.read()
        theme_config_path = f"static/themes/{theme}/theme.json"
        theme_name = theme
        if os.path.exists(theme_config_path):
            try:
                with open(theme_config_path, "r", encoding="utf-8") as f:
                    config = json.load(f)
                    theme_name = config.get("name", theme)
            except Exception:
                pass
        content = content.replace("<title>Manus</title>", f"<title>Manus - {theme_name}</title>")
        return HTMLResponse(content=content)
    return templates.TemplateResponse("chat.html", {"request": request})

@app.get("/debug", response_class=HTMLResponse)
async def debug_sse_page(request: Request):
    return templates.TemplateResponse("test-events.html", {"request": request})

@app.get("/download")
async def download_file(file_path: str):
    if not os.path.exists(file_path):
        raise HTTPException(status_code=404, detail="File not found")
    return FileResponse(file_path, filename=os.path.basename(file_path))

@app.post("/tasks")
async def create_task(prompt: str = Body(..., embed=True)):
    task = task_manager.create_task(prompt)
    asyncio.create_task(run_task(task.id, prompt))
    return {"task_id": task.id}

class SSELogHandler:
    def __init__(self, task_id):
        self.task_id = task_id

    async def __call__(self, message):
        import re
        cleaned_message = re.sub(r"^.*? - ", "", message)
        cleaned_message = re.sub(r"^.*? - ", "", cleaned_message)
        event_type = "log"
        if "✨ Manus's thoughts:" in cleaned_message:
            event_type = "think"
        elif "🛠️ Manus selected" in cleaned_message:
            event_type = "tool"
        elif "🎯 Tool" in cleaned_message:
            event_type = "act"
        elif "📝 Oops!" in cleaned_message:
            event_type = "error"
        elif "🏁 Special tool" in cleaned_message:
            event_type = "complete"
        elif "🎉 Manus result:" in cleaned_message:
            event_type = "result"
            cleaned_message = cleaned_message.replace("🎉 Manus result:", "")
            await task_manager.update_task_step(self.task_id, 1, cleaned_message, event_type)
            return
        await task_manager.update_task_step(self.task_id, 0, cleaned_message, event_type)

async def run_task(task_id: str, prompt: str):
    def has_log_prefix(message):
        import re
        return re.match(r"^.*?\|.*?\|.*? - ", message) is not None

    async def call_manus(url: str, prompt: str):
        generate_kwargs = {"prompt": prompt}
        async with aiohttp.ClientSession() as session:
            async with session.post(
                url=url,
                json=generate_kwargs,
                timeout=aiohttp.ClientTimeout(total=3600)
            ) as response:
                buffer = ""
                async for line in response.content:
                    decode_line = line.decode('utf-8')
                    if has_log_prefix(decode_line) and len(buffer) > 0:
                        logger.info(buffer)
                        buffer = ""
                    else:
                        buffer += decode_line
                if buffer:
                    logger.info(buffer)

    try:
        task_manager.tasks[task_id].status = "running"
        logger.add(make_sse_handler(task_id))
        logger.info("✨ Manus's thoughts: testing SSE event emission")
        await asyncio.sleep(2)
        logger.info("🎉 Manus result: Hello from mock")
        await task_manager.update_task_step(task_id, 1, "Hello from mock", "result")
        await task_manager.complete_task(task_id)
        # Uncomment for real call:
        # await call_manus(OPENMANUS_ENDPOINT_URL, prompt)
    except Exception as e:
        await task_manager.fail_task(task_id, str(e))

@app.get("/tasks/{task_id}/events")
async def task_events(task_id: str):
    async def event_generator():
        if task_id not in task_manager.queues:
            yield f"event: error\ndata: {dumps({'message': 'Task not found'})}\n\n"
            return
        queue = task_manager.queues[task_id]
        task = task_manager.tasks.get(task_id)
        if task:
            yield f"event: status\ndata: {dumps({'type': 'status', 'status': task.status, 'steps': task.steps})}\n\n"
        while True:
            try:
                event = await queue.get()
                formatted_event = dumps(event)
                yield ": heartbeat\n\n"
                if event["type"] in ["complete", "error"]:
                    yield f"event: {event['type']}\ndata: {formatted_event}\n\n"
                    break
                if event["type"] == "step":
                    task = task_manager.tasks.get(task_id)
                    if task:
                        yield f"event: status\ndata: {dumps({'type': 'status', 'status': task.status, 'steps': task.steps})}\n\n"
                yield f"event: {event['type']}\ndata: {formatted_event}\n\n"
            except asyncio.CancelledError:
                print(f"Client disconnected for task {task_id}")
                break
            except Exception as e:
                print(f"Error in event stream: {str(e)}")
                yield f"event: error\ndata: {dumps({'message': str(e)})}\n\n"
                break
    return StreamingResponse(event_generator(), media_type="text/event-stream", headers={"Cache-Control": "no-cache", "Connection": "keep-alive", "X-Accel-Buffering": "no"})

@app.get("/tasks")
async def get_tasks():
    sorted_tasks = sorted(task_manager.tasks.values(), key=lambda task: task.created_at, reverse=True)
    return JSONResponse(content=[task.model_dump() for task in sorted_tasks], headers={"Content-Type": "application/json"})

@app.get("/tasks/{task_id}")
async def get_task(task_id: str):
    if task_id not in task_manager.tasks:
        raise HTTPException(status_code=404, detail="Task not found")
    return task_manager.tasks[task_id]

@app.exception_handler(Exception)
async def generic_exception_handler(request: Request, exc: Exception):
    return JSONResponse(status_code=500, content={"message": f"Server error: {str(exc)}"})

if __name__ == "__main__":
    uvicorn.run(app, host="0.0.0.0", port=7860)