Skip to main content

ErisPulse的Ideaura平台适配器

Project description

IdeauraAdapter 模块文档

简介

IdeauraAdapter 是基于 ErisPulse 架构的花枫咖啡馆(Allons)协议适配器,整合了所有平台功能模块,提供统一的事件处理和消息操作接口。

使用示例

OneBot12标准事件类型

Ideaura适配器完全兼容 OneBot12 标准事件格式,并提供了一些扩展字段:

事件类型 detail_type 说明
消息事件 message 标准消息事件
好友增加 notice.friend_increase 好友请求被接受
好友减少 notice.friend_decrease 好友关系被解除
消息编辑 notice.ideaura_message_edit 消息被编辑
消息撤回 notice.ideaura_message_recall 消息被撤回
消息转发 notice.ideaura_message_forward 消息被转发
消息已读 notice.ideaura_message_read 消息被标记已读
好友被拒 notice.ideaura_friend_rejected 好友请求被拒绝
好友上线 notice.ideaura_friend_online 好友上线
好友下线 notice.ideaura_friend_offline 好友下线
用户状态变更 notice.ideaura_user_status_change 用户状态变化
好友请求 request.friend 收到好友请求

消息发送示例

from ErisPulse.Core import adapter
ideaura = adapter.get("ideaura")

# 发送文本消息
await ideaura.Send.To("user", "user_id").Text("Hello World!")

# 发送带@的消息
await ideaura.Send.To("group", "chatroom").At("456").Text("@李四 你好")

# @多人
await ideaura.Send.To("group", "chatroom").At("456").At("789").Text("@多人")

# @全体
await ideaura.Send.To("group", "chatroom").AtAll().Text("通知所有人")

# 发送回复消息
await ideaura.Send.To("group", "chatroom").Reply("1001").Text("回复内容")

# 发送图片(从本地文件)
with open("photo.jpg", "rb") as f:
    image_data = f.read()
await ideaura.Send.To("group", "chatroom").Image(image_data)

# 发送图片(从URL)
await ideaura.Send.To("group", "chatroom").Image("https://example.com/photo.jpg")

# 发送视频
await ideaura.Send.To("group", "chatroom").Video("https://example.com/video.mp4")

# 发送文件(带文件名)
with open("doc.pdf", "rb") as f:
    file_data = f.read()
await ideaura.Send.To("group", "chatroom").File(file_data, "文档.pdf")

# 发送 Markdown 格式消息
await ideaura.Send.To("group", "chatroom").Markdown("# 标题\n- 列表项")

# 发送 HTML 格式消息
await ideaura.Send.To("group", "chatroom").Html("<b>加粗</b>消息")

# 编辑消息
await ideaura.Send.To("group", "chatroom").Edit("message_id", "修改后的内容")

# 撤回消息
await ideaura.Send.To("group", "chatroom").Recall("message_id")

# 使用 Raw_ob12 发送复杂消息
message = [
    {"type": "text", "data": {"text": "第一行"}},
    {"type": "image", "data": {"file": "http://example.com/img.jpg"}},
    {"type": "text", "data": {"text": "第二行"}}
]
await ideaura.Send.To("group", "chatroom").Raw_ob12(message)

# 组合使用
await ideaura.Send.To("group", "chatroom").Reply("1001").At("456").Text("回复并@")

配置说明

首次运行会生成配置。Ideaura适配器支持多账户配置。

首次运行生成的默认配置

[IdeauraAdapter.accounts.default]
token = ""             # 登录Token(选填,填写后优先使用Token登录)
email = ""            # 登录邮箱(Token登录时可不填,邮箱密码登录时必填)
password = ""         # 登录密码(Token登录时可不填,邮箱密码登录时必填)
enabled = false       # 是否启用(填写完认证信息后改为true)

支持两种登录方式(二选一):

  • Token 登录:只填 token,无需邮箱密码
  • 邮箱密码登录:填 email + password

多账户配置示例

# 账户1:Token 登录
[IdeauraAdapter.accounts.bot1]
token = "your-token-here"
enabled = true

# 账户2:邮箱密码登录
[IdeauraAdapter.accounts.bot2]
email = "bot2@example.com"
password = "password2"
enabled = true

# 可选:自定义服务器地址
[IdeauraAdapter]
base_url = "https://api-cofe.allons-y.uk:3009"
ws_url = "wss://api-cofe.allons-y.uk:3009/mqtt"
heartbeat_interval = 30

配置项说明:

  • token:登录Token(选填,填写后优先使用Token登录,无需邮箱密码)
  • email:账户登录邮箱(Token登录时可不填,邮箱密码登录时必填)
  • password:账户登录密码(Token登录时可不填,邮箱密码登录时必填)
  • enabled:是否启用该账户(可选,默认为true)

