mirror of
https://github.com/anotherhadi/spilltea.git
synced 2026-05-20 09:42:34 +02:00
a147e8b972
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
375 lines
8.4 KiB
Go
375 lines
8.4 KiB
Go
package plugins
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
"os"
|
|
"path/filepath"
|
|
"sort"
|
|
"strings"
|
|
"sync"
|
|
|
|
"github.com/anotherhadi/spilltea/internal/db"
|
|
"github.com/anotherhadi/spilltea/internal/intercept"
|
|
goproxy "github.com/lqqyt2423/go-mitmproxy/proxy"
|
|
lua "github.com/yuin/gopher-lua"
|
|
)
|
|
|
|
type Manager struct {
|
|
mu sync.RWMutex
|
|
plugins []*Plugin
|
|
|
|
db *db.DB
|
|
broker *intercept.Broker
|
|
|
|
Notifs chan PluginNotifMsg
|
|
Quit chan string
|
|
}
|
|
|
|
func NewManager(broker *intercept.Broker) *Manager {
|
|
mgr := &Manager{
|
|
broker: broker,
|
|
Notifs: make(chan PluginNotifMsg, 64),
|
|
Quit: make(chan string, 4),
|
|
}
|
|
if broker != nil {
|
|
broker.SetOnBeforeNewEntry(mgr.RunSyncOnHistoryEntry)
|
|
broker.SetOnNewEntry(mgr.RunAsyncOnHistoryEntry)
|
|
}
|
|
return mgr
|
|
}
|
|
|
|
func (m *Manager) SetDB(d *db.DB) {
|
|
m.db = d
|
|
}
|
|
|
|
func (m *Manager) LoadFromDir(dir string) error {
|
|
entries, err := os.ReadDir(dir)
|
|
if os.IsNotExist(err) {
|
|
return nil
|
|
}
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
var states map[string]db.PluginState
|
|
if m.db != nil {
|
|
list, err := m.db.LoadPluginStates()
|
|
if err == nil {
|
|
states = make(map[string]db.PluginState, len(list))
|
|
for _, s := range list {
|
|
states[s.Name] = s
|
|
}
|
|
}
|
|
}
|
|
|
|
for _, e := range entries {
|
|
if e.IsDir() || !strings.HasSuffix(e.Name(), ".lua") {
|
|
continue
|
|
}
|
|
path := filepath.Join(dir, e.Name())
|
|
p, err := m.loadPlugin(path)
|
|
if err != nil {
|
|
log.Printf("plugin load error %s: %v", path, err)
|
|
continue
|
|
}
|
|
if s, ok := states[p.Name]; ok {
|
|
p.Enabled = s.Enabled
|
|
p.ConfigText = s.ConfigText
|
|
}
|
|
m.mu.Lock()
|
|
m.plugins = append(m.plugins, p)
|
|
m.mu.Unlock()
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Manager) loadPlugin(path string) (*Plugin, error) {
|
|
p := &Plugin{
|
|
FilePath: path,
|
|
Enabled: true,
|
|
hooks: make(map[string]HookConfig),
|
|
}
|
|
p.L = newLuaState(m, p)
|
|
if err := p.L.DoFile(path); err != nil {
|
|
p.L.Close()
|
|
return nil, err
|
|
}
|
|
|
|
pluginTable, ok := p.L.GetGlobal("Plugin").(*lua.LTable)
|
|
if !ok {
|
|
p.L.Close()
|
|
return nil, fmt.Errorf("missing Plugin table")
|
|
}
|
|
|
|
if s, ok := pluginTable.RawGetString("name").(lua.LString); ok {
|
|
p.Name = string(s)
|
|
}
|
|
if p.Name == "" {
|
|
p.Name = strings.TrimSuffix(filepath.Base(path), ".lua")
|
|
}
|
|
|
|
if s, ok := pluginTable.RawGetString("description").(lua.LString); ok {
|
|
p.Description = string(s)
|
|
}
|
|
|
|
if n, ok := pluginTable.RawGetString("priority").(lua.LNumber); ok {
|
|
p.Priority = int(n)
|
|
}
|
|
|
|
// Hooks configurable via the Plugin table (sync field).
|
|
configurableHooks := map[string]bool{
|
|
"on_start": false, // async by default
|
|
"on_request": false,
|
|
"on_response": false,
|
|
"on_history_entry": false,
|
|
}
|
|
// Fixed-sync hooks: always sync, not configurable.
|
|
fixedSyncHooks := map[string]struct{}{
|
|
"on_config": {},
|
|
"on_quit": {},
|
|
}
|
|
|
|
for hookName, defaultSync := range configurableHooks {
|
|
if tbl, ok := pluginTable.RawGetString(hookName).(*lua.LTable); ok {
|
|
p.hooks[hookName] = HookConfig{Sync: tbl.RawGetString("sync") == lua.LTrue}
|
|
continue
|
|
}
|
|
if p.L.GetGlobal(hookName) != lua.LNil {
|
|
p.hooks[hookName] = HookConfig{Sync: defaultSync}
|
|
}
|
|
}
|
|
for hookName := range fixedSyncHooks {
|
|
if p.L.GetGlobal(hookName) != lua.LNil {
|
|
p.hooks[hookName] = HookConfig{Sync: true}
|
|
}
|
|
}
|
|
|
|
return p, nil
|
|
}
|
|
|
|
func (m *Manager) GetPlugins() []*Plugin {
|
|
m.mu.RLock()
|
|
defer m.mu.RUnlock()
|
|
out := make([]*Plugin, len(m.plugins))
|
|
copy(out, m.plugins)
|
|
sort.Slice(out, func(i, j int) bool { return out[i].Priority > out[j].Priority })
|
|
return out
|
|
}
|
|
|
|
func (m *Manager) TogglePlugin(name string) {
|
|
m.mu.RLock()
|
|
var found *Plugin
|
|
for _, p := range m.plugins {
|
|
if p.Name == name {
|
|
found = p
|
|
break
|
|
}
|
|
}
|
|
m.mu.RUnlock()
|
|
if found == nil {
|
|
return
|
|
}
|
|
found.mu.Lock()
|
|
found.Enabled = !found.Enabled
|
|
enabled := found.Enabled
|
|
configText := found.ConfigText
|
|
found.mu.Unlock()
|
|
if m.db != nil {
|
|
_ = m.db.SavePluginState(name, enabled, configText)
|
|
}
|
|
}
|
|
|
|
func (m *Manager) SaveConfig(name, configText string) {
|
|
m.mu.RLock()
|
|
var found *Plugin
|
|
for _, p := range m.plugins {
|
|
if p.Name == name {
|
|
found = p
|
|
break
|
|
}
|
|
}
|
|
m.mu.RUnlock()
|
|
if found == nil {
|
|
return
|
|
}
|
|
found.mu.Lock()
|
|
found.ConfigText = configText
|
|
enabled := found.Enabled
|
|
_, hasOnConfig := found.hooks["on_config"]
|
|
found.mu.Unlock()
|
|
if m.db != nil {
|
|
_ = m.db.SavePluginState(name, enabled, configText)
|
|
}
|
|
if !hasOnConfig {
|
|
return
|
|
}
|
|
// on_config is always sync.
|
|
found.mu.Lock()
|
|
if _, err := callHook(found, "on_config", lua.LString(configText)); err != nil {
|
|
log.Printf("plugin %s on_config (config reload): %v", name, err)
|
|
}
|
|
found.mu.Unlock()
|
|
}
|
|
|
|
func (m *Manager) RunOnStart() {
|
|
// on_config runs first, always sync, for every enabled plugin that has it.
|
|
for _, p := range m.GetPlugins() {
|
|
if !p.Enabled {
|
|
continue
|
|
}
|
|
if _, ok := p.hooks["on_config"]; !ok {
|
|
continue
|
|
}
|
|
p.mu.Lock()
|
|
if _, err := callHook(p, "on_config", lua.LString(p.ConfigText)); err != nil {
|
|
log.Printf("plugin %s on_config: %v", p.Name, err)
|
|
}
|
|
p.mu.Unlock()
|
|
}
|
|
// on_start runs after, sync or async depending on plugin config.
|
|
for _, p := range m.GetPlugins() {
|
|
if !p.Enabled {
|
|
continue
|
|
}
|
|
hc, ok := p.hooks["on_start"]
|
|
if !ok {
|
|
continue
|
|
}
|
|
if hc.Sync {
|
|
p.mu.Lock()
|
|
if _, err := callHook(p, "on_start"); err != nil {
|
|
log.Printf("plugin %s on_start: %v", p.Name, err)
|
|
}
|
|
p.mu.Unlock()
|
|
} else {
|
|
go func(p *Plugin) {
|
|
p.mu.Lock()
|
|
if _, err := callHook(p, "on_start"); err != nil {
|
|
log.Printf("plugin %s on_start: %v", p.Name, err)
|
|
}
|
|
p.mu.Unlock()
|
|
}(p)
|
|
}
|
|
}
|
|
}
|
|
|
|
func (m *Manager) RunOnQuit() {
|
|
for _, p := range m.GetPlugins() {
|
|
if !p.Enabled {
|
|
continue
|
|
}
|
|
if _, ok := p.hooks["on_quit"]; !ok {
|
|
continue
|
|
}
|
|
p.mu.Lock()
|
|
if _, err := callHook(p, "on_quit"); err != nil {
|
|
log.Printf("plugin %s on_quit: %v", p.Name, err)
|
|
}
|
|
p.mu.Unlock()
|
|
}
|
|
}
|
|
|
|
// runSyncDecisionForPlugins runs hookName synchronously for all enabled plugins
|
|
// that registered it as sync, and returns the first non-Intercept decision.
|
|
func (m *Manager) runSyncDecisionForPlugins(hookName string, argsFor func(*Plugin) []lua.LValue) intercept.Decision {
|
|
for _, p := range m.GetPlugins() {
|
|
if !p.Enabled {
|
|
continue
|
|
}
|
|
hc, ok := p.hooks[hookName]
|
|
if !ok || !hc.Sync {
|
|
continue
|
|
}
|
|
p.mu.Lock()
|
|
result, err := callHook(p, hookName, argsFor(p)...)
|
|
p.mu.Unlock()
|
|
if err != nil {
|
|
log.Printf("plugin %s %s: %v", p.Name, hookName, err)
|
|
continue
|
|
}
|
|
switch result {
|
|
case "drop":
|
|
return intercept.Drop
|
|
case "forward":
|
|
return intercept.Forward
|
|
}
|
|
}
|
|
return intercept.Intercept
|
|
}
|
|
|
|
// runAsyncForPlugins fires hookName asynchronously for all enabled plugins
|
|
// that registered it as async.
|
|
func (m *Manager) runAsyncForPlugins(hookName string, argsFor func(*Plugin) []lua.LValue) {
|
|
for _, p := range m.GetPlugins() {
|
|
if !p.Enabled {
|
|
continue
|
|
}
|
|
hc, ok := p.hooks[hookName]
|
|
if !ok || hc.Sync {
|
|
continue
|
|
}
|
|
go func(p *Plugin) {
|
|
p.mu.Lock()
|
|
if _, err := callHook(p, hookName, argsFor(p)...); err != nil {
|
|
log.Printf("plugin %s %s: %v", p.Name, hookName, err)
|
|
}
|
|
p.mu.Unlock()
|
|
}(p)
|
|
}
|
|
}
|
|
|
|
func (m *Manager) RunSyncOnRequest(f *goproxy.Flow) intercept.Decision {
|
|
return m.runSyncDecisionForPlugins("on_request", func(p *Plugin) []lua.LValue {
|
|
return []lua.LValue{pushRequest(p.L, f)}
|
|
})
|
|
}
|
|
|
|
func (m *Manager) RunAsyncOnRequest(f *goproxy.Flow) {
|
|
m.runAsyncForPlugins("on_request", func(p *Plugin) []lua.LValue {
|
|
return []lua.LValue{pushRequest(p.L, f)}
|
|
})
|
|
}
|
|
|
|
func (m *Manager) RunSyncOnResponse(f *goproxy.Flow) intercept.Decision {
|
|
return m.runSyncDecisionForPlugins("on_response", func(p *Plugin) []lua.LValue {
|
|
return []lua.LValue{pushRequest(p.L, f), pushResponse(p.L, f)}
|
|
})
|
|
}
|
|
|
|
func (m *Manager) RunAsyncOnResponse(f *goproxy.Flow) {
|
|
m.runAsyncForPlugins("on_response", func(p *Plugin) []lua.LValue {
|
|
return []lua.LValue{pushRequest(p.L, f), pushResponse(p.L, f)}
|
|
})
|
|
}
|
|
|
|
// RunSyncOnHistoryEntry is called before DB insert; returns false to skip saving.
|
|
func (m *Manager) RunSyncOnHistoryEntry(e db.Entry) bool {
|
|
for _, p := range m.GetPlugins() {
|
|
if !p.Enabled {
|
|
continue
|
|
}
|
|
hc, ok := p.hooks["on_history_entry"]
|
|
if !ok || !hc.Sync {
|
|
continue
|
|
}
|
|
p.mu.Lock()
|
|
result, err := callHook(p, "on_history_entry", pushEntry(p.L, e))
|
|
p.mu.Unlock()
|
|
if err != nil {
|
|
log.Printf("plugin %s on_history_entry: %v", p.Name, err)
|
|
continue
|
|
}
|
|
if result == "skip" {
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
}
|
|
|
|
func (m *Manager) RunAsyncOnHistoryEntry(e db.Entry) {
|
|
m.runAsyncForPlugins("on_history_entry", func(p *Plugin) []lua.LValue {
|
|
return []lua.LValue{pushEntry(p.L, e)}
|
|
})
|
|
}
|