ErisPulse的Webhook通用桥接适配模块
Project description
ErisPulse-WebhookAdapter
ErisPulse 的 Webhook 通用桥接适配器(低代码万能桥)。它是一个双向桥接适配器:把任意外部系统的消息通过 HTTP 接入 ErisPulse,同时把 ErisPulse 模块发出的消息通过 HTTP 转发给任意目标系统。
适配器定位
每个「账户」即一个独立的 webhook 桥接配置:
| 方向 | 说明 |
|---|---|
| 入站(外部 → ErisPulse) | 外部系统通过 HTTP POST 把事件发到适配器注册的 webhook 路由,适配器转换为 OneBot12 标准事件并分发 |
| 出站(ErisPulse → 外部) | 模块调用 adapter.Send.To(...).Text(...) 时,适配器把消息 POST 到账户配置的 outgoing_url(即"用户订阅 webhook 到其他系统,提供发送 api") |
一个账户 = 一个入站路径 + 一个出站 URL + 一个鉴权密钥。
安装
epsdk install WebhookAdapter
配置
配置位于 config.toml 的 [WebhookAdapter] 段,或通过Dashboard的适配器配置进行配置:
[WebhookAdapter.accounts.default]
bot_id = "webhook_bot"
callback_path = "/webhook/default"
outgoing_url = "https://example.com/api/receive" # 模块发消息会 POST 到这里
secret = "my-secret-key" # 鉴权密钥(留空则不校验)
detail_type = "private" # 默认会话类型
enabled = true
# 可以配置多个桥接账户
[WebhookAdapter.accounts.discord_bridge]
bot_id = "discord_bot_123"
callback_path = "/webhook/discord"
outgoing_url = "https://my-discord-relay.example.com/send"
secret = "another-secret"
detail_type = "group"
enabled = true
字段说明
| 字段 | 默认值 | 说明 |
|---|---|---|
bot_id |
webhook_bot |
该桥接代表的机器人身份 ID(写入事件的 self.user_id) |
callback_path |
/webhook/{account} |
入站路径,支持 {account} 占位符(自动替换为账户名) |
outgoing_url |
"" |
出站目标 URL,留空则仅入站不发送 |
secret |
"" |
鉴权密钥,留空则不校验入站请求 |
detail_type |
private |
默认会话类型,入站 body 未指定 detail_type 时使用 |
入站协议(外部 → ErisPulse)
HTTP 请求
外部系统 POST 到 {callback_path}/{account},body 为 JSON:
{
"user_id": "xxx",
"user_nickname": "用户名",
"group_id": "可选,群组/频道ID",
"detail_type": "private 或 group",
"message": [{"type": "text", "data": {"text": "内容"}}],
"raw": {}
}
detail_type未提供时使用账户配置的默认值group_id仅在群组会话时提供message为 OneBot12 标准消息段数组raw可选,原样存入webhook_raw.raw
鉴权
如果账户配置了 secret,入站请求需携带密钥(二选一):
- Header:
X-Webhook-Secret: {secret} - Query:
?secret={secret}
secret 留空时不校验。
健康检查(GET)
收到 GET 请求时返回 {"status":"ok","account":"账户名"},可用于健康检查。
入站示例
curl -X POST http://localhost:8000/webhook/default \
-H "Content-Type: application/json" \
-H "X-Webhook-Secret: my-secret-key" \
-d '{
"user_id": "u123",
"user_nickname": "测试用户",
"detail_type": "private",
"message": [{"type": "text", "data": {"text": "你好"}}]
}'
响应:
{"status": "ok"}
转换后的 OneBot12 事件
{
"id": "自动生成",
"time": 1700000000,
"type": "message",
"detail_type": "private",
"platform": "webhook",
"self": {"platform": "webhook", "user_id": "webhook_bot"},
"user_id": "u123",
"user_nickname": "测试用户",
"message": [{"type": "text", "data": {"text": "你好"}}],
"webhook_raw": {},
"webhook_account": "default",
"webhook_raw_type": "message"
}
出站协议(ErisPulse → 外部)
模块调用 Send 时,适配器把消息 POST 到账户的 outgoing_url:
{
"target_type": "private|group|user",
"target_id": "xxx",
"account": "账户名",
"message": [{"type": "text", "data": {"text": "内容"}}],
"timestamp": 1234567890
}
请求头(若配置了 secret):
X-Webhook-Secret: {secret}
适配器会把出站目标返回的响应标准化为标准响应格式:从响应 JSON 中提取 message_id 字段。
发送示例
from ErisPulse import sdk
# 发送文本(使用默认账户)
await sdk.adapter.webhook.Send.To("user", "target_user_id").Text("你好")
# 指定账户发送
await sdk.adapter.webhook.Send.To("group", "group_123").Using("discord_bridge").Text("群消息")
# 原始 JSON 透传
await sdk.adapter.webhook.Send.To("user", "u1").Json({"custom": "data"})
# OneBot12 原始消息段
await sdk.adapter.webhook.Send.To("user", "u1").Raw_ob12([
{"type": "text", "data": {"text": "hello"}}
])
使用场景
场景一:接入自有系统
你的业务系统通过 webhook 把用户消息推给 ErisPulse 处理,处理后再回传:
- 配置一个账户,
callback_path指向你的入站路径,outgoing_url指向你的接收 API - 业务系统把用户消息 POST 到
callback_path - ErisPulse 模块处理后,回复消息会 POST 到
outgoing_url
场景二:桥接非原生支持的平台
通过中间转发脚本,把其他平台(如自建 IM、企业内部系统)接入 ErisPulse,无需开发完整适配器。
场景三:Webhook 中继
作为消息中继,把多个 webhook 源汇聚到 ErisPulse 统一处理,再分发给多个目标。
文档
- 平台特性说明 — 入站/出站协议详解与字段映射
许可证
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file erispulse_webhookadapter-4.0.0.tar.gz.
File metadata
- Download URL: erispulse_webhookadapter-4.0.0.tar.gz
- Upload date:
- Size: 8.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2e731a6056379e29df1b39ed6eadab2a3b1a79c312bdd81f84ed53d994addf76
|
|
| MD5 |
4d3e383d7ff3e337f923242992ae6300
|
|
| BLAKE2b-256 |
b74335201907f6d1efac62367d47b1275a5b47451e24dff73bcca2e78b857ba7
|
Provenance
The following attestation bundles were made for erispulse_webhookadapter-4.0.0.tar.gz:
Publisher:
python-publish.yml on ErisPulse/ErisPulse-WebhookAdapter
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
erispulse_webhookadapter-4.0.0.tar.gz -
Subject digest:
2e731a6056379e29df1b39ed6eadab2a3b1a79c312bdd81f84ed53d994addf76 - Sigstore transparency entry: 1832314435
- Sigstore integration time:
-
Permalink:
ErisPulse/ErisPulse-WebhookAdapter@037c5e2ee084067d8dfc033bf19acb5290a29a4b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/ErisPulse
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@037c5e2ee084067d8dfc033bf19acb5290a29a4b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file erispulse_webhookadapter-4.0.0-py3-none-any.whl.
File metadata
- Download URL: erispulse_webhookadapter-4.0.0-py3-none-any.whl
- Upload date:
- Size: 10.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6334ee2432f327e2c36c303d8268cb41ceedaff5e8887c332e3fa142a0efa857
|
|
| MD5 |
c40449f8e8f5316619cefcb731eb80fe
|
|
| BLAKE2b-256 |
80ca340f3d2eb14b8a587e9c959ef56c6bcb43c04c8bafcb6ba16bbc118fb9c5
|
Provenance
The following attestation bundles were made for erispulse_webhookadapter-4.0.0-py3-none-any.whl:
Publisher:
python-publish.yml on ErisPulse/ErisPulse-WebhookAdapter
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
erispulse_webhookadapter-4.0.0-py3-none-any.whl -
Subject digest:
6334ee2432f327e2c36c303d8268cb41ceedaff5e8887c332e3fa142a0efa857 - Sigstore transparency entry: 1832314707
- Sigstore integration time:
-
Permalink:
ErisPulse/ErisPulse-WebhookAdapter@037c5e2ee084067d8dfc033bf19acb5290a29a4b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/ErisPulse
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@037c5e2ee084067d8dfc033bf19acb5290a29a4b -
Trigger Event:
workflow_dispatch
-
Statement type: