当前位置:   article > 正文

(附源码)nodejs微信机器人(可以自动回复)_node微信群聊机器人

node微信群聊机器人

使用js实现一个微信机器人,可以实现自动回复。扩展技能还有连接chatgpt或者你想接的语言模型、淘宝联盟或者其他平台的返利。

效果如下:

下面是机器人自动回复的开发步骤:

一、安装需要的包

  1. npm install wechaty 或者 yarn add wechaty
  2. npm install wechaty-puppet-wechat或者 yarn add wechaty-puppet-wechat
  3. npm install openai或者 yarn add openai
  4. npm install remark或者 yarn add remark
  5. npm install strip-markdown或者 yarn add strip-markdown
  6. npm install qrcode-terminal或者 yarn add qrcode-terminal
  7. //作者使用的版本是
  8. // "wechaty": "^1.20.2"
  9. // "openai": "^3.1.0"
  10. // "qrcode-terminal": "^0.12.0"
  11. // "wechaty-puppet-wechat": "^1.18.4"
  12. //"remark": "^14.0.2",
  13. //"strip-markdown": "^5.0.0",

二、引入并使用

  1. import { WechatyBuilder, ScanStatus, log } from 'wechaty'
  2. import qrTerminal from 'qrcode-terminal'
  3. import { defaultMessage, shardingMessage } from './sendMessage.js'
  4. // 扫码
  5. function onScan(qrcode, status) {
  6. if (status === ScanStatus.Waiting || status === ScanStatus.Timeout) {
  7. // 在控制台显示二维码
  8. qrTerminal.generate(qrcode, { small: true })
  9. const qrcodeImageUrl = ['https://api.qrserver.com/v1/create-qr-code/?data=', encodeURIComponent(qrcode)].join('')
  10. console.log('onScan:', qrcodeImageUrl, ScanStatus[status], status)
  11. } else {
  12. log.info('onScan: %s(%s)', ScanStatus[status], status)
  13. }
  14. }
  15. // 登录
  16. function onLogin(user) {
  17. console.log(`${user} has logged in`)
  18. const date = new Date()
  19. console.log(`Current time:${date}`)
  20. console.log(`Automatic robot chat mode has been activated`)
  21. }
  22. // 登出
  23. function onLogout(user) {
  24. console.log(`${user} has logged out`)
  25. }
  26. // 收到好友请求
  27. async function onFriendShip(friendship) {
  28. const frienddShipRe = /chatgpt|chat/
  29. if (friendship.type() === 2) {
  30. if (frienddShipRe.test(friendship.hello())) {
  31. await friendship.accept()
  32. }
  33. }
  34. }
  35. /**
  36. * 消息发送
  37. * @param msg
  38. * @param isSharding
  39. * @returns {Promise<void>}
  40. */
  41. async function onMessage(msg) {
  42. // 默认消息回复
  43. await defaultMessage(msg, bot)
  44. // 消息分片
  45. // await shardingMessage(msg,bot)
  46. }
  47. /**
  48. *1、初始化机器人
  49. *
  50. *这里做了环境变量的处理、如果你的是本地运行、则不需要配置CHROME_BIN
  51. *如果配置docker,则需要配置路劲CHROME_BIN
  52. **/
  53. const CHROME_BIN = process.env.CHROME_BIN ? { endpoint: process.env.CHROME_BIN } : {}
  54. export const bot = WechatyBuilder.build({
  55. name: 'WechatEveryDay',
  56. // puppet: 'wechaty-puppet-wechat4u', // 如果有token,记得更换对应的puppet
  57. puppet: 'wechaty-puppet-wechat', // 如果 wechaty-puppet-wechat 存在问题,也可以尝试使用上面的 wechaty-puppet-wechat4u ,记得安装 wechaty-puppet-wechat4u
  58. puppetOptions: {
  59. uos: true,
  60. ...CHROME_BIN
  61. },
  62. })
  63. // 扫码
  64. bot.on('scan', onScan)
  65. // 登录
  66. bot.on('login', onLogin)
  67. // 登出
  68. bot.on('logout', onLogout)
  69. // 收到消息
  70. bot.on('message', onMessage)
  71. // 添加好友
  72. bot.on('friendship', onFriendShip)
  73. // 启动微信机器人
  74. bot
  75. .start()
  76. .then(() => console.log('Start to log in wechat...'))
  77. .catch((e) => console.error(e))

