代码拉取完成,页面将自动刷新
同步操作将从 xyz9836/mp-push-leancloud 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
const router = require('express').Router()
const { wxMiddlewareBuilder } = require('./utils')
const { User, Channel } = require('./models')
router.use('/wx', wxMiddlewareBuilder(async (message, req, res, next) => {
const { FromUserName, Content } = message
console.log('收到微信消息:', { message })
let user = new User(FromUserName)
await user.login()
const params = Content.trim().split(' ')
if (params[0] !== 'link') {
res.reply({
type: 'text',
content: `目前仅支持 link 命令。`
})
} else {
let channelName = params[1]
if (channelName) {
try {
let channel = new Channel(channelName)
await channel.init()
await user.linkChannel(channel)
} catch (e) {
console.error(e)
return res.reply({
type: 'text',
content: 'Someting went wrong...'
})
}
}
// 返回用户的 Channel 列表
let channels = await user.findChannels()
let content = channels.length ? channels.reverse().join('\n') : '您还未绑定频道'
return res.reply({
type: 'text',
content
})
}
})
)
router.use('/push', async function (req, res) {
const { channelName, text } = req.body
console.log(req.body)
if (!channelName || !text) {
return res.json({
error: 1,
message: 'Bad params!'
})
}
let channel = new Channel(channelName)
await channel.init()
if (!channel.exist) {
return res.json({
error: 1,
message: 'Channel not exist!'
})
}
await channel.push(text)
res.json({
error: 0,
message: 'Done!'
})
})
module.exports = router
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。