Files
pod_trend_agent/graph/nodes/fetch_node.py
T

66 lines
3.0 KiB
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"""节点 1/6:抓取(fetch)。
按 config.sources 启用各可插拔数据源,汇总统一格式行。
单源失败不影响其它源(内部逐个 try),整体再套 with_fallback 兜底。
缓存策略(用户要求:成功采集就不用缓存):
1. 先用种子词走数据源抓取(Google Trends 等),成功即用新数据;
2. 抓取失败/无结果才回退 output/<国>/collected_keywords.json 旧缓存,保证流水线不中断。
"""
from typing import Any, Dict, List
from graph.sources import get_source
from graph.validate import validate_rows, with_fallback
@with_fallback("fetch")
def fetch_node(state: Dict[str, Any]) -> Dict[str, Any]:
country = state["country"]
config = state["config"]
cc = state["country_config"]
enabled = config.get("sources") or ["google_trends"]
rows: List[Dict[str, Any]] = []
errors = list(state.get("errors") or [])
# 1) 先尝试数据源抓取(用种子词),成功即用新数据
for name in enabled:
try:
src = get_source(name)
rows.extend(src.fetch(country, cc, config))
except Exception as e: # noqa: BLE001
errors.append({
"node": "fetch", "type": type(e).__name__,
"message": f"source[{name}]: {e}", "trace": "",
})
print(f"[fetch] 数据源 {name} 失败(跳过): {e}")
if rows:
rows = validate_rows(rows, "fetch")
stats = dict(state.get("stats") or {})
stats["fetch"] = {"raw_rows": len(rows), "sources": enabled, "errors": len(errors)}
return {"raw_rows": rows, "errors": errors, "stats": stats}
# 2) 抓取失败/无结果 → 回退采集缓存(filter 上次写入的 collected_keywords.json
use_collected = (config.get("fetch") or {}).get("use_collected", True)
if use_collected:
try:
import json as _json
from pathlib import Path as _Path
p = _Path(state.get("cache_dir") or state.get("output_dir", "")) / "collected_keywords.json"
if p.exists():
data = _json.loads(p.read_text(encoding="utf-8"))
cached_rows = data.get("keywords") or []
if cached_rows:
rows = [dict(r) for r in cached_rows] # 已过滤去重的关键词
print(f"[fetch] 数据源抓取失败,回退采集缓存 {len(rows)} 条({country}")
stats = dict(state.get("stats") or {})
stats["fetch"] = {"raw_rows": len(rows), "sources": ["collected_cache"], "errors": len(errors)}
return {"raw_rows": rows, "errors": errors, "stats": stats}
except Exception as e: # noqa: BLE001
print(f"[fetch] 读取采集缓存失败(回退数据源): {e}")
rows = validate_rows(rows, "fetch")
stats = dict(state.get("stats") or {})
stats["fetch"] = {"raw_rows": len(rows), "sources": enabled, "errors": len(errors)}
return {"raw_rows": rows, "errors": errors, "stats": stats}