mirror of
https://github.com/Jinnrry/PMail.git
synced 2025-10-07 00:02:52 +08:00
145 lines
3.0 KiB
Go
145 lines
3.0 KiB
Go
package main
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"net/http"
|
|
"os"
|
|
"pmail/config"
|
|
"pmail/dto/parsemail"
|
|
"pmail/hooks/framework"
|
|
"pmail/utils/context"
|
|
"strings"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
type TelegramPushHook struct {
|
|
chatId string
|
|
botToken string
|
|
httpsEnabled int
|
|
webDomain string
|
|
}
|
|
|
|
func (w *TelegramPushHook) SendBefore(ctx *context.Context, email *parsemail.Email) {
|
|
|
|
}
|
|
|
|
func (w *TelegramPushHook) SendAfter(ctx *context.Context, email *parsemail.Email, err map[string]error) {
|
|
|
|
}
|
|
|
|
func (w *TelegramPushHook) ReceiveParseBefore(ctx *context.Context, email *[]byte) {
|
|
|
|
}
|
|
|
|
func (w *TelegramPushHook) ReceiveParseAfter(ctx *context.Context, email *parsemail.Email) {
|
|
if w.chatId == "" || w.botToken == "" {
|
|
return
|
|
}
|
|
|
|
w.sendUserMsg(nil, email)
|
|
}
|
|
|
|
type SendMessageRequest struct {
|
|
ChatID string `json:"chat_id"`
|
|
Text string `json:"text"`
|
|
ReplyMarkup ReplyMarkup `json:"reply_markup"`
|
|
ParseMode string `json:"parse_mode"`
|
|
}
|
|
|
|
type ReplyMarkup struct {
|
|
InlineKeyboard [][]InlineKeyboardButton `json:"inline_keyboard"`
|
|
}
|
|
|
|
type InlineKeyboardButton struct {
|
|
Text string `json:"text"`
|
|
URL string `json:"url"`
|
|
}
|
|
|
|
func (w *TelegramPushHook) sendUserMsg(ctx *context.Context, email *parsemail.Email) {
|
|
url := w.webDomain
|
|
if w.httpsEnabled > 1 {
|
|
url = "http://" + url
|
|
} else {
|
|
url = "https://" + url
|
|
}
|
|
sendMsgReq, _ := json.Marshal(SendMessageRequest{
|
|
ChatID: w.chatId,
|
|
Text: fmt.Sprintf("📧<b>%s</b><%s>\n\n%s", email.Subject, email.From.EmailAddress, string(email.Text)),
|
|
ParseMode: "HTML",
|
|
ReplyMarkup: ReplyMarkup{
|
|
InlineKeyboard: [][]InlineKeyboardButton{
|
|
{
|
|
{
|
|
Text: "查收邮件",
|
|
URL: url,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
})
|
|
|
|
_, err := http.Post(fmt.Sprintf("https://api.telegram.org/bot%s/sendMessage", w.botToken), "application/json", strings.NewReader(string(sendMsgReq)))
|
|
if err != nil {
|
|
log.WithContext(ctx).Errorf("telegram push error %+v", err)
|
|
}
|
|
|
|
}
|
|
|
|
type Config struct {
|
|
TgBotToken string `json:"tgBotToken"`
|
|
TgChatId string `json:"tgChatId"`
|
|
}
|
|
|
|
func NewTelegramPushHook() *TelegramPushHook {
|
|
var cfgData []byte
|
|
var err error
|
|
|
|
cfgData, err = os.ReadFile("../config/config.json")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
var mainConfig *config.Config
|
|
err = json.Unmarshal(cfgData, &mainConfig)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
var pluginConfig *Config
|
|
if _, err := os.Stat("./telegram_push_config.json"); err == nil {
|
|
cfgData, err = os.ReadFile("./telegram_push_config.json")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
err = json.Unmarshal(cfgData, &pluginConfig)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
}
|
|
|
|
token := ""
|
|
chatID := ""
|
|
if pluginConfig != nil {
|
|
token = pluginConfig.TgBotToken
|
|
chatID = pluginConfig.TgChatId
|
|
} else {
|
|
token = mainConfig.TgBotToken
|
|
chatID = mainConfig.TgChatId
|
|
}
|
|
|
|
ret := &TelegramPushHook{
|
|
botToken: token,
|
|
chatId: chatID,
|
|
webDomain: mainConfig.WebDomain,
|
|
httpsEnabled: mainConfig.HttpsEnabled,
|
|
}
|
|
return ret
|
|
|
|
}
|
|
|
|
func main() {
|
|
framework.CreatePlugin(NewTelegramPushHook()).Run()
|
|
}
|