【JS】Wechaty | NodeJS基于wechaty-puppet-hostie协议手撸一个企业级微信机器人助手

【JS】Wechaty | NodeJS基于wechaty-puppet-hostie协议手撸一个企业级微信机器人助手

需求背景

目前所在企业是一家创新型汽车后市场互联网科技有限公司,拓展汽车后市场B2C、B2B和O2O业务。

前期打造链接线下6家自营大型汽车专业维修中心,12家自营汽车配件、汽保设备销售中心,3000余家加盟汽修、汽配企业及10余万个人客户的服务平台;

由于客户维系和供应商咨询等都是基于微信群聊的。每天要在成百上千的群聊中提供服务。需要实时在群内产品报价,车架号识别,图片识别,关键字反馈。数据推送等等功能。这样的需求情况下,人力成本是巨大的。

而我作为一名前端开发工程师,平时也喜欢写技术博客和交朋友,为此我也创建了微信技术交流群和微信公众号,一般我都会在文章下面贴出公众号和我的个人二维码,给有兴趣的小伙伴们添加微信然后我再拉他们进群这些,但是不停的同意微信好友验证,再发送群邀请真的是太痛苦了,相信很多做公众号的小伙伴都和我一样,作为一名开发,这种重复劳动是绝对不能忍受的基于这种情况和公司业务情况,调研发现了并了解到了wechaty,发现其提供的功能能够覆盖到企业和个人微信,并且能够自己定制化开发符合自己需求的功能。

介绍

Wechaty 是什么

微信个人号功能非常强大和灵活,是一个非常适合用来做ChatBot的载体。它可以灵活不受限制的发送语音短信、视频、图片和文字,支持多人群聊。但是使用微信个人微信号作为ChatBot,需要通过非官方的第三方库接入微信。因为截至2018年底,微信尚无任何官方的ChatBot API发布。

Wechaty 是一个开源的的对话机器人 SDK,支持 个人号 微信。它是一个使用Typescript 构建的Node.js 应用。支持多种微信接入方案,包括网页,ipad,ios,windows, android 等。同时支持Linux, Windows, Darwin(OSX/Mac) 和 Docker 多个平台。

在GitHub上可以找到很多支持微信个人号接入的第三方类库,其中大多都是基于Web Wechat的API来实现的,如基于Python的WeixinBot,基于Node.js的Wechaty等。少数支持非Web协议的库,大多是商业私有闭源的,Wechaty是少有的开源项目支持非Web协议的类库。

只需要6行代码,你就可以 通过个人号 搭建一个 微信机器人功能 ,用来自动管理微信消息。

import { Wechaty } from 'wechaty'

Wechaty.instance()

.on('scan',        qrcode  => console.log('扫码登录:' + qrcode))

.on('login',       user    => console.log('登录成功:' + user))

.on('message',     message => console.log('收到消息:' + message))

.on('friendship',  friendship => console.log('收到好友请求:' + friendship))

.on('room-invite', invitation => console.log('收到入群邀请:' + invitation))

.start()

更多功能包括

  • 消息处理:关键词回复
  • 群管理:自动入群,拉人,踢人
  • 自动处理好友请求
  • 智能对话:通过简单配置,即可加入智能对话系统,完成指定任务
  • ... 请自行开脑洞 所有你能想到的交互模式。在微信上都有实现的可能。

每日定时拉取天气预报。

每天给你心爱的人发送早安和晚安信息。

什么成语接龙啦。快问快答等等功能

当然wechaty的功能服务并不是免费的

200/月的费用,如果你是个人开发可能会斟酌一二。但是你可以通过社区申请一个长达15天的免费token来尝试使用和开发一个小型机器人,从而决定你是否需要购买使用。

关于申请的地址我放在了这里Wechaty Token 申请及使用文档和常见问题

基于wechaty-puppet-hostie开发企业级微信机器人

目录结构

├── config

│   └── index.js // 配置文件

├── package.json

├── service

│   ├── bot-service

│   │   ├── error-service.js

│   │   ├── friendship-service.js

│   │   ├── heartbeat-service.js

│   │   ├── login-service

│   │   │   ├── function-service.js

│   │   │   └── index.js

│   │   ├── logout-service.js

│   │   ├── message-service

│   │   │   ├── function-service.js

│   │   │   └── index.js

│   │   ├── ready-service

│   │   │   ├── function-service.js

│   │   │   └── index.js

