mirror of
https://github.com/NanmiCoder/MediaCrawler.git
synced 2026-03-04 13:10:48 +08:00
JSONL(JSON Lines)每行一个 JSON 对象,采用 append 模式写入, 无需读取已有数据,大数据量下性能远优于 JSON 格式。 - 新增 AsyncFileWriter.write_to_jsonl() 核心方法 - 7 个平台新增 JsonlStoreImplement 类并注册到工厂 - 配置默认值从 json 改为 jsonl,CLI/API 枚举同步更新 - db_session.py 守卫条件加入 jsonl,避免误触 ValueError - 词云生成支持读取 JSONL 文件,优先 jsonl 回退 json - 原有 json 选项完全保留,向后兼容 - 更新相关文档和测试
188 lines
6.3 KiB
Python
188 lines
6.3 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Copyright (c) 2025 relakkes@gmail.com
|
|
#
|
|
# This file is part of MediaCrawler project.
|
|
# Repository: https://github.com/NanmiCoder/MediaCrawler/blob/main/api/main.py
|
|
# GitHub: https://github.com/NanmiCoder
|
|
# Licensed under NON-COMMERCIAL LEARNING LICENSE 1.1
|
|
#
|
|
# 声明:本代码仅供学习和研究目的使用。使用者应遵守以下原则:
|
|
# 1. 不得用于任何商业用途。
|
|
# 2. 使用时应遵守目标平台的使用条款和robots.txt规则。
|
|
# 3. 不得进行大规模爬取或对平台造成运营干扰。
|
|
# 4. 应合理控制请求频率,避免给目标平台带来不必要的负担。
|
|
# 5. 不得用于任何非法或不当的用途。
|
|
#
|
|
# 详细许可条款请参阅项目根目录下的LICENSE文件。
|
|
# 使用本代码即表示您同意遵守上述原则和LICENSE中的所有条款。
|
|
|
|
"""
|
|
MediaCrawler WebUI API Server
|
|
Start command: uvicorn api.main:app --port 8080 --reload
|
|
Or: python -m api.main
|
|
"""
|
|
import asyncio
|
|
import os
|
|
import subprocess
|
|
import uvicorn
|
|
from fastapi import FastAPI
|
|
from fastapi.middleware.cors import CORSMiddleware
|
|
from fastapi.staticfiles import StaticFiles
|
|
from fastapi.responses import FileResponse
|
|
|
|
from .routers import crawler_router, data_router, websocket_router
|
|
|
|
app = FastAPI(
|
|
title="MediaCrawler WebUI API",
|
|
description="API for controlling MediaCrawler from WebUI",
|
|
version="1.0.0"
|
|
)
|
|
|
|
# Get webui static files directory
|
|
WEBUI_DIR = os.path.join(os.path.dirname(__file__), "webui")
|
|
|
|
# CORS configuration - allow frontend dev server access
|
|
app.add_middleware(
|
|
CORSMiddleware,
|
|
allow_origins=[
|
|
"http://localhost:5173", # Vite dev server
|
|
"http://localhost:3000", # Backup port
|
|
"http://127.0.0.1:5173",
|
|
"http://127.0.0.1:3000",
|
|
],
|
|
allow_credentials=True,
|
|
allow_methods=["*"],
|
|
allow_headers=["*"],
|
|
)
|
|
|
|
# Register routers
|
|
app.include_router(crawler_router, prefix="/api")
|
|
app.include_router(data_router, prefix="/api")
|
|
app.include_router(websocket_router, prefix="/api")
|
|
|
|
|
|
@app.get("/")
|
|
async def serve_frontend():
|
|
"""Return frontend page"""
|
|
index_path = os.path.join(WEBUI_DIR, "index.html")
|
|
if os.path.exists(index_path):
|
|
return FileResponse(index_path)
|
|
return {
|
|
"message": "MediaCrawler WebUI API",
|
|
"version": "1.0.0",
|
|
"docs": "/docs",
|
|
"note": "WebUI not found, please build it first: cd webui && npm run build"
|
|
}
|
|
|
|
|
|
@app.get("/api/health")
|
|
async def health_check():
|
|
return {"status": "ok"}
|
|
|
|
|
|
@app.get("/api/env/check")
|
|
async def check_environment():
|
|
"""Check if MediaCrawler environment is configured correctly"""
|
|
try:
|
|
# Run uv run main.py --help command to check environment
|
|
process = await asyncio.create_subprocess_exec(
|
|
"uv", "run", "main.py", "--help",
|
|
stdout=subprocess.PIPE,
|
|
stderr=subprocess.PIPE,
|
|
cwd="." # Project root directory
|
|
)
|
|
stdout, stderr = await asyncio.wait_for(
|
|
process.communicate(),
|
|
timeout=30.0 # 30 seconds timeout
|
|
)
|
|
|
|
if process.returncode == 0:
|
|
return {
|
|
"success": True,
|
|
"message": "MediaCrawler environment configured correctly",
|
|
"output": stdout.decode("utf-8", errors="ignore")[:500] # Truncate to first 500 characters
|
|
}
|
|
else:
|
|
error_msg = stderr.decode("utf-8", errors="ignore") or stdout.decode("utf-8", errors="ignore")
|
|
return {
|
|
"success": False,
|
|
"message": "Environment check failed",
|
|
"error": error_msg[:500]
|
|
}
|
|
except asyncio.TimeoutError:
|
|
return {
|
|
"success": False,
|
|
"message": "Environment check timeout",
|
|
"error": "Command execution exceeded 30 seconds"
|
|
}
|
|
except FileNotFoundError:
|
|
return {
|
|
"success": False,
|
|
"message": "uv command not found",
|
|
"error": "Please ensure uv is installed and configured in system PATH"
|
|
}
|
|
except Exception as e:
|
|
return {
|
|
"success": False,
|
|
"message": "Environment check error",
|
|
"error": str(e)
|
|
}
|
|
|
|
|
|
@app.get("/api/config/platforms")
|
|
async def get_platforms():
|
|
"""Get list of supported platforms"""
|
|
return {
|
|
"platforms": [
|
|
{"value": "xhs", "label": "Xiaohongshu", "icon": "book-open"},
|
|
{"value": "dy", "label": "Douyin", "icon": "music"},
|
|
{"value": "ks", "label": "Kuaishou", "icon": "video"},
|
|
{"value": "bili", "label": "Bilibili", "icon": "tv"},
|
|
{"value": "wb", "label": "Weibo", "icon": "message-circle"},
|
|
{"value": "tieba", "label": "Baidu Tieba", "icon": "messages-square"},
|
|
{"value": "zhihu", "label": "Zhihu", "icon": "help-circle"},
|
|
]
|
|
}
|
|
|
|
|
|
@app.get("/api/config/options")
|
|
async def get_config_options():
|
|
"""Get all configuration options"""
|
|
return {
|
|
"login_types": [
|
|
{"value": "qrcode", "label": "QR Code Login"},
|
|
{"value": "cookie", "label": "Cookie Login"},
|
|
],
|
|
"crawler_types": [
|
|
{"value": "search", "label": "Search Mode"},
|
|
{"value": "detail", "label": "Detail Mode"},
|
|
{"value": "creator", "label": "Creator Mode"},
|
|
],
|
|
"save_options": [
|
|
{"value": "jsonl", "label": "JSONL File"},
|
|
{"value": "json", "label": "JSON File"},
|
|
{"value": "csv", "label": "CSV File"},
|
|
{"value": "excel", "label": "Excel File"},
|
|
{"value": "sqlite", "label": "SQLite Database"},
|
|
{"value": "db", "label": "MySQL Database"},
|
|
{"value": "mongodb", "label": "MongoDB Database"},
|
|
],
|
|
}
|
|
|
|
|
|
# Mount static resources - must be placed after all routes
|
|
if os.path.exists(WEBUI_DIR):
|
|
assets_dir = os.path.join(WEBUI_DIR, "assets")
|
|
if os.path.exists(assets_dir):
|
|
app.mount("/assets", StaticFiles(directory=assets_dir), name="assets")
|
|
# Mount logos directory
|
|
logos_dir = os.path.join(WEBUI_DIR, "logos")
|
|
if os.path.exists(logos_dir):
|
|
app.mount("/logos", StaticFiles(directory=logos_dir), name="logos")
|
|
# Mount other static files (e.g., vite.svg)
|
|
app.mount("/static", StaticFiles(directory=WEBUI_DIR), name="webui-static")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
uvicorn.run(app, host="0.0.0.0", port=8080)
|