mirror of
https://github.com/Jerryplusy/rc-plugin.git
synced 2025-12-05 18:01:56 +00:00
🐞 fix: 设置部分功能为可选
This commit is contained in:
parent
96c7ea3fe7
commit
d706e56706
32
README.md
32
README.md
@ -38,10 +38,13 @@ index -- 主入口
|
|||||||
5. 【可选】要使用视频解析功能要下载插件【推荐ubuntu系统】
|
5. 【可选】要使用视频解析功能要下载插件【推荐ubuntu系统】
|
||||||
> sudo apt-get install ffmpeg
|
> sudo apt-get install ffmpeg
|
||||||
|
|
||||||
【必要】备注:如果启动不起来删除mongodb的代码即可:
|
【可选】备注:考虑到不是所有电脑都有mongodb,如果要开启#我靠功能,需要把以下代码(apps/mystery.js)注释取消:
|
||||||
```javascript
|
```javascript
|
||||||
// in apps/mystery.js
|
// in apps/mystery.js
|
||||||
|
|
||||||
|
// Mongodb初始化
|
||||||
|
import mongodb from 'mongodb'
|
||||||
|
|
||||||
// Mongodb初始化
|
// Mongodb初始化
|
||||||
function initMongo () {
|
function initMongo () {
|
||||||
const MongoClient = mongodb.MongoClient
|
const MongoClient = mongodb.MongoClient
|
||||||
@ -57,6 +60,33 @@ function initMongo () {
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const mongo = initMongo()
|
||||||
|
// ...
|
||||||
|
{
|
||||||
|
reg: '^#我靠', fnc: 'tuiimg'
|
||||||
|
}
|
||||||
|
// ...
|
||||||
|
async tuiimg (e) {
|
||||||
|
const MAX_SIZE = this.mysteryConfig.tuiimg.count
|
||||||
|
this.reply('这群早晚被你整没了...')
|
||||||
|
let images = []
|
||||||
|
const template = {
|
||||||
|
nickname: this.e.sender.card || this.e.user_id, user_id: this.e.user_id
|
||||||
|
}
|
||||||
|
await mongo.then(conn => {
|
||||||
|
return conn.aggregate([ { $sample: { size: MAX_SIZE } } ]).toArray()
|
||||||
|
}).then((result) => {
|
||||||
|
result.forEach((item) => {
|
||||||
|
images.push({
|
||||||
|
message: segment.image(item.url), ...template
|
||||||
|
})
|
||||||
|
})
|
||||||
|
})
|
||||||
|
return !!(await this.reply(await Bot.makeForwardMsg(images), false, {
|
||||||
|
recallMsg: recallTime
|
||||||
|
}))
|
||||||
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
【必要】相关配置(apps/tools.js):
|
【必要】相关配置(apps/tools.js):
|
||||||
|
|||||||
@ -6,25 +6,25 @@ import fetch from 'node-fetch'
|
|||||||
import config from '../model/index.js'
|
import config from '../model/index.js'
|
||||||
// 其他库
|
// 其他库
|
||||||
import _ from 'lodash'
|
import _ from 'lodash'
|
||||||
import mongodb from 'mongodb'
|
// import mongodb from 'mongodb'
|
||||||
|
|
||||||
// Mongodb初始化
|
// Mongodb初始化
|
||||||
function initMongo () {
|
// function initMongo () {
|
||||||
const MongoClient = mongodb.MongoClient
|
// const MongoClient = mongodb.MongoClient
|
||||||
const url = 'mongodb://localhost:27017/'
|
// const url = 'mongodb://localhost:27017/'
|
||||||
return new Promise((resolve, reject) => {
|
// return new Promise((resolve, reject) => {
|
||||||
MongoClient.connect(url, (err, db) => {
|
// MongoClient.connect(url, (err, db) => {
|
||||||
const dbo = db.db('test')
|
// const dbo = db.db('test')
|
||||||
if (err) {
|
// if (err) {
|
||||||
throw err // 和调用 reject(err) 效果类似
|
// throw err // 和调用 reject(err) 效果类似
|
||||||
}
|
// }
|
||||||
let collection = dbo.collection('temp')
|
// let collection = dbo.collection('temp')
|
||||||
resolve(collection)
|
// resolve(collection)
|
||||||
})
|
// })
|
||||||
})
|
// })
|
||||||
}
|
// }
|
||||||
|
//
|
||||||
const mongo = initMongo()
|
// const mongo = initMongo()
|
||||||
// 60s后撤回
|
// 60s后撤回
|
||||||
const recallTime = 109
|
const recallTime = 109
|
||||||
|
|
||||||
@ -48,9 +48,9 @@ export class mystery extends plugin {
|
|||||||
{
|
{
|
||||||
reg: '^#(啊?|啊?)$', fnc: 'aaa'
|
reg: '^#(啊?|啊?)$', fnc: 'aaa'
|
||||||
},
|
},
|
||||||
{
|
// {
|
||||||
reg: '^#我靠', fnc: 'tuiimg'
|
// reg: '^#我靠', fnc: 'tuiimg'
|
||||||
}
|
// }
|
||||||
]
|
]
|
||||||
})
|
})
|
||||||
this.mysteryConfig = config.getConfig('mystery')
|
this.mysteryConfig = config.getConfig('mystery')
|
||||||
@ -252,26 +252,26 @@ export class mystery extends plugin {
|
|||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
async tuiimg (e) {
|
// async tuiimg (e) {
|
||||||
const MAX_SIZE = this.mysteryConfig.tuiimg.count
|
// const MAX_SIZE = this.mysteryConfig.tuiimg.count
|
||||||
this.reply('这群早晚被你整没了...')
|
// this.reply('这群早晚被你整没了...')
|
||||||
let images = []
|
// let images = []
|
||||||
const template = {
|
// const template = {
|
||||||
nickname: this.e.sender.card || this.e.user_id, user_id: this.e.user_id
|
// nickname: this.e.sender.card || this.e.user_id, user_id: this.e.user_id
|
||||||
}
|
// }
|
||||||
await mongo.then(conn => {
|
// await mongo.then(conn => {
|
||||||
return conn.aggregate([ { $sample: { size: MAX_SIZE } } ]).toArray()
|
// return conn.aggregate([ { $sample: { size: MAX_SIZE } } ]).toArray()
|
||||||
}).then((result) => {
|
// }).then((result) => {
|
||||||
result.forEach((item) => {
|
// result.forEach((item) => {
|
||||||
images.push({
|
// images.push({
|
||||||
message: segment.image(item.url), ...template
|
// message: segment.image(item.url), ...template
|
||||||
})
|
// })
|
||||||
})
|
// })
|
||||||
})
|
// })
|
||||||
return !!(await this.reply(await Bot.makeForwardMsg(images), false, {
|
// return !!(await this.reply(await Bot.makeForwardMsg(images), false, {
|
||||||
recallMsg: recallTime
|
// recallMsg: recallTime
|
||||||
}))
|
// }))
|
||||||
}
|
// }
|
||||||
|
|
||||||
// 正则:获取图片
|
// 正则:获取图片
|
||||||
getCos6Img (string) {
|
getCos6Img (string) {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user