│   │   ├── room-invite-service.js

│   │   ├── room-join-service.js

│   │   ├── room-leave-service.js

│   │   ├── room-topic-service.js

│   │   └── scan-service

│   │       └── index.js

│   ├── common-service

│   │   ├── chatbot-service.js

│   │   ├── ding-service.js

│   │   └── oss-service.js

│   └── redis-service

│       └── index.js

├── src

│   └── main.js // 入口

├── store

│   └── index.js // 全局存储对象

├── utils

│   ├── oss.js // 阿里云oss认证

│   └── redis.js // redis认证登录

└── yarn.lock

src/main.js

const { Wechaty } = require('wechaty')                                          // 机器人木偶

const { onScan } = require("../service/bot-service/scan-service")               // 当机器人需要扫码登陆的时候会触发这个事件。

const { onLogin } = require("../service/bot-service/login-service")             // 当机器人成功登陆后,会触发事件,并会在事件中传递当前登陆机器人的信息

const { onLogout } = require("../service/bot-service/logout-service")           // 当机器人检测到登出的时候,会触发事件,并会在事件中传递机器人的信息。

const { onReady } = require("../service/bot-service/ready-service")             // 当所有数据加载完成后,会触发这个事件。在wechaty-puppet-padchat 中,它意味着已经加载完成Contact 和Room 的信息。

const { onMessage } = require("../service/bot-service/message-service")         // 当机器人收到消息的时候会触发这个事件。

const { onRoomInvite } = require("../service/bot-service/room-invite-service")  // 当收到群邀请的时候,会触发这个事件。

const { onRoomTopic } = require("../service/bot-service/room-topic-service")    // 当有人修改群名称的时候会触发这个事件。

const { onRoomJoin } = require("../service/bot-service/room-join-service")      // 当有人进入微信群的时候会触发这个事件。机器人主动进入某个微信群,那个样会触发这个事件。

const { onRoomleave } = require("../service/bot-service/room-leave-service")    // 当机器人把群里某个用户移出群聊的时候会触发这个时间。用户主动退群是无法检测到的。

const { onFriendship } = require("../service/bot-service/friendship-service")   // 当有人给机器人发好友请求的时候会触发这个事件。

const { onHeartbeat } = require('../service/bot-service/heartbeat-service')     // 获取机器人的心跳。

const { onError } = require('../service/bot-service/error-service')             // 当机器人内部出错的时候会触发error 事件。

const { wechatyToken } = require('../config/index') // 机器人token

const { globalData } = require('../store/index') // 全局对象

globalData.bot = new Wechaty({

puppet: 'wechaty-puppet-hostie',

puppetOptions: {

token: wechatyToken

}

});

globalData.bot

.on('scan', onScan)

.on('login', onLogin)

.on('logout', onLogout)

.on('ready', onReady)

.on('message', onMessage)

.on('room-invite', onRoomInvite)

.on('room-topic', onRoomTopic)

.on('room-join', onRoomJoin)

.on('room-leave', onRoomleave)

.on('friendship', onFriendship)

.on('heartbeat', onHeartbeat)

.on('error', onError)

.start()

具体功能实现及代码

  • 扫码登录 通过node启动后,触发onScan事件,将登录二维码打印在控制台,扫码登录

const QrcodeTerminal = require('qrcode-terminal');

const { ScanStatus } = require('wechaty-puppet')

/**

* @method onScan 当机器人需要扫码登陆的时候会触发这个事件。 建议你安装 qrcode-terminal(运行 npm install qrcode-terminal) 这个包,这样你可以在命令行中直接看到二维码。

* @param {*} qrcode

* @param {*} status

*/

const onScan = async (qrcode, status) => {

try {

if (status === ScanStatus.Waiting) {

console.log(`========================👉二维码状态:${status}👈========================nn`)

QrcodeTerminal.generate(qrcode, {

small: true

})

}

} catch (error) {

console.log('onScan', error)

}

}

module.exports = { onScan }

  • 登录成功 扫码登录成功后会触发onLogin事件,通过事件接收到登录信息和机器人信息,通过钉钉接口将登录通知发送至钉钉群内

const { notificationLoginInformation } = require('../../common-service/ding-service')

const { updateBotInfo } = require('./function-service')

const { globalData } = require('../../../store/index')

/**

* @method onLogin 当机器人成功登陆后,会触发事件,并会在事件中传递当前登陆机器人的信息

* @param {*} botInfo

*/

