Skip to main content

NoneBot2 plugin for sending text and image messages to receipts-spooler

Project description

nonebot_plugin_receipts

一个面向 NoneBot2 的独立插件,用来把发送给 Bot 的文本和图片消息转成 ESC/POS 原始打印数据,再投递给 receipts-spooler

当前实现面向 OneBot v11 适配器,适合 QQ 机器人消息场景。

功能

  • 提供 ticketreceipt 指令,二者互为别名
  • 支持命令后直接附带文本和图片
  • 如果命令后没有内容,会继续追问下一条消息
  • 将文本和图片合成为一张热敏小票图,再编码为 ESC/POS 栅格打印命令
  • 通过 receipts-spooler/api/v1/task/push_raw 接口提交打印任务

安装

cd nonebot_plugin_receipts
pip install -e .

然后在你的 NoneBot2 项目中加载插件:

nonebot.load_plugin("nonebot_plugin_receipts")

配置

插件通过 NoneBot 全局配置读取以下环境变量:

变量 默认值 说明
RECEIPTS_SPOOLER_URL http://127.0.0.1:8000 receipts-spooler 服务地址
RECEIPTS_SPOOLER_TOKEN 对应 X-Spooler-Token
RECEIPTS_SPOOLER_TIMEOUT 5.0 调用 spooler 的 HTTP 超时
RECEIPT_IMAGE_FETCH_TIMEOUT 5.0 下载图片消息内容时的 HTTP 超时
RECEIPT_RENDER_MODE raster 渲染模式,可选 raster/hybrid
RECEIPT_PRINTER_WIDTH 576 小票像素宽度,最大 576
RECEIPT_TEMPLATE_PATH 可选,指向渲染模板 JSON 文件
RECEIPT_FONT_PATH 可选,建议配置支持中文的 TTF/OTF 字体
RECEIPT_FONT_SIZE 24 文本字号
RECEIPT_LINE_SPACING 6 文本行距
RECEIPT_SECTION_GAP 6 文本和图片之间的垂直间距
RECEIPT_SESSION_TIMEOUT_SECONDS 120 等待用户补发打印内容的超时时间(秒)
RECEIPT_FEED_LINES 4 打印后走纸行数
RECEIPT_ENABLE_CUT true 是否附加切纸命令
RECEIPT_ALLOWED_USER_IDS 允许提交打印任务的 QQ 号白名单
RECEIPT_ALLOWED_GROUP_IDS 允许提交打印任务的 QQ 群号白名单

渲染模式

  • raster:把文本和图片一起渲染成整张位图,再输出 ESC/POS 栅格数据,兼容性最好。
  • hybrid:文本走打印机原生字符输出,图片仍走位图,能减少大量文字被渲染成图片。

hybrid 模式下,中文是否正常输出取决于打印机对中英文字符集的支持情况。

白名单

可以通过以下配置限制谁能提交打印任务:

  • RECEIPT_ALLOWED_USER_IDS:允许提交的 QQ 号白名单
  • RECEIPT_ALLOWED_GROUP_IDS:允许提交的 QQ 群号白名单

两个配置都为空时,默认允许所有会话使用。
只要命中任意一个条件就会放行:

  • 发送者 QQ 号在 RECEIPT_ALLOWED_USER_IDS
  • 当前群号在 RECEIPT_ALLOWED_GROUP_IDS

未命中白名单的消息会被直接忽略,不会回复任何提示。

环境变量可以写成逗号分隔,例如:

RECEIPT_ALLOWED_USER_IDS=123456,234567
RECEIPT_ALLOWED_GROUP_IDS=345678,456789

渲染模板

如果你想单独调整小票布局,可以配置 RECEIPT_TEMPLATE_PATH 指向一个 JSON 文件。项目根目录里附带了一个示例文件 receipt_template.example.json

支持的模板字段:

字段 默认值 说明
margin 16 左右和顶部内边距
header_enabled false 是否渲染页眉
header_text {sender_name}({sender_id}) 页眉文字模板
footer_enabled true 是否渲染页脚
footer_text {sender_name}({sender_id}) @ {timestamp} 页脚文字模板
footer_timestamp_format %Y-%m-%d %H:%M:%S 时间格式
footer_timezone_offset_hours 8 页脚时间使用的时区偏移

header_textfooter_text 都支持这些占位符:

  • {timestamp}
  • {sender_name}
  • {sender_id}

header 存在时,会在页眉和正文之间绘制一条全宽横线;当 footer 存在时,会在正文和页脚之间再绘制一条全宽横线。

示例:

