mirror of
https://github.com/FloatTech/ZeroBot-Plugin.git
synced 2025-12-20 06:20:08 +08:00
✨ 添加 GitHub 仓库搜索
This commit is contained in:
parent
f43d73b3e9
commit
f534b52074
72
github/repo_searcher.go
Normal file
72
github/repo_searcher.go
Normal file
@ -0,0 +1,72 @@
|
|||||||
|
package github
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"io/ioutil"
|
||||||
|
"net/http"
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"github.com/tidwall/gjson"
|
||||||
|
zero "github.com/wdvxdr1123/ZeroBot"
|
||||||
|
)
|
||||||
|
|
||||||
|
func init() { // 插件主体
|
||||||
|
zero.OnRegex(`>G\s(.*)`).SetBlock(true).SetPriority(0).
|
||||||
|
Handle(func(ctx *zero.Ctx) {
|
||||||
|
link := "https://api.github.com/search/repositories?q=" + ctx.State["regex_matched"].([]string)[1]
|
||||||
|
client := &http.Client{}
|
||||||
|
|
||||||
|
req, err := http.NewRequest("GET", link, nil)
|
||||||
|
if err != nil {
|
||||||
|
ctx.Send(fmt.Sprintf("ERROR: %v", err))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
req.Header.Set("User-Agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36")
|
||||||
|
resp, err := client.Do(req)
|
||||||
|
if err != nil {
|
||||||
|
ctx.Send(fmt.Sprintf("ERROR: %v", err))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
defer resp.Body.Close()
|
||||||
|
body, err := ioutil.ReadAll(resp.Body)
|
||||||
|
if err != nil {
|
||||||
|
ctx.Send(fmt.Sprintf("ERROR: %v", err))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if code := resp.StatusCode; code != 200 {
|
||||||
|
// 如果返回不是200则立刻抛出错误
|
||||||
|
ctx.Send(fmt.Sprintf("ERROR: code %d", code))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
count := gjson.ParseBytes(body).Get("total_count").Int()
|
||||||
|
if count == 0 {
|
||||||
|
ctx.Send("没有找到这样的仓库")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
repo := gjson.ParseBytes(body).Get("items.0")
|
||||||
|
language := repo.Get("language").Str
|
||||||
|
if language == "" {
|
||||||
|
language = "None"
|
||||||
|
}
|
||||||
|
license := strings.ToUpper(repo.Get("license.key").Str)
|
||||||
|
if license == "" {
|
||||||
|
license = "None"
|
||||||
|
}
|
||||||
|
id := ctx.Send(fmt.Sprintf(
|
||||||
|
"%s: \nDescription: %s\nStar/Fork/Issue: %d/%d/%d\nLanguage: %s\nLicense: %s\nLast pushed: %s\nJump: %s",
|
||||||
|
repo.Get("full_name").Str,
|
||||||
|
repo.Get("description").Str,
|
||||||
|
repo.Get("watchers").Int(),
|
||||||
|
repo.Get("forks").Int(),
|
||||||
|
repo.Get("open_issues").Int(),
|
||||||
|
language,
|
||||||
|
license,
|
||||||
|
repo.Get("updated_at").Str,
|
||||||
|
repo.Get("html_url").Str,
|
||||||
|
))
|
||||||
|
if id == 0 {
|
||||||
|
ctx.Send("ERROR: 可能被风控,发送失败")
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
2
main.go
2
main.go
@ -8,8 +8,10 @@ import (
|
|||||||
zero "github.com/wdvxdr1123/ZeroBot"
|
zero "github.com/wdvxdr1123/ZeroBot"
|
||||||
"github.com/wdvxdr1123/ZeroBot/driver"
|
"github.com/wdvxdr1123/ZeroBot/driver"
|
||||||
|
|
||||||
|
_ "bot/github"
|
||||||
_ "bot/manager"
|
_ "bot/manager"
|
||||||
_ "bot/music"
|
_ "bot/music"
|
||||||
|
_ "bot/run"
|
||||||
setutime "bot/setutime"
|
setutime "bot/setutime"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user