三、配置发送消息的逻辑

sendMessage.js文件

  1. import { getOpenAiReply as getReply } from '../openai/index.js'
  2. import { botName, roomWhiteList, aliasWhiteList } from '../../config.js'
  3. /**
  4. * 默认消息发送
  5. * @param msg
  6. * @param bot
  7. * @returns {Promise<void>}
  8. */
  9. export async function defaultMessage(msg, bot) {
  10. const contact = msg.talker() // 发消息人
  11. // console.log('contact', contact)
  12. const receiver = msg.to() // 消息接收人
  13. const content = msg.text() // 消息内容
  14. const room = msg.room() // 是否是群消息
  15. const roomName = (await room?.topic()) || null // 群名称
  16. const alias = (await contact.alias()) || (await contact.name()) // 发消息人昵称
  17. const remarkName = await contact.alias() // 备注名称
  18. const name = await contact.name() // 微信名称
  19. const isText = msg.type() === bot.Message.Type.Text // 消息类型是否为文本
  20. const isRoom = roomWhiteList.includes(roomName) && content.includes(`${botName}`) // 是否在群聊白名单内并且艾特了机器人
  21. const isAlias = aliasWhiteList.includes(remarkName) || aliasWhiteList.includes(name) // 发消息的人是否在联系人白名单内
  22. const isBotSelf = botName === remarkName || botName === name // 是否是机器人自己
  23. // TODO 你们可以根据自己的需求修改这里的逻辑
  24. }
  25. /**
  26. * 分片消息发送
  27. * @param message
  28. * @param bot
  29. * @returns {Promise<void>}
  30. */
  31. export async function shardingMessage(message, bot) {
  32. const talker = message.talker()
  33. const isText = message.type() === bot.Message.Type.Text // 消息类型是否为文本
  34. if (talker.self() || message.type() > 10 || (talker.name() === '微信团队' && isText)) {
  35. return
  36. }
  37. const text = message.text()
  38. const room = message.room()
  39. if (!room) {
  40. console.log(`Chat GPT Enabled User: ${talker.name()}`)
  41. const response = await getChatGPTReply(text)
  42. await trySay(talker, response)
  43. return
  44. }
  45. let realText = splitMessage(text)
  46. // 如果是群聊但不是指定艾特人那么就不进行发送消息
  47. if (text.indexOf(`${botName}`) === -1) {
  48. return
  49. }
  50. realText = text.replace(`${botName}`, '')
  51. const topic = await room.topic()
  52. const response = await getChatGPTReply(realText)
  53. const result = `${realText}\n ---------------- \n ${response}`
  54. await trySay(room, result)
  55. }

config.js做一些白名单处理

  1. // 定义机器人的名称,这里是为了防止群聊消息太多,所以只有艾特机器人才会回复,
  2. export const botName = '小旅人'
  3. // 群聊白名单,白名单内的群聊才会自动回复
  4. export const roomWhiteList = ['群名称']
  5. // 联系人白名单,白名单内的联系人才会自动回复
  6. export const aliasWhiteList = []

openai/index.js配置chatgpt

  1. import { remark } from 'remark'
  2. import stripMarkdown from 'strip-markdown'
  3. import { Configuration, OpenAIApi } from 'openai'
  4. const configuration = new Configuration({
  5. apiKey: 'OPENAI_API_KEY',//你的openaikey
  6. })
  7. const openai = new OpenAIApi(configuration)
  8. export async function getOpenAiReply(prompt) {
  9. const response = await openai.createChatCompletion(
  10. {
  11. model: 'gpt-3.5-turbo',
  12. messages: [
  13. { role: 'user', content: prompt },
  14. ],
  15. },
  16. /*如果你本地报错可以尝试打开,proxy这里的代理是本地的,如果你是不是本地运行环境可以打开代理
  17. * {
  18. * proxy: {
  19. * host: '127.0.0.1',
  20. * port: 7890,
  21. * },
  22. * },*/
  23. )
  24. reply = markdownToText(response.data.choices[0].message.content)
  25. }
  26. function markdownToText(markdown) {
  27. return remark()
  28. .use(stripMarkdown)
  29. .processSync(markdown ?? '')
  30. .toString()
  31. }

最后直接node你的第一个文件,就可以在控制台扫码登陆了

源码:点击下载

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/907676
推荐阅读
相关标签
  

闽ICP备14008679号