const onLogin = async botInfo => {

try {

console.log('========================👉 onLogin 👈========================nn')

console.log(`机器人信息:${JSON.stringify(botInfo)}nn`)

console.log(`

//

        //

      //

##DDDDDDDDDDDDDDDDDDDDDD##

## DDDDDDDDDDDDDDDDDDDD ##

## DDDDDDDDDDDDDDDDDDDD ##

## hh               hh ##     ##         ## ## ## ##   ## ## ## ###   ##   ####     ##

## hh   //       hh ##     ##         ##       ##   ##             ##   ## ##   ##

## hh   //       hh ##     ##         ##       ##   ##             ##   ##   ## ##

## hh               hh ##     ##         ##       ##   ##     ##     ##   ##   ## ##

## hh     wwww     hh ##     ##         ##       ##   ##       ##   ##   ##     ####

## hh               hh ##     ## ## ##   ## ## ## ##   ## ## ## ###   ##   ##     ###

## MMMMMMMMMMMMMMMMMMMM ##

##MMMMMMMMMMMMMMMMMMMMMM##     微信机器人名为: [${botInfo.payload.name}] 已经扫码登录成功了。nn

`)

// 全局存储机器人信息

globalData.botPayload = botInfo.payload

// 更新机器人列表

updateBotInfo()

// 机器人登录登出提醒/通知钉钉接口

notificationLoginInformation(true)

} catch (error) {

console.log(`onLogin: ${error}`)

}

}

module.exports = { onLogin }

— 机器人异常退出 当node服务异常终端,或者手机上退出机器人登录后会触发onLogout事件,同样钉钉群内通知信息,并且销毁程序中运行的一些定时器等

const { notificationLoginInformation } = require('../common-service//ding-service')

const { globalData } = require('../../store/index')

/**

* @method onLogout 当机器人检测到登出的时候,会触发事件,并会在事件中传递机器人的信息。

* @param {*} botInfo

*/

const onLogout = async botInfo => {

try {

console.log('========================👉 onLogout 👈========================')

console.log(`当bot检测到注销时,将与当前登录用户的联系人发出注销。`)

// 全局存储机器人信息

globalData.botPayload = botInfo.payload

const { updateRoomInfoTimer, chatbotSayQueueTimer } = globalData

// 机器人退出清空定时器

if (updateRoomInfoTimer) {

clearTimeout(updateRoomInfoTimer)

}

if (chatbotSayQueueTimer) {

clearInterval(chatbotSayQueueTimer)

}

// 机器人登录登出提醒/通知钉钉接口

notificationLoginInformation(false)

} catch (error) {

console.log(`error in onLogout:${error}`)

}

}

module.exports = { onLogout }

  • 消息接收处理 当微信接收到新的消息时候会触发onMessage事件,通过事件内对消息的判断,群内消息还是私聊消息等做出不同的逻辑处理。从而实现业务需求。部分代码如下

const dayjs = require('dayjs');

const { say } = require('../../common-service/chatbot-service')

const {

isCanSay,

roomIdentifyVin,

rooImageIdentifyVin,

contactIdentifyVin,

contactImageIdentifyVin,

messageProcessing,

storageRoomMessage,

storageContactMessage,

} = require('./function-service')

const {

roomMessageFeedback,

contactMessageFeedback

} = require('../../common-service/ding-service')

const { globalData } = require('../../../store/index');

const { Message } = require('wechaty');

/**

* @method onMessage 当机器人收到消息的时候会触发这个事件。

* @param {*} message

*/

