mirror of
https://github.com/FloatTech/ZeroBot-Plugin.git
synced 2025-12-19 13:59:39 +08:00
修复按id搜图时失败
This commit is contained in:
parent
bf6180a0ac
commit
b7620460d3
@ -71,3 +71,20 @@ func PicHash(path string) string {
|
|||||||
}
|
}
|
||||||
return strings.ToUpper(fmt.Sprintf("%x", md5.Sum(data)))
|
return strings.ToUpper(fmt.Sprintf("%x", md5.Sum(data)))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// urlCache 缓存并返回缓存路径
|
||||||
|
func (this *Illust) RmPic(path string) (err error) {
|
||||||
|
url := this.ImageUrls
|
||||||
|
pid := this.Pid
|
||||||
|
url = strings.ReplaceAll(url, "img-original", "img-master")
|
||||||
|
url = strings.ReplaceAll(url, "_p0", "_p0_master1200")
|
||||||
|
url = strings.ReplaceAll(url, ".png", ".jpg")
|
||||||
|
// 文件名为url的hash值
|
||||||
|
savePath := path + Int2Str(pid) + ".jpg"
|
||||||
|
// 文件存在或文件大小大于10kb
|
||||||
|
if PathExists(savePath) {
|
||||||
|
return os.Remove(savePath)
|
||||||
|
} else {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
5
main.go
5
main.go
@ -26,7 +26,8 @@ import (
|
|||||||
_ "github.com/Yiwen-Chan/ZeroBot-Plugin/music" // 点歌
|
_ "github.com/Yiwen-Chan/ZeroBot-Plugin/music" // 点歌
|
||||||
_ "github.com/Yiwen-Chan/ZeroBot-Plugin/picsearcher" // 搜图
|
_ "github.com/Yiwen-Chan/ZeroBot-Plugin/picsearcher" // 搜图
|
||||||
_ "github.com/Yiwen-Chan/ZeroBot-Plugin/randimg" //简易随机图片
|
_ "github.com/Yiwen-Chan/ZeroBot-Plugin/randimg" //简易随机图片
|
||||||
_ "github.com/Yiwen-Chan/ZeroBot-Plugin/setutime" // 涩图
|
|
||||||
|
//_ "github.com/Yiwen-Chan/ZeroBot-Plugin/setutime" // 涩图
|
||||||
_ "github.com/Yiwen-Chan/ZeroBot-Plugin/shindan" // 测定
|
_ "github.com/Yiwen-Chan/ZeroBot-Plugin/shindan" // 测定
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -52,7 +53,7 @@ func main() {
|
|||||||
CommandPrefix: "/",
|
CommandPrefix: "/",
|
||||||
SuperUsers: os.Args[1:], // 必须修改,否则无权限
|
SuperUsers: os.Args[1:], // 必须修改,否则无权限
|
||||||
Driver: []zero.Driver{
|
Driver: []zero.Driver{
|
||||||
driver.NewWebSocketClient("127.0.0.1", "6700", ""),
|
driver.NewWebSocketClient("192.168.8.1", "6700", ""),
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
// 帮助
|
// 帮助
|
||||||
|
|||||||
@ -13,13 +13,10 @@ import (
|
|||||||
utils "github.com/Yiwen-Chan/ZeroBot-Plugin/picsearcher/utils"
|
utils "github.com/Yiwen-Chan/ZeroBot-Plugin/picsearcher/utils"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var CACHEPATH = "/tmp/picsch/" // 缓冲图片路径
|
||||||
BOTPATH = pixiv.PathExecute() // 当前bot运行目录
|
|
||||||
DATAPATH = BOTPATH + "data/SetuTime/" // 数据目录
|
|
||||||
CACHEPATH = DATAPATH + "cache/" // 缓冲图片路径
|
|
||||||
)
|
|
||||||
|
|
||||||
func init() { // 插件主体
|
func init() { // 插件主体
|
||||||
|
pixiv.CreatePath(CACHEPATH)
|
||||||
// 根据PID搜图
|
// 根据PID搜图
|
||||||
zero.OnRegex(`^搜图(\d+)$`).SetBlock(true).SetPriority(30).
|
zero.OnRegex(`^搜图(\d+)$`).SetBlock(true).SetPriority(30).
|
||||||
Handle(func(ctx *zero.Ctx) {
|
Handle(func(ctx *zero.Ctx) {
|
||||||
@ -32,12 +29,14 @@ func init() { // 插件主体
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
// 下载P站插图
|
// 下载P站插图
|
||||||
if _, err := illust.PixivPicDown(CACHEPATH); err != nil {
|
savePath, err := illust.PixivPicDown(CACHEPATH)
|
||||||
|
if err != nil {
|
||||||
ctx.Send(fmt.Sprintf("ERROR: %v", err))
|
ctx.Send(fmt.Sprintf("ERROR: %v", err))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
// 发送搜索结果
|
// 发送搜索结果
|
||||||
ctx.Send(illust.DetailPic)
|
ctx.Send(illust.DetailPic(savePath))
|
||||||
|
illust.RmPic(CACHEPATH)
|
||||||
return
|
return
|
||||||
})
|
})
|
||||||
// 以图搜图
|
// 以图搜图
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user