npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

node-qqbot

v1.0.2

Published

QQBot adapter for node-mirai

Downloads

12

Readme

Node-QQBot

NPM Version

腾讯官方 QQ 机器人 平台 API 的 NodeJS 实现, 接口大致与 node-mirai-sdk 相仿

快速入门

注册官方平台

首先你需要到 QQ开放平台 注册并创建一个机器人, 然后在机器人管理端的开发→开发设置中找到 机器人QQ号 AppID AppSecret(首次使用需要重新生成, 请注意保管好该Secret)并保存下来

安装

npm install node-qqbot # use npm
yarn add node-qqbot # use yarn

开始使用

// index.js
const { resolve } = require('path')
const { createReadStream } = require('fs')
const Bot = require('node-qqbot')

const qq = 'YOUR_QQ'
const appId = 'YOUR_APP_ID'
const clientSecret = 'YOUR_CLIENT_SECRET'

const bot = new Bot({
  qq,
  appId,
  clientSecret,
  // 临时文件保存的位置
  tmpdir: resolve(__dirname, 'tmp'),
  // idmap和urlmap保存的位置
  dbdir = resolve(__dirname, 'db'),
  // 用于发送 url, 需要 ssl, 非443端口/非https需要自行设置转发
  server: {
    host: 'server_address',
    port: 443,
    https: {
      crt: resolve(__dirname, 'my_https_keys/server_address.crt'),
      key: resolve(__dirname, 'my_https_keys/server_address.key'),
    }
  },
  isPrivate: false,
  // 新创建的机器人强制公网ip, 开发时需要设置sandbox=true才能在非公网环境下连接
  sandbox: true,
})
bot.onMessage(async message => {
  console.log('onMessage', message)
  /**
   * 收到的信息大致如下
   * {
   *   type: 'FriendMessage',
   *   messageId: 1,
   *   sender: {
   *     id: 12345,             // 由本地自动生成的int id, 不是qq号
   *     name: 'ABCDABCDABCD',  // 这是平台返回的原始openid
   *     remark: 'ABCDABCDABCD' // 同上, 用户头像`https://q.qlogo.cn/qqapp/${appId}/${realId}/640`
   *   },
   *   messageChain: [ { type: 'Plain', text: 'test' } ],
   *   reply: [AsyncFunction: reply],
   *   __meta: // 内部使用,无需关心
   * }
   */
  // 复读用户发的内容
  message.reply(message.messageChain)
  // 回复文字
  message.reply('测试文字')
  const imageToSend = resolve(__dirname, 'test.jpg')
  // 发送图片, 注意要把 message 作为参数传进去, 发给好友和群的接口是不同的
  bot.sendImageMessage(imageToSend, message)
  // 先上传图片获取图片信息
  const image = await bot.uploadImage(imageToSend, message)
  const image2 = await bot.uploadImage(createReadStream(), message)
  // 回复图文
  // 注意图片只能一张一张发,所以图文混合会分段发送,单次发送是一张图片+一段文字
  // 平台规定单条消息最多只能回复5次, 多了会报错
  message.reply([image, '一些文字', image2, '另一些文字'])
})
node index.js

测试

export DEBUG=qqbot # macOS / Linux / Unix
$env:DEBUG="qqbot" # Windows PowerShell
node index.js

其他说明

关于 idmap

由于官方 API 返回的 openid 是一串字符串, 大部分机器人框架是用的是 qq 号, 为了便于使用, QQBot 内部使用 idmap 来将 openid 映射到唯一的 int id.

如果你需要自己更新 id (比如让用户自行绑定 qq 号), 可以直接引入 idmap 模块进行修改.

const idmap = require('node-qqbot/src/db/idmap')
// 如果你修改了机器人配置中的 dbdir, 则需要先传入 _baseDir
// idmap._baseDir = '...'
// 获取 int id 对应的 openid
const realId = await idmap.getRealId(12345)
// 获取 openid 对应的 int id, 如果不存在会立即创建一个新的 int id
const virtualId = await idmap.getVirtualId('ABCDABCD')
// 更新 int id, 原本 id 是 12345 的用户现在会变成 23456
await idmap.updateVirtualId(12345, 23456)

node-qqbot 内部使用 sqlite3 存储这些数据, 如果需要修改数据库, 你可以自行引入 sqlite3 进行操作.

关于 urlmap

官方要求机器人发送的 url 必须是管理端设置好的消息 url (管理端→开发→开发设置→消息url设置), QQBot 会自动转化 url 为你的本地 url, 需要的配置为

const bot = new Bot({
  server: {
    host: 'server_address',
    port: 443,
    https: {
      key: '/path/to/your/https.key',
      crt: '/path/to/your/https.crt',
    }
  },
  // ...
})

由于官方强制 https, 你需要传入 https 证书, 或者自建 https 服务并把 /url 重定向到对应的 ${server.host}:${server.port}/url.

请注意: 你的 server_address 必须是已ICP备案的域名, 且 ssl 证书不能过期. 邮箱也会被当成url, 别发

你可以从 node-qqbot/src/db/urlmap 中获得相关的接口用于管理你自己的 url

const urlmap = require('node-qqbot/src/db/urlmap')
// 如果你修改了机器人配置中的 dbdir, 则需要先传入 _baseDir
// urlmap._baseDir = '...'
// 获取 url 对应的 hash, 没有会创建新的
const hash = await urlmap.getHash(url)
// 获取 hash 对应的 url, 没有找到时返回的是 { error: true }
const url = await urlmap.getUrl(hash)