Skip to content

Commit d69ac2e

Browse files
committed
feat: 增加百度百科插件
1 parent fa49c58 commit d69ac2e

File tree

5 files changed

+79
-2
lines changed

5 files changed

+79
-2
lines changed

main.go

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import (
44
"context"
55

66
"github.com/yqchilde/wxbot/engine"
7+
_ "github.com/yqchilde/wxbot/plugins/baidubaike" // 百度百科
78
_ "github.com/yqchilde/wxbot/plugins/covid19" // 城市新冠疫情查询
89
_ "github.com/yqchilde/wxbot/plugins/crazykfc" // 肯德基疯狂星期四骚话
910
_ "github.com/yqchilde/wxbot/plugins/cronjob" // 漂亮妹妹

plugins/baidubaike/main.go

+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
package baidubaike
2+
3+
import (
4+
"encoding/json"
5+
"fmt"
6+
"io"
7+
"net/http"
8+
"regexp"
9+
10+
"github.com/yqchilde/pkgs/log"
11+
12+
"github.com/yqchilde/wxbot/engine"
13+
"github.com/yqchilde/wxbot/engine/robot"
14+
)
15+
16+
type BaiDuBaiKe struct{ engine.PluginMagic }
17+
18+
var (
19+
pluginInfo = &BaiDuBaiKe{
20+
engine.PluginMagic{
21+
Desc: "🚀 输入 {百度百科 XX} => 获取百度百科解释,Ps:百度百科 okr",
22+
Commands: []string{"^百度百科 ?(.*?)$"},
23+
},
24+
}
25+
_ = engine.InstallPlugin(pluginInfo)
26+
)
27+
28+
func (p *BaiDuBaiKe) OnRegister() {}
29+
30+
func (p *BaiDuBaiKe) OnEvent(msg *robot.Message) {
31+
if msg != nil {
32+
if msg.MatchRegexCommand(pluginInfo.Commands) {
33+
var re = regexp.MustCompile(`(?m)^百度百科 ?(.*?)$`)
34+
match := re.FindAllStringSubmatch(msg.Content, -1)
35+
if len(match) > 0 && len(match[0]) > 1 {
36+
if data, err := getBaiKe(match[0][1]); err == nil {
37+
if data == nil {
38+
msg.ReplyText("没查到该百科含义")
39+
} else {
40+
msg.ReplyText("🏷️ " + match[0][1] + ": " + fmt.Sprintf("%s\n🔎 摘要: %s\n© 版权: %s", data.Desc, data.Abstract, data.Copyrights))
41+
}
42+
} else {
43+
msg.ReplyText("查询失败,这一定不是bug🤔")
44+
}
45+
}
46+
}
47+
}
48+
}
49+
50+
func getBaiKe(keyword string) (*ApiResponse, error) {
51+
api := "https://baike.baidu.com/api/openapi/BaikeLemmaCardApi?appid=379020&bk_length=600&bk_key=" + keyword
52+
resp, err := http.Get(api)
53+
if err != nil {
54+
log.Errorf("failed to get baike api, err: %v", err)
55+
return nil, err
56+
}
57+
readAll, err := io.ReadAll(resp.Body)
58+
if err != nil {
59+
log.Errorf("failed to read resp body, err: %v", err)
60+
return nil, err
61+
}
62+
var data ApiResponse
63+
if err := json.Unmarshal(readAll, &data); err != nil {
64+
log.Errorf("failed to unmarshal api response, err: %v", err)
65+
return nil, err
66+
}
67+
return &data, nil
68+
}

plugins/baidubaike/model.go

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
package baidubaike
2+
3+
type ApiResponse struct {
4+
Key string `json:"key"`
5+
Desc string `json:"desc"`
6+
Abstract string `json:"abstract"`
7+
Copyrights string `json:"copyrights"`
8+
}

plugins/covid19/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ type Covid19 struct{ engine.PluginMagic }
1919
var (
2020
pluginInfo = &Covid19{
2121
engine.PluginMagic{
22-
Desc: "🚀 输入 {XX疫情查询} => 获取疫情数据,比如济南疫情查询",
22+
Desc: "🚀 输入 {XX疫情查询} => 获取疫情数据,Ps:济南疫情查询",
2323
Commands: []string{`([^\x00-\xff]{0,6})疫情查询`},
2424
},
2525
}

plugins/pinyinsuoxie/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ type PinYinSuoXie struct{ engine.PluginMagic }
2020
var (
2121
pluginInfo = &PinYinSuoXie{
2222
engine.PluginMagic{
23-
Desc: "🚀 输入 {查缩写 XX} => 获取拼音缩写翻译,比如:查缩写 yyds",
23+
Desc: "🚀 输入 {查缩写 XX} => 获取拼音缩写翻译,Ps:查缩写 yyds",
2424
Commands: []string{"^查缩写 ?([a-zA-Z0-9]+)$"},
2525
},
2626
}

0 commit comments

Comments
 (0)