const onMessage = async message => {

try {

console.log('========================👉 onMessage 👈========================nn')

// 机器人信息

const { botPayload } = globalData

// 获取发送消息的联系人

const contact = message.from()

// 获取消息所在的微信群,如果这条消息不在微信群中,会返回null

const room = message.room()

// 查看这条消息是否为机器人发送的

const isSelf = message.self()

// 处理消息内容

const text = await messageProcessing(message)

// console.log(`========================👉 处理消息后内容为:${text} 👈========================nn`)

// 消息为空不处理

if (!text) return

// 消息详情

const messagePayload = message.payload

// console.log(`========================👉 消息详情:${JSON.stringify(messagePayload)} 👈========================nn`)

// 消息联系人详情

const contactPayload = contact.payload

// console.log(`========================👉 消息联系人详情:${JSON.stringify(contactPayload)} 👈========================nn`)

// 群消息

if (room) {

console.log(`========================👉 群聊消息 👈========================nn`)

// 房间详情

const roomPayload = room.payload

// console.log(`========================👉 房间详情:${JSON.stringify(roomPayload)} 👈========================nn`)

console.log(`消息时间:${dayjs(messagePayload.timestamp).format('YYYY-MM-DD HH:mm:ss')}nn群聊名称:${roomPayload.topic}nn微信名称:${contactPayload.name}nn微信类型:${contactPayload.type}nn备注昵称:${contactPayload.alias}nn消息内容:${text}nn消息类型:${messagePayload.type}nn`);

// 存储消息内容

const storeMessage = {

category: 'room',                               // 消息类别,room为群聊消息, contact为个人消息。

isSelf: isSelf,                                 // 是否自己发送的消息

messageId: messagePayload.id,                   // 消息id

messageToId: messagePayload.toId,               // 消息接收者id

messageType: messagePayload.type,               // 消息类型

messageText: text,                              // 消息内容

messageTimestamp: messagePayload.timestamp,     // 消息时间戳

messageTime: dayjs(messagePayload.timestamp).format('YYYY-MM-DD HH:mm:ss'), // 消息时间

roomOwnerId: roomPayload.ownerId,               // 群聊群主id

roomTopic: roomPayload.topic,                   // 群聊名称

roomId: roomPayload.id,                         // 群聊名称

contactId: contactPayload.id,                   // 消息发送者id

contactName: contactPayload.name,               // 消息发送者昵称

contactType: contactPayload.type,               // 消息发送者类型

contactAvatar: contactPayload.avatar,           // 消息发送者头像

contactAlias: contactPayload.alias,             // 消息发送者备注

}

// redis中存储群聊消息内容

storageRoomMessage(roomPayload, storeMessage)

// 消息是机器人自己发的 或者 消息发送到wechaty接收间隔大于半个小时

if (isSelf || message.age() > 1800) return

// 判断当前机器人在群中是否可以说话

if (!await isCanSay(roomPayload)) return

// 有人@我

const isMentionSelf = await message.mentionSelf()

// 如果有人@我

if (isMentionSelf) {

console.log('this message were mentioned me! [You were mentioned] tip ([有人@我]的提示)')

// 获取消息内容,拿到整个消息文本,去掉 @名字

const sendText = text.replace("@" + botPayload.name, "")

if (sendText == '图片') {

// 通过不同的关键字进行业务处理逻辑

say({

messageType: 6,

sender: room,

messageInfo: {

fromUrl: 'https://wework.qpic.cn/wwhead/nMl9ssowtibVGyrmvBiaibzDqfABIxIv4ic0FyQRxgQVpUIaqlePxrDW8L2qPB3WnHSZclgQ1D1QhDs/0'

}

})

return

}

if (sendText == '分享') {

// 通过不同的关键字进行业务处理逻辑

say({

messageType: 14,

sender: room,

messageInfo: {

urlLink: {

description: 'WeChat Bot SDK for Individual Account, Powered by TypeScript, Docker, and Love',

thumbnailUrl: 'https://avatars0.githubusercontent.com/u/25162437?s=200&v=4',

title: 'Welcome to Wechaty',

url: 'https://github.com/wechaty/wechaty',

}

}

})

return

}

if (sendText == '名片') {

say({

messageType: 3,

sender: room,

messageInfo: {

contactCard: 'contactId'

}

})

return

}

if (sendText == '小程序') {

say({

messageType: 9,

sender: room,

messageInfo: {

miniProgram: {

appid: 'xxxxx',

title: '我正在使用Authing认证身份,你也来试试吧',

pagePath: 'pages/home/home.html',

description: '身份管家',

thumbUrl: '30590201000452305002010002041092541302033d0af802040b30feb602045df0c2c5042b777875706c6f61645f31373533353339353230344063686174726f6f6d3131355f313537363035393538390204010400030201000400',

thumbKey: '42f8609e62817ae45cf7d8fefb532e83',

}

}

})

return

}

// 群里正常说话

} else {

// 重构机器人功能测试群

if (roomPayload.id !== 'R:10696051737544800') {

console.log(`========================👉 不是测试群消息,不处理群内业务逻辑 👈========================nn`)

return

}

if (/^[a-zA-Z0-9]{17}$/.test(text)) {

// 群聊识别vin反馈

roomIdentifyVin(room, contact, message, text)

return

}

// 群内消息以[弱]开头的信息为反馈信息。反馈给后台

if (text.indexOf('[弱]') === 0) {

// 群消息反馈

roomMessageFeedback(room, contact, text)

return

}

// 如果是图片,则图片解析vin

if (messagePayload.type === Message.Type.Image) {

// 群聊图片识别vin反馈

rooImageIdentifyVin(room, contact, message)

}

}

// 私聊消息

} else {

console.log(`========================👉 私聊消息 👈========================nn`)

console.log(`消息时间:${dayjs(messagePayload.timestamp).format('YYYY-MM-DD HH:mm:ss')}nn微信名称:${contactPayload.name}nn微信类型:${contactPayload.type}nn备注昵称:${contactPayload.alias}nn消息内容:${text}nn消息类型:${messagePayload.type}nn`);

// 存储消息内容

const storeMessage = {

category: 'contact',                            // 消息类别,room为群聊消息, contact为个人消息。

isSelf: isSelf,                                 // 是否自己发送的消息

messageId: messagePayload.id,                   // 消息id

messageToId: messagePayload.toId,               // 消息接收者id

messageType: messagePayload.type,               // 消息类型

messageText: text,                              // 消息内容

messageTimestamp: messagePayload.timestamp,     // 消息时间戳

messageTime: dayjs(messagePayload.timestamp).format('YYYY-MM-DD HH:mm:ss'), // 消息时间

contactId: contactPayload.id,                   // 消息发送者id

contactName: contactPayload.name,               // 消息发送者昵称

contactType: contactPayload.type,               // 消息发送者类型

contactAvatar: contactPayload.avatar,           // 消息发送者头像

contactAlias: contactPayload.alias,             // 消息发送者备注

}

// redis中存储私聊消息内容

storageContactMessage(contact, storeMessage)

// 消息是机器人自己发的 或者 消息发送到wechaty接收间隔大于半个小时

if (isSelf || message.age() > 1800) return

if (/^[a-zA-Z0-9]{17}$/.test(text)) {

// 私聊识别vin反馈

contactIdentifyVin(contact, message, text)

return

}

// 私聊消息以[弱]开头的信息为反馈信息。反馈给后台

if (text.indexOf('[弱]') === 0) {

// 私聊消息反馈

contactMessageFeedback(contact, text)

return

}

// 如果是图片,则图片解析vin

if (messagePayload.type === Message.Type.Image) {

// 私聊图片解析vin反馈

contactImageIdentifyVin(contact, message)

}

}

} catch (error) {

console.log(`onMessage:${error}`)

}

}

