新增企业微信、微博、WhatsApp、Workplace 四个渠道扩展。 企业微信渠道扩展主要模块:config, gateway, webhook, webhook_bot, outbound, streaming, pairing, security, crypto, dedupe, persistent_dedupe, card, directory, events, externalcontact, media, mentions, menu, message, oauth, status 微博渠道扩展主要模块:config, gateway, webhook, outbound, streaming, pairing, security, dedupe, passive_reply, broadcast, message, menu, media, subscription, template, status WhatsApp 渠道扩展主要模块:config, gateway, webhook, outbound, streaming, pairing, security, dedupe, actions, monitor, status Workplace 渠道扩展主要模块:config, gateway, webhook, outbound, streaming, pairing, security, dedupe, actions, challenge, groups, media, mentions, menu, monitor, persona, quick_reply, signature, subscriptions, template, threading, users, status
18 lines
423 B
Python
18 lines
423 B
Python
import re
|
|
|
|
|
|
def parse_mentions(content: str) -> list[str]:
|
|
pattern = r"@([^\s@]+)"
|
|
matches = re.findall(pattern, content)
|
|
return [m for m in matches if m]
|
|
|
|
|
|
def is_bot_mentioned(content: str, bot_name: str | None = None) -> bool:
|
|
if bot_name:
|
|
return f"@{bot_name}" in content
|
|
return "@" in content
|
|
|
|
|
|
def strip_mention(content: str) -> str:
|
|
return re.sub(r"@[^\s@]+\s*", "", content).strip()
|