{
  "margin": 24,
  "header_enabled": true,
  "header_text": "来自 {sender_name}({sender_id})",
  "footer_enabled": true,
  "footer_text": "{sender_name}({sender_id}) 打印于 {timestamp}",
  "footer_timestamp_format": "%Y/%m/%d %H:%M",
  "footer_timezone_offset_hours": 8
}

使用

直接在命令后附带内容:

/ticket 今晚睡大觉

或者:

  1. 发送 /ticket/receipt
  2. 按提示继续发送一条包含文本、图片或两者混合的消息

插件会把纯文本和图片消息段一起打印,并在提交成功后回复当前队列长度。

如果命令后没有直接附带内容,插件会提示用户继续发送,并明确说明多久后超时。
如果用户在该时间窗口后才继续回复,插件会提示“已超时”,并直接结束本次等待;此时需要重新发送 /ticket/receipt 开始新的打印流程。

RECEIPT_SESSION_TIMEOUT_SECONDS 的实际生效时间不会超过 NoneBot 全局 SESSION_EXPIRE_TIMEOUT,建议两者保持一致或让前者更小。

文本里支持类似 Markdown 的多级标题语法:

  • # 一级标题
  • ## 二级标题
  • ### 三级标题
  • 一直到 ###### 六级标题

raster 模式下会使用更大的字号和额外留白;在 hybrid 模式下会尽量映射为 ESC/POS 的加粗和放大文本。
如果需要打印以 # 开头的普通文本,可以写成 \# 普通文本

手动实机测试(不启动 NoneBot)

可直接运行脚本把测试内容渲染为 ESC/POS 并提交到 receipts-spooler

python scripts/manual_print_test.py --mode hybrid --spooler-url http://127.0.0.1:8000

常用参数:

  • --mode hybrid|raster:渲染模式,默认 hybrid
  • --text:测试文本(支持 # 标题语法)
  • --spooler-url:spooler 地址
  • --spooler-token:可选鉴权 token
  • --printer-width:打印宽度(像素)
  • --feed-lines:走纸行数
  • --cut:追加切纸命令(默认不切)
  • --divider-only:只打印一条分割线(用于实机校准)
  • --divider-chars:分割线字符数(默认按 printer_width / 12

也支持通过环境变量传参:

  • RENDER_MODE
  • SPOOLER_URL
  • SPOOLER_TOKEN
  • PRINTER_WIDTH
  • FEED_LINES
  • SENDER_NAME
  • SENDER_ID

该脚本仅用于手动联调与实机验证,不参与自动化测试流程。

注意事项

  • 如果你需要打印中文,最好配置 RECEIPT_FONT_PATH 指向支持中文的字体文件。
  • 图片消息需要 OneBot 事件中带有可访问的 url,或消息段 filebase64://... / http(s)://...
  • 本插件不会直接连接打印机,只负责把任务提交到 receipts-spooler

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

nonebot_plugin_receipts-0.2.3.tar.gz (25.0 kB view details)

Uploaded Source

Built Distribution

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

nonebot_plugin_receipts-0.2.3-py3-none-any.whl (21.3 kB view details)

Uploaded Python 3

File details

Details for the file nonebot_plugin_receipts-0.2.3.tar.gz.

File metadata

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

File hashes

Hashes for nonebot_plugin_receipts-0.2.3.tar.gz
Algorithm Hash digest
SHA256 d3fd0eff7a153513d48e83df73bb24aeb746fbf783608716743397baccfcdd99
MD5 8bc6a4fd30cd16a92fc667cf16495ff1
BLAKE2b-256 27f8369ca088a1c99ab4f6c71ea890d80c6ddab771cf73f8790bea3e35f2e5b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for nonebot_plugin_receipts-0.2.3.tar.gz:

Publisher: pypi-publish.yml on Effect-Wei/nonebot_plugin_receipts

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

File details

Details for the file nonebot_plugin_receipts-0.2.3-py3-none-any.whl.

File metadata

File hashes

Hashes for nonebot_plugin_receipts-0.2.3-py3-none-any.whl
Algorithm Hash digest
SHA256 c411bbe6dc72f2a124afd797f0b1ddae206425a328d473260b545728861a0f14
MD5 e2b3192b77693d01e848b602972ebde5
BLAKE2b-256 5c78326cb15ed5c004e3d64bc089b8b8a6019727760a6fc28d2351bf52d78fc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for nonebot_plugin_receipts-0.2.3-py3-none-any.whl:

Publisher: pypi-publish.yml on Effect-Wei/nonebot_plugin_receipts

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