module.exports = { onMessage }

至于其他的一些生命周期以及钩子函数。大家可以参考文档做出属于自己的应用机器人

封装say方法

因为say()方法会在多处调用,并且要根据不同的消息类型发送的内容做出不同的数据处理。大家以后也会遇到,因此这里将我封装的一个say方法展示给大家用于参考

const { MiniProgram, UrlLink, FileBox } = require('wechaty')

const dayjs = require('dayjs');

const { DelayQueueExector } = require('rx-queue');

const { redisHexists, redisHset, redisHget, redisSet, redisLpush } = require('../redis-service/index')

const { globalData } = require('../../store/index')

const delay = new DelayQueueExector(10000);

/**

* @method say 机器人发送消息

* @param {*} messageType   消息类型   7文本,1文件,6图片,3个人名片,14卡片链接 9小程序

* @param {*} sender       来源   房间 || 个人 实例对象

* @param {*} messageInfo 内容

*/

/**

* messageInfo 数据结构

*     tetx: string       文本消息必传

*     fileUrl: string     文件消息必传

*     imageUr: string     图片消息必传

*     cardId: string     个人名片消息必传

*     linkInfo: object   卡片消息必传

*         description: string     描述

*         thumbnailUrl: string   缩略图地址

*         title: string           标题

*         url: string             跳转地址

*/

