| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233 |
- package hooks
- import (
- oContext "context"
- "encoding/json"
- "fmt"
- "github.com/Jinnrry/pmail/dto/parsemail"
- "github.com/Jinnrry/pmail/hooks/framework"
- "github.com/Jinnrry/pmail/models"
- "github.com/Jinnrry/pmail/utils/context"
- log "github.com/sirupsen/logrus"
- "io"
- "net"
- "net/http"
- "os"
- "path/filepath"
- "strings"
- "time"
- )
- // HookList
- var HookList map[string]framework.EmailHook
- type HookSender struct {
- httpc http.Client
- name string
- socket string
- }
- func (h *HookSender) ReceiveSaveAfter(ctx *context.Context, email *parsemail.Email, ue []*models.UserEmail) {
- log.WithContext(ctx).Debugf("[%s]Plugin ReceiveSaveAfter Start", h.name)
- dto := framework.HookDTO{
- Ctx: ctx,
- Email: email,
- UserEmail: ue,
- }
- body, _ := json.Marshal(dto)
- _, err := h.httpc.Post("http://plugin/ReceiveSaveAfter", "application/json", strings.NewReader(string(body)))
- if err != nil {
- log.WithContext(ctx).Errorf("[%s] Error! %v", h.name, err)
- return
- }
- log.WithContext(ctx).Debugf("[%s]Plugin ReceiveSaveAfter End", h.name)
- }
- func (h *HookSender) SendBefore(ctx *context.Context, email *parsemail.Email) {
- log.WithContext(ctx).Debugf("[%s]Plugin SendBefore Start", h.name)
- dto := framework.HookDTO{
- Ctx: ctx,
- Email: email,
- }
- body, _ := json.Marshal(dto)
- ret, err := h.httpc.Post("http://plugin/SendBefore", "application/json", strings.NewReader(string(body)))
- if err != nil {
- log.WithContext(ctx).Errorf("[%s] Error! %v", h.name, err)
- return
- }
- body, _ = io.ReadAll(ret.Body)
- json.Unmarshal(body, &dto)
- ctx = dto.Ctx
- email = dto.Email
- log.WithContext(ctx).Debugf("[%s]Plugin SendBefore End", h.name)
- }
- func (h *HookSender) SendAfter(ctx *context.Context, email *parsemail.Email, err map[string]error) {
- log.WithContext(ctx).Debugf("[%s]Plugin SendAfter Start", h.name)
- dto := framework.HookDTO{
- Ctx: ctx,
- Email: email,
- ErrMap: err,
- }
- body, _ := json.Marshal(dto)
- _, errL := h.httpc.Post("http://plugin/SendAfter", "application/json", strings.NewReader(string(body)))
- if errL != nil {
- log.WithContext(ctx).Errorf("[%s] Error! %v", h.name, errL)
- return
- }
- log.WithContext(ctx).Debugf("[%s]Plugin SendAfter End", h.name)
- }
- func (h *HookSender) ReceiveParseBefore(ctx *context.Context, email *[]byte) {
- log.WithContext(ctx).Debugf("[%s]Plugin ReceiveParseBefore Start", h.name)
- dto := framework.HookDTO{
- Ctx: ctx,
- EmailByte: email,
- }
- body, _ := json.Marshal(dto)
- ret, errL := h.httpc.Post("http://plugin/ReceiveParseBefore", "application/json", strings.NewReader(string(body)))
- if errL != nil {
- log.WithContext(ctx).Errorf("[%s] Error! %v", h.name, errL)
- return
- }
- body, _ = io.ReadAll(ret.Body)
- json.Unmarshal(body, &dto)
- ctx = dto.Ctx
- email = dto.EmailByte
- log.WithContext(ctx).Debugf("[%s]Plugin ReceiveParseBefore End", h.name)
- }
- func (h *HookSender) ReceiveParseAfter(ctx *context.Context, email *parsemail.Email) {
- log.WithContext(ctx).Debugf("[%s]Plugin ReceiveParseAfter Start", h.name)
- dto := framework.HookDTO{
- Ctx: ctx,
- Email: email,
- }
- body, _ := json.Marshal(dto)
- ret, errL := h.httpc.Post("http://plugin/ReceiveParseAfter", "application/json", strings.NewReader(string(body)))
- if errL != nil {
- log.WithContext(ctx).Errorf("[%s] Error! %v", h.name, errL)
- return
- }
- body, _ = io.ReadAll(ret.Body)
- json.Unmarshal(body, &dto)
- ctx = dto.Ctx
- email = dto.Email
- log.WithContext(ctx).Debugf("[%s]Plugin ReceiveParseAfter End", h.name)
- }
- func NewHookSender(socketPath string, name string, serverVersion string) *HookSender {
- httpc := http.Client{
- Timeout: time.Second * 10,
- Transport: &http.Transport{
- DialContext: func(ctx oContext.Context, network, addr string) (net.Conn, error) {
- return net.Dial("unix", socketPath)
- },
- },
- }
- return &HookSender{
- httpc: httpc,
- socket: socketPath,
- name: name,
- }
- }
- var processList []*os.Process
- // Init 注册hook对象
- func Init(serverVersion string) {
- HookList = map[string]framework.EmailHook{}
- env := os.Environ()
- procAttr := &os.ProcAttr{
- Env: env,
- Files: []*os.File{
- os.Stdin,
- os.Stdout,
- os.Stderr,
- },
- }
- root := "./plugins"
- pluginNo := 1
- filepath.Walk(root, func(path string, info os.FileInfo, err error) error {
- if info != nil && !info.IsDir() && (!strings.Contains(info.Name(), ".") || strings.Contains(info.Name(), ".exe")) {
- socketPath := fmt.Sprintf("%s/%d.socket", root, pluginNo)
- os.Remove(socketPath)
- //socketPath = "/PMail/server/hooks/spam_block/1555.socket" //debug
- log.Infof("[%s] Plugin Load", info.Name())
- p, err := os.StartProcess(path, []string{
- info.Name(),
- fmt.Sprintf("%d.socket", pluginNo),
- }, procAttr)
- if err != nil {
- log.Errorf("Plug Load Error! %v", err)
- return nil
- }
- fmt.Printf("[%s] Plugin Start! PID:%d", info.Name(), p.Pid)
- processList = append(processList, p)
- pluginNo++
- go func() {
- stat, err := p.Wait()
- log.Errorf("[%s] Plugin Stop. Error:%v Stat:%v", info.Name(), err, stat.String())
- delete(HookList, info.Name())
- os.Remove(socketPath)
- }()
- loadSucc := false
- for i := 0; i < 5; i++ {
- time.Sleep(1 * time.Second)
- if _, err := os.Stat(socketPath); err == nil {
- loadSucc = true
- break
- }
- if i == 4 {
- log.Errorf(fmt.Sprintf("[%s] Start Fail!", info.Name()))
- }
- }
- if loadSucc {
- HookList[info.Name()] = NewHookSender(socketPath, info.Name(), serverVersion)
- log.Infof("[%s] Plugin Load Success!", info.Name())
- }
- }
- return nil
- })
- }
- func Stop() {
- log.Info("Plugin Stop")
- for _, process := range processList {
- process.Kill()
- }
- }
|