mirror of
https://github.com/ikechan8370/chatgpt-plugin.git
synced 2025-12-17 05:47:11 +00:00
* fix: 2.7 dev start * feat: 初步支持function call(WIP) * fix: syntax error * fix: syntax error * feat: 群聊上下文 * fix: 暂时阉割掉全员禁言功能 * fix: 修改禁言时间范围 * fix: 修复一些功能易用性 * fix: 只有管理员和群主才能用jinyan和kickout * fix: 加回来禁言和踢出 * fix: 修复管理员权限判断问题(可能吧) * fix: 试图优化逻辑 * fix: fuck openai documents * fix: 删掉认主不然一直禁言我烦死了 * fix: 哔哩哔哩封面损坏问题 * fix: 加个天气小工具 * fix: 天气不存在城市 * fix: website工具用浏览器 * feat: serp tool * feat: 增加一个google搜索源 * fix: 加一句描述 * feat: 增加搜索来源选项 * feat: 搜图和发图 * fix: groupId format error * fix: add a image caption tool * fix: 修改一些提示。tool太多机器人开始混乱了 * fix: 一些极端的措施 * fix: 增加一些提示和一个暂时的公共接口 * fix: 收拾一下 * fix: 修改命令正则 * fix: 修改一些提示 * fix: move send avatar into send picture tool * fix: 修复解除禁言的bug
76 lines
2.7 KiB
JavaScript
76 lines
2.7 KiB
JavaScript
import fetch from 'node-fetch'
|
|
|
|
import { formatDate, mkdirs } from '../common.js'
|
|
import fs from 'fs'
|
|
import { AbstractTool } from './AbstractTool.js'
|
|
export class SearchVideoTool extends AbstractTool {
|
|
name = 'searchVideo'
|
|
|
|
parameters = {
|
|
properties: {
|
|
keyword: {
|
|
type: 'string',
|
|
description: '要搜索的视频的标题或关键词'
|
|
}
|
|
},
|
|
required: ['keyword']
|
|
}
|
|
|
|
func = async function (opts) {
|
|
let { keyword } = opts
|
|
try {
|
|
return await searchBilibili(keyword)
|
|
} catch (err) {
|
|
logger.error(err)
|
|
return `fail to search video, error: ${err.toString()}`
|
|
}
|
|
}
|
|
|
|
description = 'Useful when you want to search a video by keywords. you should remember the id of the video if you want to share it'
|
|
}
|
|
|
|
export async function searchBilibili (name) {
|
|
let biliRes = await fetch('https://www.bilibili.com',
|
|
{
|
|
// headers: {
|
|
// accept: 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7',
|
|
// Accept: '*/*',
|
|
// 'Accept-Encoding': 'gzip, deflate, br',
|
|
// 'accept-language': 'en-US,en;q=0.9',
|
|
// Connection: 'keep-alive',
|
|
// 'user-agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36'
|
|
// }
|
|
})
|
|
const headers = biliRes.headers.raw()
|
|
const setCookieHeaders = headers['set-cookie']
|
|
if (setCookieHeaders) {
|
|
const cookies = []
|
|
setCookieHeaders.forEach(header => {
|
|
const cookie = header.split(';')[0]
|
|
cookies.push(cookie)
|
|
})
|
|
const cookieHeader = cookies.join('; ')
|
|
let headers = {
|
|
accept: 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7',
|
|
'accept-language': 'en-US,en;q=0.9',
|
|
Referer: 'https://www.bilibili.com',
|
|
'user-agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36',
|
|
cookie: cookieHeader
|
|
}
|
|
let response = await fetch(`https://api.bilibili.com/x/web-interface/search/type?keyword=${name}&search_type=video`,
|
|
{
|
|
headers
|
|
})
|
|
let json = await response.json()
|
|
if (json.data?.numResults > 0) {
|
|
let result = json.data.result.map(r => {
|
|
return `id: ${r.bvid},标题:${r.title},作者:${r.author},播放量:${r.play},发布日期:${formatDate(new Date(r.pubdate * 1000))}`
|
|
}).slice(0, Math.min(json.data?.numResults, 5)).join('\n')
|
|
return `这些是关键词“${name}”的搜索结果:\n${result}`
|
|
} else {
|
|
return `没有找到关键词“${name}”的搜索结果`
|
|
}
|
|
}
|
|
|
|
return {}
|
|
}
|