async function say({ messageType, sender, messageInfo }) {

// console.log(messageType);

// console.log(sender);

// console.log(messageInfo);

try {

return new Promise(async (resolve, reject) => {

// 机器人信息

const { bot } = globalData

// 枚举消息类型

const MessageType = {

text: 7,            // 文本

fromFile: 1,        // 文件

fromUrl: 6,         // 图片

contactCard: 3,     // 个人名片

urlLink: 14,        // 卡片链接

miniProgram: 9,     // 小程序

}

// 内容不存在

if (!messageInfo) {

return

}

// 要发送的消息内容

let content

switch (messageType) {

// 文本 7

case MessageType.text:

content = messageInfo.text

break;

// 文件 1

case MessageType.fromFile:

content = FileBox.fromFile(messageInfo.fromFile)

break;

// 图片 6

case MessageType.fromUrl:

content = FileBox.fromUrl(messageInfo.fromUrl)

break;

// 个人名片 3

case MessageType.contactCard:

content = await bot.Contact.load('1688853777824721')

break;

// 链接 14

case MessageType.urlLink:

content = new UrlLink({

description: 'WeChat Bot SDK for Individual Account, Powered by TypeScript, Docker, and Love',

thumbnailUrl: 'https://avatars0.githubusercontent.com/u/25162437?s=200&v=4',

title: 'Welcome to Wechaty',

url: 'https://github.com/wechaty/wechaty',

})

break;

// 小程序 9

case MessageType.miniProgram:

content = new MiniProgram({

appid: 'wx60090841b63b6250',

title: '我正在使用Authing认证身份,你也来试试吧',

pagePath: 'pages/home/home.html',

description: '身份管家',

thumbUrl: '30590201000452305002010002041092541302033d0af802040b30feb602045df0c2c5042b777875706c6f61645f31373533353339353230344063686174726f6f6d3131355f313537363035393538390204010400030201000400',

thumbKey: '42f8609e62817ae45cf7d8fefb532e83',

});

break;

default:

break;

}

delay.execute(async () => {

sender.say(content)

.then(value => {

console.log(`========================👉 机器人回复 👈========================nn`)

resolve()

})

.catch(reason => {

console.log(`========================😢 机器人发送消息失败 😢========================nn`, reason)

})

})

})

} catch (error) {

console.log('error in say', error);

}

}

module.exports = {

say

}

对了,对于onMessage事件中消息格式的判断我也做了一层封装,这里给大家提供参考。

/**

* @method messageProcessing 处理消息内容

* @param {*} message

*/

async function messageProcessing(message) {

try {

return new Promise(async (resolve, reject) => {

console.log(`========================👉 messageProcessing 👈========================nn`)

// 消息详情

const messagePayload = message.payload

// 获取消息的文本内容。

let text = message.text()

/**

* Unknown: 0,

Attachment: 1,

Audio: 2,

Contact: 3,

ChatHistory: 4,

Emoticon: 5,

Image: 6,

Text: 7,

Location: 8,

MiniProgram: 9,

GroupNote: 10,

Transfer: 11,

RedEnvelope: 12,

Recalled: 13,

Url: 14,

Video: 15

*/

// 消息类型

switch (messagePayload.type) {

// 附件 0

case Message.Type.Unknown:

console.log(`========================👉 消息类型为未知消息:${messagePayload.type} 👈========================nn`)

text = '[你收到一个未知消息,请在手机上查看]'

break;

// 附件 1

case Message.Type.Attachment:

console.log(`========================👉 消息类型为附件:${messagePayload.type} 👈========================nn`)

// 暂时不知道怎么处理

text = '[你收到一个附件,请在手机上查看]'

break;

// 音频 2

case Message.Type.Audio:

console.log(`========================👉 消息类型为音频:${messagePayload.type} 👈========================nn`)

text = '[你收到一条语音消息,请在手机上查看]'

break;

// 个人名片 3

case Message.Type.Contact:

console.log(`========================👉 消息类型为个人名片:${messagePayload.type} 👈========================nn`)

text = '[你收到一张个人名片,请在手机上查看]'

break;

// 聊天记录 4

case Message.Type.ChatHistory:

console.log(`========================👉 消息类型为聊天记录:${messagePayload.type} 👈========================nn`)

text = '[你收到聊天记录,请在手机上查看]'

break;

// 表情符号 5

case Message.Type.Emoticon:

console.log(`========================👉 消息类型为表情符号:${messagePayload.type} 👈========================nn`)

text = '[你收到表情符号,请在手机上查看]'

// 暂时不知道怎么处理

break;

// 图片 6

case Message.Type.Image:

console.log(`========================👉 消息类型为图片:${messagePayload.type} 👈========================nn`)

// 上传图片至阿里云获取图片地址

text = await addImageOss(message)

break;

// 文本 7

case Message.Type.Text:

console.log(`========================👉 消息类型为文本:${messagePayload.type} 👈========================nn`)

// 去空格换行

text = text.replace(/s+/g, '')

break;

// 位置 8

case Message.Type.Location:

console.log(`========================👉 消息类型为位置:${messagePayload.type} 👈========================nn`)

text = '[你收到一条图片消息,请在手机上查看]'

break;

// 小程序 9

case Message.Type.MiniProgram:

console.log(`========================👉 消息类型为小程序:${messagePayload.type} 👈========================nn`)

text = '[你收到一个小程序消息,请在手机上查看]'

break;

// GroupNote 10

case Message.Type.GroupNote:

console.log(`========================👉 消息类型为GroupNote:${messagePayload.type} 👈========================nn`)

text = '[你收到一个GroupNote,请在手机上查看]'

break;

// Transfer 11

case Message.Type.Transfer:

console.log(`========================👉 消息类型为Transfer:${messagePayload.type} 👈========================nn`)

text = '[你收到一个Transfer,请在手机上查看]'

break;

// 红包 12

case Message.Type.RedEnvelope:

console.log(`========================👉 消息类型为红包:${messagePayload.type} 👈========================nn`)

text = '[你收到一个红包,请在手机上查看]'

break;

// Recalled 13

case Message.Type.Recalled:

console.log(`========================👉 消息类型为Recalled:${messagePayload.type} 👈========================nn`)

text = '[你收到一个Recalled,请在手机上查看]'

break;

// 链接地址 14

case Message.Type.Url:

console.log(`========================👉 消息类型为链接地址:${messagePayload.type} 👈========================nn`)

// 暂时不知道怎么处理

text = '[你收到一条链接消息,请在手机上查看]'

break;

// 视频 15

case Message.Type.Video:

console.log(`========================👉 消息类型为视频:${messagePayload.type} 👈========================nn`)

text = '[你收到一个视频消息,请在手机上查看]'

break;

default:

text = ''

break;

}

resolve(text)

})

} catch (error) {

console.log('error in messageProcessing', error);

}

}