全局配置项:

  • base_url:API 服务器地址(可选,默认为花枫咖啡馆官方地址)
  • ws_url:WebSocket 服务器地址(可选,默认为花枫咖啡馆官方地址)
  • heartbeat_interval:心跳间隔秒数(可选,默认30秒)

指定发送账户

可以通过 Using() 方法指定使用哪个账户发送消息:

from ErisPulse.Core import adapter
ideaura = adapter.get("ideaura")

# 使用账户名发送消息
await ideaura.Send.Using("bot1").To("user", "user123").Text("Hello from bot1!")

# 使用 user_id 发送消息(自动匹配对应账户)
await ideaura.Send.Using("456").To("group", "chatroom").Text("Hello from bot2!")

# 不指定时使用第一个启用的账户
await ideaura.Send.To("user", "user123").Text("Hello from default account!")

平台特有功能

请参考 平台特性文档 了解花枫咖啡馆平台的特有功能,包括特有事件类型、扩展字段说明、消息编辑事件、消息转发事件、好友在线状态事件、用户状态变更事件等内容。

事件监听示例

使用 Event 模块(推荐)

from ErisPulse.Core.Event import message, notice

@message.on_message()
async def handle_message(event):
    if event["platform"] == "ideaura":
        detail_type = event.get("detail_type")
        text = event.get_text()
        
        if detail_type == "group":
            source_type = event.get("ideaura_source_type")
            if source_type == "topic":
                topic_name = event.get("ideaura_topic_name")
        elif detail_type == "private":
            pass

@notice.on_notice()
async def handle_notice(event):
    if event["platform"] == "ideaura":
        detail_type = event.get("detail_type")
        
        if detail_type == "ideaura_message_edit":
            new_content = event.get("ideaura_new_content", "")
            
        elif detail_type == "ideaura_message_recall":
            message_id = event.get("message_id")
            
        elif detail_type == "ideaura_friend_online":
            friend_name = event.get_user_nickname()

使用 OneBot12 标准事件

from ErisPulse import sdk

@sdk.adapter.on("message")
async def handle_message(event):
    if event["platform"] == "ideaura":
        user_id = event["self"]["user_id"]
        print(f"消息来自账户: {user_id}")

@sdk.adapter.on("notice")
async def handle_notice(event):
    if event["platform"] == "ideaura":
        pass

@sdk.adapter.on("request")
async def handle_request(event):
    if event["platform"] == "ideaura":
        if event.get("detail_type") == "friend":
            user_nickname = event.get("user_nickname")
            message = event.get("ideaura_message", "")

注意事项

  1. 确保在调用 startup() 前完成所有处理器的注册
  2. 适配器使用 WebSocket 长连接接收事件,支持自动重连(固定5秒延迟)
  3. 二进制内容(图片/视频等)支持 bytes、URL、本地路径三种输入方式
  4. 文件大小限制为 10MB
  5. 自身发送的消息(isSelf: true)会被自动过滤,不会产生事件
  6. @全体(AtAll())需要管理员权限
  7. 程序退出时请调用 shutdown() 确保资源释放

参考链接

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

erispulse_ideaura-4.0.0.tar.gz (24.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

erispulse_ideaura-4.0.0-py3-none-any.whl (18.0 kB view details)

Uploaded Python 3

File details

Details for the file erispulse_ideaura-4.0.0.tar.gz.

File metadata

  • Download URL: erispulse_ideaura-4.0.0.tar.gz
  • Upload date:
  • Size: 24.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for erispulse_ideaura-4.0.0.tar.gz
Algorithm Hash digest
SHA256 70d5bfe30fb3ce7a331960a26b350d6d365d40b6d5bc32e7e949d0e384b775c0
MD5 51537b1414e549df5542956fbc9c3ff9
BLAKE2b-256 18abb4b652771afc50a32470b59c5bb5cc0233347a270992ef3ebb42634e7500

See more details on using hashes here.

Provenance

The following attestation bundles were made for erispulse_ideaura-4.0.0.tar.gz:

Publisher: python-publish.yml on ErisPulse/ErisPulse-Ideaura

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file erispulse_ideaura-4.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for erispulse_ideaura-4.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f5423c829f8847e196264a4a00e64ea32aadee08f4fcd1ac798829ef77dbf918
MD5 20157c1c14b4e153ff58096397ac1d2b
BLAKE2b-256 ebb9bdbe8e7cafa31604a573264002ecfd6e73b602d10507a7c8561c106cafe7

See more details on using hashes here.

Provenance

The following attestation bundles were made for erispulse_ideaura-4.0.0-py3-none-any.whl:

Publisher: python-publish.yml on ErisPulse/ErisPulse-Ideaura

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page