Add Telegram topic binding command
This commit is contained in:
+106
-2
@@ -9,14 +9,34 @@ from loguru import logger # type: ignore
|
||||
|
||||
from src.bot.command_parser import extract_command_name
|
||||
from src.bot.command_parser import looks_like_slash_command
|
||||
from src.bot.command_parser import split_command_and_args
|
||||
from src.bot.io_layer import BotIOLayer
|
||||
from src.bot.observability import CommandTrace
|
||||
from src.bot.runtime_coordinator import RuntimeStatus, render_runtime_status_html
|
||||
from src.auth.supabase_entitlement import SUPABASE_ENTITLEMENT
|
||||
from src.auth.telegram_group_pricing import TelegramGroupPricing, TELEGRAM_MEMBER_STATUSES
|
||||
from src.utils.telegram_chat_ids import get_telegram_chat_ids_from_env
|
||||
from src.utils.telegram_chat_ids import get_telegram_chat_ids_from_env, parse_telegram_chat_ids
|
||||
|
||||
_BASIC_COMMANDS = {"start", "help", "id", "top", "diag", "bind", "unbind"}
|
||||
_BASIC_COMMANDS = {"start", "help", "id", "top", "diag", "bind", "unbind", "bindtopic"}
|
||||
|
||||
|
||||
def normalize_airport_push_city(raw: str) -> str:
|
||||
from src.utils.telegram_push import normalize_airport_push_city as _normalize
|
||||
|
||||
return _normalize(raw)
|
||||
|
||||
|
||||
def record_city_thread_id(city: str, thread_id: int) -> dict:
|
||||
from src.utils.telegram_push import record_city_thread_id as _record
|
||||
|
||||
return _record(city, thread_id)
|
||||
|
||||
|
||||
def _env_bool(name: str, default: bool) -> bool:
|
||||
raw = os.getenv(name)
|
||||
if raw is None:
|
||||
return default
|
||||
return raw.strip().lower() in {"1", "true", "yes", "on"}
|
||||
|
||||
|
||||
class BasicCommandHandler:
|
||||
@@ -59,6 +79,10 @@ class BasicCommandHandler:
|
||||
def _unbind(message):
|
||||
self._dispatch(message)
|
||||
|
||||
@self.bot.message_handler(commands=["bindtopic"])
|
||||
def _bindtopic(message):
|
||||
self._dispatch(message)
|
||||
|
||||
if hasattr(self.bot, "chat_join_request_handler"):
|
||||
@self.bot.chat_join_request_handler(func=lambda request: True)
|
||||
def _chat_join_request(request):
|
||||
@@ -118,6 +142,9 @@ class BasicCommandHandler:
|
||||
if command == "unbind":
|
||||
self.handle_unbind(message)
|
||||
return
|
||||
if command == "bindtopic":
|
||||
self.handle_bindtopic(message)
|
||||
return
|
||||
|
||||
def handle_start_help(self, message: Any) -> None:
|
||||
trace = CommandTrace("/start", message)
|
||||
@@ -158,6 +185,83 @@ class BasicCommandHandler:
|
||||
)
|
||||
return "replied"
|
||||
|
||||
def _configured_forum_chat_ids(self) -> set[str]:
|
||||
return set(
|
||||
parse_telegram_chat_ids(
|
||||
os.getenv("TELEGRAM_FORUM_CHAT_ID"),
|
||||
os.getenv("POLYWEATHER_TELEGRAM_TOPICS_GROUP_ID"),
|
||||
os.getenv("POLYWEATHER_TELEGRAM_GROUP_ID"),
|
||||
os.getenv("TELEGRAM_CHAT_IDS"),
|
||||
os.getenv("TELEGRAM_CHAT_ID"),
|
||||
)
|
||||
)
|
||||
|
||||
def _can_bind_topic(self, message: Any) -> bool:
|
||||
if not _env_bool("POLYWEATHER_TOPIC_BIND_ADMIN_ONLY", True):
|
||||
return True
|
||||
chat = getattr(message, "chat", None)
|
||||
user = getattr(message, "from_user", None)
|
||||
chat_id = getattr(chat, "id", None)
|
||||
user_id = getattr(user, "id", None)
|
||||
if chat_id is None or user_id is None or not hasattr(self.bot, "get_chat_member"):
|
||||
return False
|
||||
try:
|
||||
member = self.bot.get_chat_member(chat_id, user_id)
|
||||
except Exception as exc:
|
||||
logger.warning("bindtopic admin check failed chat_id={} user_id={}: {}", chat_id, user_id, exc)
|
||||
return False
|
||||
status = str(getattr(member, "status", "") or "").strip().lower()
|
||||
return status in {"creator", "administrator"}
|
||||
|
||||
def handle_bindtopic(self, message: Any) -> str:
|
||||
trace = CommandTrace("/bindtopic", message)
|
||||
try:
|
||||
chat = getattr(message, "chat", None)
|
||||
chat_id = getattr(chat, "id", None)
|
||||
chat_type = str(getattr(chat, "type", "") or "").strip().lower()
|
||||
if chat_type not in {"group", "supergroup"} or chat_id is None:
|
||||
self.bot.reply_to(message, "❌ 请在目标 Telegram 群子话题里执行 /bindtopic <city>。")
|
||||
trace.set_status("blocked", "not_group_topic")
|
||||
return "not_group_topic"
|
||||
configured_chat_ids = self._configured_forum_chat_ids()
|
||||
if configured_chat_ids and str(chat_id) not in configured_chat_ids:
|
||||
self.bot.reply_to(message, "❌ 当前群不在推送目标配置里,已拒绝绑定。")
|
||||
trace.set_status("blocked", "chat_not_configured")
|
||||
return "chat_not_configured"
|
||||
thread_id = int(getattr(message, "message_thread_id", 0) or 0)
|
||||
if thread_id <= 0:
|
||||
self.bot.reply_to(message, "❌ 请进入具体子话题后再执行 /bindtopic <city>。")
|
||||
trace.set_status("blocked", "missing_thread_id")
|
||||
return "missing_thread_id"
|
||||
if not self._can_bind_topic(message):
|
||||
self.bot.reply_to(message, "❌ 只有群管理员可以绑定推送子话题。")
|
||||
trace.set_status("blocked", "unauthorized")
|
||||
return "unauthorized"
|
||||
_command, raw_city = split_command_and_args(getattr(message, "text", "") or "")
|
||||
city = normalize_airport_push_city(raw_city)
|
||||
if not city:
|
||||
self.bot.reply_to(
|
||||
message,
|
||||
"❌ 未识别城市。用法:<code>/bindtopic seoul</code> 或 <code>/bindtopic LauFauShan</code>",
|
||||
parse_mode="HTML",
|
||||
)
|
||||
trace.set_status("blocked", "unsupported_city")
|
||||
return "unsupported_city"
|
||||
result = record_city_thread_id(city, thread_id)
|
||||
self.bot.reply_to(
|
||||
message,
|
||||
(
|
||||
"✅ 已绑定推送子话题\n"
|
||||
f"city=<code>{html.escape(city)}</code>\n"
|
||||
f"thread_id=<code>{int(result.get('thread_id') or thread_id)}</code>"
|
||||
),
|
||||
parse_mode="HTML",
|
||||
)
|
||||
trace.set_status("ok", city)
|
||||
return "bound"
|
||||
finally:
|
||||
trace.emit()
|
||||
|
||||
def _prompt_bind_from_web_token(self, message: Any, token: str) -> str:
|
||||
if not token:
|
||||
self.bot.reply_to(message, "❌ 绑定链接无效,请回到网页重新点击一键绑定。")
|
||||
|
||||
+2
-1
@@ -197,7 +197,8 @@ class BotIOLayer:
|
||||
"/id - 获取当前聊天的 Chat ID\n\n"
|
||||
"/diag - 查看 Bot 启动诊断\n\n"
|
||||
"/bind - 绑定 Supabase 账号(可选)\n"
|
||||
"/unbind - 解除当前 Telegram 与网页账号绑定\n\n"
|
||||
"/unbind - 解除当前 Telegram 与网页账号绑定\n"
|
||||
"/bindtopic <city> - 管理员在子话题内绑定城市推送\n\n"
|
||||
"🔗 机器人: <a href=\"https://t.me/polyyuanbot\">@polyyuanbot</a>\n"
|
||||
"👥 社群: <a href=\"https://t.me/+Io5H9oVHFmVjOTQ5\">加入 Telegram 群组</a>"
|
||||
)
|
||||
|
||||
@@ -17,6 +17,7 @@ from src.database.runtime_state import (
|
||||
TelegramAlertStateRepository,
|
||||
get_state_storage_mode,
|
||||
)
|
||||
from src.data_collection.city_registry import ALIASES
|
||||
from src.data_collection.city_registry import CITY_REGISTRY
|
||||
from src.utils.telegram_chat_ids import get_telegram_chat_ids_from_env, parse_telegram_chat_ids
|
||||
from src.utils.telegram_i18n import (
|
||||
@@ -35,6 +36,7 @@ _CITY_THREAD_IDS_PATH = os.path.join(
|
||||
)
|
||||
_DEFAULT_FORUM_CHAT_ID = "-1003927451869"
|
||||
_city_thread_ids: dict = {}
|
||||
_CITY_THREAD_IDS_LOCK = threading.Lock()
|
||||
|
||||
# Shared HTTP session for AROME and auxiliary queries (connection reuse)
|
||||
_HTTP_SESSION: Optional[requests_lib.Session] = None
|
||||
@@ -106,6 +108,75 @@ def _load_city_thread_ids() -> dict:
|
||||
return {}
|
||||
|
||||
|
||||
def normalize_airport_push_city(raw: str) -> str:
|
||||
city = str(raw or "").strip().lower().replace("-", " ")
|
||||
city = re.sub(r"\s+", " ", city)
|
||||
compact = city.replace(" ", "")
|
||||
city = ALIASES.get(city, ALIASES.get(compact, city))
|
||||
if city not in HIGH_FREQ_AIRPORT_CITIES:
|
||||
city = {
|
||||
candidate.replace(" ", ""): candidate
|
||||
for candidate in HIGH_FREQ_AIRPORT_CITIES
|
||||
}.get(compact, city)
|
||||
if city in HIGH_FREQ_AIRPORT_CITIES:
|
||||
return city
|
||||
return ""
|
||||
|
||||
|
||||
def _city_thread_ids_write_path() -> str:
|
||||
env_path = str(os.getenv("POLYWEATHER_CITY_THREAD_IDS_PATH") or "").strip()
|
||||
if env_path:
|
||||
return env_path
|
||||
for path in (
|
||||
"/var/lib/polyweather/city_thread_ids.json",
|
||||
"/app/data/city_thread_ids.json",
|
||||
_CITY_THREAD_IDS_PATH,
|
||||
):
|
||||
if os.path.isfile(path):
|
||||
return path
|
||||
return "/var/lib/polyweather/city_thread_ids.json"
|
||||
|
||||
|
||||
def record_city_thread_id(city: str, thread_id: int) -> dict:
|
||||
"""Persist a forum topic mapping and update the in-process cache."""
|
||||
|
||||
global _city_thread_ids
|
||||
normalized_city = normalize_airport_push_city(city)
|
||||
if not normalized_city:
|
||||
raise ValueError(f"unsupported airport push city: {city}")
|
||||
try:
|
||||
normalized_thread_id = int(thread_id)
|
||||
except Exception as exc:
|
||||
raise ValueError(f"invalid message_thread_id: {thread_id}") from exc
|
||||
if normalized_thread_id <= 0:
|
||||
raise ValueError(f"invalid message_thread_id: {thread_id}")
|
||||
|
||||
with _CITY_THREAD_IDS_LOCK:
|
||||
path = _city_thread_ids_write_path()
|
||||
mapping = dict(_load_city_thread_ids())
|
||||
mapping[normalized_city] = normalized_thread_id
|
||||
os.makedirs(os.path.dirname(path), exist_ok=True)
|
||||
tmp_path = f"{path}.tmp"
|
||||
with open(tmp_path, "w", encoding="utf-8") as f:
|
||||
json.dump(mapping, f, ensure_ascii=False, indent=2, sort_keys=True)
|
||||
f.write("\n")
|
||||
os.replace(tmp_path, path)
|
||||
_city_thread_ids = mapping
|
||||
logger.info(
|
||||
"recorded forum topic mapping city={} thread_id={} path={} total={}",
|
||||
normalized_city,
|
||||
normalized_thread_id,
|
||||
path,
|
||||
len(mapping),
|
||||
)
|
||||
return {
|
||||
"city": normalized_city,
|
||||
"thread_id": normalized_thread_id,
|
||||
"path": path,
|
||||
"total": len(mapping),
|
||||
}
|
||||
|
||||
|
||||
def _forum_chat_ids() -> Set[str]:
|
||||
return set(
|
||||
parse_telegram_chat_ids(
|
||||
@@ -626,6 +697,7 @@ HIGH_FREQ_AIRPORT_CITIES = {
|
||||
"seoul", "singapore", "busan", "tokyo", "ankara", "helsinki", "amsterdam",
|
||||
"istanbul", "paris", "hong kong", "taipei",
|
||||
"beijing", "shanghai", "guangzhou", "qingdao", "chengdu", "chongqing", "wuhan",
|
||||
"shenzhen",
|
||||
"new york", "los angeles", "chicago", "denver", "atlanta",
|
||||
"miami", "san francisco", "houston", "dallas", "austin", "seattle",
|
||||
"tel aviv",
|
||||
@@ -638,7 +710,7 @@ HIGH_FREQ_AIRPORT_ICAO = {
|
||||
"ankara": "17128", "helsinki": "EFHK", "amsterdam": "EHAM", "istanbul": "17058",
|
||||
"paris": "LFPB", "hong kong": "HKO", "taipei": "466920",
|
||||
"beijing": "ZBAA", "shanghai": "ZSPD", "guangzhou": "ZGGG", "qingdao": "ZSQD",
|
||||
"chengdu": "ZUUU", "chongqing": "ZUCK", "wuhan": "ZHHH",
|
||||
"chengdu": "ZUUU", "chongqing": "ZUCK", "wuhan": "ZHHH", "shenzhen": "LFS",
|
||||
"new york": "KLGA", "los angeles": "KLAX", "chicago": "KORD",
|
||||
"denver": "KBKF", "atlanta": "KATL", "miami": "KMIA",
|
||||
"san francisco": "KSFO", "houston": "KHOU", "dallas": "KDAL",
|
||||
@@ -1145,6 +1217,7 @@ def _build_airport_status_message(
|
||||
"taipei": "Songshan", "beijing": "Capital", "shanghai": "Pudong",
|
||||
"guangzhou": "Baiyun", "qingdao": "Jiaodong",
|
||||
"chengdu": "Shuangliu", "chongqing": "Jiangbei", "wuhan": "Tianhe",
|
||||
"shenzhen": "Lau Fau Shan",
|
||||
"new york": "LaGuardia", "los angeles": "LAX", "chicago": "O'Hare",
|
||||
"denver": "Buckley", "atlanta": "Hartsfield", "miami": "Intl",
|
||||
"san francisco": "SFO", "houston": "Hobby", "dallas": "Love Field",
|
||||
|
||||
Reference in New Issue
Block a user