- Replace text=True with encoding='utf-8', errors='replace' in all subprocess.run calls (channels + cli.py) to fix GBK decode errors on Chinese Windows systems - Use shutil.which() resolved paths in channel subprocess calls to handle Windows .cmd wrappers (npm global installs) Co-authored-by: Panniantong <panniantong@users.noreply.github.com>
39 lines
1.3 KiB
Python
39 lines
1.3 KiB
Python
# -*- coding: utf-8 -*-
|
||
"""Twitter/X — check if xreach CLI is available."""
|
||
|
||
import shutil
|
||
import subprocess
|
||
from .base import Channel
|
||
|
||
|
||
class TwitterChannel(Channel):
|
||
name = "twitter"
|
||
description = "Twitter/X 推文"
|
||
backends = ["xreach CLI"]
|
||
tier = 1
|
||
|
||
def can_handle(self, url: str) -> bool:
|
||
from urllib.parse import urlparse
|
||
d = urlparse(url).netloc.lower()
|
||
return "x.com" in d or "twitter.com" in d
|
||
|
||
def check(self, config=None):
|
||
xreach = shutil.which("xreach")
|
||
if not xreach:
|
||
return "warn", (
|
||
"xreach CLI 未安装。搜索可通过 Exa 替代。安装:\n"
|
||
" npm install -g xreach-cli"
|
||
)
|
||
try:
|
||
r = subprocess.run(
|
||
[xreach, "auth", "check"], capture_output=True,
|
||
encoding="utf-8", errors="replace", timeout=10
|
||
)
|
||
if r.returncode == 0:
|
||
return "ok", "完整可用(读取、搜索推文)"
|
||
return "warn", (
|
||
"xreach CLI 已安装但未配置 Cookie。运行:\n"
|
||
" agent-reach configure twitter-cookies \"auth_token=xxx; ct0=yyy\""
|
||
)
|
||
except Exception:
|
||
return "warn", "xreach CLI 已安装但连接失败"
|