为什么这样做一层封装处理,是因为我们的业务需求要将聊天内容进行redis和mysql数据存储。方便以后数据订正和查询使用。

实现的功能

基于wechaty我们实现的功能有那些呢?

— 根据关键词,输入车辆 VIN 对应反馈出车型配件信息,并且将公司所在群区域的店铺配件库存信息反馈出来

  • 根据图片识别车辆 VIN,然后识别 VIN 对应反馈出车型配件信息,并且将公司所在群区域的店铺配件库存信息反馈出来,图片解释接口采用的百度的接口
  • 关键词指令绑定群信息。根据不同指令进行群配置。
  • redis 存储机器人信息。将群信息存储并同步在 redis 和 mysql 中。后台配置对应群是否开启某些功能等等。
  • 每月月初定时发送每个群的采购信息。销量信息等等。
  • 机器人登录调用钉钉接口,在钉钉群内发布机器人登录或者退出的提醒信息
  • 群邀请自动通过,入群以后做出相应数据存储逻辑判断功能设置等
  • 好友申请自动通过,关键字申请自动邀请入不同的群,功能覆盖等等
  • 等等功能。 以上功能支持还在不断开发和摸索中。但已经满足目前我们的业务需求。

最后

你如果想用我这些东西,拉下代码config.js里换下token和一些配置信息就可以,当然我在不停更新,功能会越来越多,所以仓库中代码和文中会有些不一样,使用时简单看下代码,都写了详细注释,也很简单,但是因为代码中很多地方涉及到来企业敏感信息。我只好重新写来一份最小可执行的demo,大家仅供参考。

❤️ 看完帮个忙

如果你觉得这篇内容对你挺有启发,我想邀请你帮我个小忙:

  1. 点赞,让更多的人也能看到这篇内容(收藏不点赞,都是耍流氓 -_-)

  2. 关注公众号「番茄学前端」,我会定时更新和发布前端相关信息和项目案例经验供你参考。

  3. 加个好友, 虽然帮不上你大忙,但是一些业务问题大家可以探讨交流。 【JS】Wechaty | NodeJS基于wechaty-puppet-hostie协议手撸一个企业级微信机器人助手

以上是 【JS】Wechaty | NodeJS基于wechaty-puppet-hostie协议手撸一个企业级微信机器人助手 的全部内容, 来源链接: utcz.com/a/94132.html

回到顶部