mirror of
https://github.com/FloatTech/ZeroBot-Plugin.git
synced 2025-12-20 06:20:08 +08:00
131 lines
3.8 KiB
Go
131 lines
3.8 KiB
Go
// Package saucenao P站ID/saucenao/ascii2d搜图
|
||
package saucenao
|
||
|
||
import (
|
||
"fmt"
|
||
"os"
|
||
"strconv"
|
||
|
||
"github.com/FloatTech/AnimeAPI/ascii2d"
|
||
"github.com/FloatTech/AnimeAPI/picture"
|
||
"github.com/FloatTech/AnimeAPI/pixiv"
|
||
"github.com/FloatTech/AnimeAPI/saucenao"
|
||
"github.com/sirupsen/logrus"
|
||
zero "github.com/wdvxdr1123/ZeroBot"
|
||
"github.com/wdvxdr1123/ZeroBot/message"
|
||
|
||
"github.com/FloatTech/ZeroBot-Plugin/control"
|
||
"github.com/FloatTech/ZeroBot-Plugin/utils/file"
|
||
)
|
||
|
||
var (
|
||
datapath = file.BOTPATH + "/data/saucenao/"
|
||
)
|
||
|
||
func init() { // 插件主体
|
||
_ = os.RemoveAll(datapath)
|
||
err := os.MkdirAll(datapath, 0755)
|
||
if err != nil {
|
||
panic(err)
|
||
}
|
||
engine := control.Register("saucenao", &control.Options{
|
||
DisableOnDefault: false,
|
||
Help: "搜图\n" +
|
||
"- 以图搜图|搜索图片|以图识图[图片]\n" +
|
||
"- 搜图[P站图片ID]",
|
||
})
|
||
// 根据 PID 搜图
|
||
engine.OnRegex(`^搜图(\d+)$`).SetBlock(true).FirstPriority().
|
||
Handle(func(ctx *zero.Ctx) {
|
||
id, _ := strconv.ParseInt(ctx.State["regex_matched"].([]string)[1], 10, 64)
|
||
ctx.SendChain(message.Text("少女祈祷中......"))
|
||
// 获取P站插图信息
|
||
illust, err := pixiv.Works(id)
|
||
if err != nil {
|
||
ctx.SendChain(message.Text("ERROR: ", err))
|
||
return
|
||
}
|
||
if illust.Pid > 0 {
|
||
name := strconv.FormatInt(illust.Pid, 10)
|
||
filepath := datapath + name
|
||
switch {
|
||
case file.IsExist(filepath + ".jpg"):
|
||
filepath = "file:///" + filepath + ".jpg"
|
||
case file.IsExist(filepath + ".png"):
|
||
filepath = "file:///" + filepath + ".png"
|
||
case file.IsExist(filepath + ".gif"):
|
||
filepath = "file:///" + filepath + ".gif"
|
||
default:
|
||
filepath = ""
|
||
}
|
||
if filepath == "" {
|
||
logrus.Debug("[sausenao]开始下载", name)
|
||
filepath, err = pixiv.Download(illust.ImageUrls, datapath, name)
|
||
if err == nil {
|
||
filepath = "file:///" + filepath
|
||
}
|
||
}
|
||
txt := message.Text(
|
||
"标题:", illust.Title, "\n",
|
||
"插画ID:", illust.Pid, "\n",
|
||
"画师:", illust.UserName, "\n",
|
||
"画师ID:", illust.UserId, "\n",
|
||
"直链:", "https://pixivel.moe/detail?id=", illust.Pid,
|
||
)
|
||
if filepath != "" {
|
||
// 发送搜索结果
|
||
ctx.SendChain(message.Image(filepath), message.Text("\n"), txt)
|
||
} else {
|
||
// 图片下载失败,仅发送文字结果
|
||
ctx.SendChain(txt)
|
||
}
|
||
} else {
|
||
ctx.SendChain(message.Text("图片不存在!"))
|
||
}
|
||
})
|
||
// 以图搜图
|
||
engine.OnKeywordGroup([]string{"以图搜图", "搜索图片", "以图识图"}, picture.CmdMatch, picture.MustGiven).SetBlock(true).FirstPriority().
|
||
Handle(func(ctx *zero.Ctx) {
|
||
// 开始搜索图片
|
||
ctx.SendChain(message.Text("少女祈祷中......"))
|
||
for _, pic := range ctx.State["image_url"].([]string) {
|
||
fmt.Println(pic)
|
||
if result, err := saucenao.SauceNAO(pic); err != nil {
|
||
ctx.SendChain(message.Text("ERROR: ", err))
|
||
} else {
|
||
// 返回SauceNAO的结果
|
||
ctx.SendChain(
|
||
message.Text("我有把握是这个!"),
|
||
message.Image(result.Thumbnail),
|
||
message.Text(
|
||
"\n",
|
||
"相似度:", result.Similarity, "\n",
|
||
"标题:", result.Title, "\n",
|
||
"插画ID:", result.PixivID, "\n",
|
||
"画师:", result.MemberName, "\n",
|
||
"画师ID:", result.MemberID, "\n",
|
||
"直链:", "https://pixivel.moe/detail?id=", result.PixivID,
|
||
),
|
||
)
|
||
continue
|
||
}
|
||
if result, err := ascii2d.Ascii2d(pic); err != nil {
|
||
ctx.SendChain(message.Text("ERROR: ", err))
|
||
} else {
|
||
// 返回Ascii2d的结果
|
||
ctx.SendChain(
|
||
message.Text(
|
||
"大概是这个?", "\n",
|
||
"标题:", result.Title, "\n",
|
||
"插画ID:", result.Pid, "\n",
|
||
"画师:", result.UserName, "\n",
|
||
"画师ID:", result.UserId, "\n",
|
||
"直链:", "https://pixivel.moe/detail?id=", result.Pid,
|
||
),
|
||
)
|
||
continue
|
||
}
|
||
}
|
||
})
|
||
}
|