python-archieve-projects/WechatBot/node_modules/wechaty-puppet-xp/dist/cjs/examples/ripe-wechaty.js

124 lines
4.9 KiB
JavaScript
Executable File

"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Wechaty - Conversational RPA SDK for Chatbot Makers.
* - https://github.com/wechaty/wechaty
*/
const wechaty_1 = require("wechaty");
const file_box_1 = require("file-box");
const puppet_xp_js_1 = require("../src/puppet-xp.js");
const qrcode_terminal_1 = __importDefault(require("qrcode-terminal"));
const promises_1 = __importDefault(require("timers/promises"));
function onScan(qrcode, status) {
if (qrcode) {
const qrcodeImageUrl = [
'https://wechaty.js.org/qrcode/',
encodeURIComponent(qrcode),
].join('');
console.info('StarterBot', 'onScan: %s(%s) - %s', status, qrcodeImageUrl);
qrcode_terminal_1.default.generate(qrcode, { small: true }); // show qrcode on console
console.info(`[${status}] ${qrcode}\nScan QR Code above to log in: `);
}
else {
console.info(`[${status}]`);
}
}
async function onLogin(user) {
wechaty_1.log.info('StarterBot', '%s login', user);
const roomList = await bot.Room.findAll();
console.info(roomList.length);
const contactList = await bot.Contact.findAll();
console.info(contactList.length);
}
function onLogout(user) {
wechaty_1.log.info('StarterBot', '%s logout', user);
}
async function onMessage(msg) {
wechaty_1.log.info('StarterBot', msg.toString());
if (msg.text() === 'ding') {
await msg.say('dong');
}
if (msg.type() === wechaty_1.types.Message.Image) {
const img = await msg.toImage();
const thumbFile = await img.thumbnail();
wechaty_1.log.info('thumbFile', thumbFile.name);
await thumbFile.toFile(`${process.cwd()}/cache/${thumbFile.name}`, true);
// await timersPromise.setTimeout(3000)
// console.info(img)
const hdFile = await img.hd();
wechaty_1.log.info('hdFile', hdFile.name);
await hdFile.toFile(`${process.cwd()}/cache/${hdFile.name}`, true);
// setTimeout(msg.wechaty.wrapAsync(
// async function () {
// const imginfo = await msg.toFileBox()
// console.info(imginfo)
// },
// ), 500)
}
if (msg.type() === wechaty_1.types.Message.Emoticon) {
const emoticon = await msg.toFileBox();
await emoticon.toFile(`${process.cwd()}/cache/${emoticon.name}`, true);
await promises_1.default.setTimeout(1000);
console.info(emoticon);
// setTimeout(msg.wechaty.wrapAsync(
// async function () {
// const imginfo = await msg.toFileBox()
// console.info(imginfo)
// },
// ), 500)
}
if (msg.text() === 'file') {
const newpath = 'C:\\Users\\wechaty\\Documents\\GitHub\\wechat-openai-qa-bot\\cache\\data1652178575294.xls';
wechaty_1.log.info('newpath==================================', newpath);
const fileBox = file_box_1.FileBox.fromFile(newpath);
await msg.say(fileBox);
}
}
const puppet = new puppet_xp_js_1.PuppetXp();
const bot = wechaty_1.WechatyBuilder.build({
name: 'ding-dong-bot',
puppet,
});
bot.on('scan', onScan);
bot.on('login', onLogin);
bot.on('logout', onLogout);
bot.on('message', onMessage);
bot.on('room-join', async (room, inviteeList, inviter) => {
// "超超超哥"邀请"瓦力"加入了群聊
// "超超超哥"邀请你加入了群聊,群聊参与人还有:瓦力
// "luyuchao"邀请"瓦力"加入了群聊
// 你邀请"瓦力"加入了群聊
const nameList = inviteeList.map(c => c.name()).join(',');
wechaty_1.log.info(`Room ${await room.topic()} got new member ${nameList}, invited by ${inviter}`);
});
bot.on('room-leave', async (room, leaverList, remover) => {
// 你被"luyuchao"移出群聊
// 你将"瓦力"移出了群聊
const nameList = leaverList.map(c => c.name()).join(',');
wechaty_1.log.info(`Room ${await room.topic()} lost member ${nameList}, the remover is: ${remover}`);
});
bot.on('room-topic', async (room, topic, oldTopic, changer) => {
// "luyuchao"修改群名为“北辰香麓欣麓园抗疫”
// 你修改群名为“大师是群主”
wechaty_1.log.info(`Room ${await room.topic()} topic changed from ${oldTopic} to ${topic} by ${changer.name()}`);
});
bot.on('room-invite', async (roomInvitation) => {
wechaty_1.log.info(JSON.stringify(roomInvitation));
// "超超超哥"邀请你加入了群聊,群聊参与人还有:瓦力
try {
wechaty_1.log.info('received room-invite event.');
await roomInvitation.accept();
}
catch (e) {
console.error(e);
}
});
bot.start()
.then(() => {
return wechaty_1.log.info('StarterBot', 'Starter Bot Started.');
})
.catch(console.error);
//# sourceMappingURL=ripe-wechaty.js.map