mirror of
https://github.com/langhuihui/monibuca.git
synced 2025-10-05 13:36:51 +08:00
510 lines
12 KiB
Go
510 lines
12 KiB
Go
package m7s
|
|
|
|
import (
|
|
"context"
|
|
"github.com/quic-go/quic-go"
|
|
"log/slog"
|
|
"net"
|
|
"net/http"
|
|
"os"
|
|
"path/filepath"
|
|
"reflect"
|
|
"runtime"
|
|
"strings"
|
|
|
|
gatewayRuntime "github.com/grpc-ecosystem/grpc-gateway/v2/runtime"
|
|
myip "github.com/husanpao/ip"
|
|
"google.golang.org/grpc"
|
|
"gopkg.in/yaml.v3"
|
|
"gorm.io/gorm"
|
|
. "m7s.live/m7s/v5/pkg"
|
|
"m7s.live/m7s/v5/pkg/config"
|
|
"m7s.live/m7s/v5/pkg/db"
|
|
"m7s.live/m7s/v5/pkg/util"
|
|
)
|
|
|
|
type (
|
|
DefaultYaml string
|
|
OnExitHandler func()
|
|
AuthPublisher = func(*Publisher) *util.Promise
|
|
AuthSubscriber = func(*Subscriber) *util.Promise
|
|
|
|
PluginMeta struct {
|
|
Name string
|
|
Version string //插件版本
|
|
Type reflect.Type
|
|
defaultYaml DefaultYaml //默认配置
|
|
ServiceDesc *grpc.ServiceDesc
|
|
RegisterGRPCHandler func(context.Context, *gatewayRuntime.ServeMux, *grpc.ClientConn) error
|
|
Puller Puller
|
|
Pusher Pusher
|
|
Recorder Recorder
|
|
OnExit OnExitHandler
|
|
OnAuthPub AuthPublisher
|
|
OnAuthSub AuthSubscriber
|
|
}
|
|
|
|
iPlugin interface {
|
|
nothing()
|
|
}
|
|
|
|
IPlugin interface {
|
|
util.ITask
|
|
OnInit() error
|
|
OnStop()
|
|
Pull(path string, url string)
|
|
}
|
|
|
|
IRegisterHandler interface {
|
|
RegisterHandler() map[string]http.HandlerFunc
|
|
}
|
|
|
|
IPullerPlugin interface {
|
|
GetPullableList() []string
|
|
}
|
|
|
|
ITCPPlugin interface {
|
|
OnTCPConnect(*net.TCPConn)
|
|
}
|
|
|
|
IUDPPlugin interface {
|
|
OnUDPConnect(*net.UDPConn)
|
|
}
|
|
|
|
IQUICPlugin interface {
|
|
OnQUICConnect(quic.Connection)
|
|
}
|
|
)
|
|
|
|
var plugins []PluginMeta
|
|
|
|
func (plugin *PluginMeta) Init(s *Server, userConfig map[string]any) (p *Plugin) {
|
|
instance, ok := reflect.New(plugin.Type).Interface().(IPlugin)
|
|
if !ok {
|
|
panic("plugin must implement IPlugin")
|
|
}
|
|
p = reflect.ValueOf(instance).Elem().FieldByName("Plugin").Addr().Interface().(*Plugin)
|
|
p.handler = instance
|
|
p.Meta = plugin
|
|
p.Server = s
|
|
p.Logger = s.Logger.With("plugin", plugin.Name)
|
|
upperName := strings.ToUpper(plugin.Name)
|
|
if os.Getenv(upperName+"_ENABLE") == "false" {
|
|
p.Disabled = true
|
|
p.Warn("disabled by env")
|
|
return
|
|
}
|
|
p.Config.Parse(p.GetCommonConf(), upperName)
|
|
p.Config.Parse(instance, upperName)
|
|
for _, fname := range MergeConfigs {
|
|
if name := strings.ToLower(fname); p.Config.Has(name) {
|
|
p.Config.Get(name).ParseGlobal(s.Config.Get(name))
|
|
}
|
|
}
|
|
if plugin.defaultYaml != "" {
|
|
var defaultConf map[string]any
|
|
if err := yaml.Unmarshal([]byte(plugin.defaultYaml), &defaultConf); err != nil {
|
|
p.Error("parsing default config", "error", err)
|
|
} else {
|
|
p.Config.ParseDefaultYaml(defaultConf)
|
|
}
|
|
}
|
|
p.Config.ParseUserFile(userConfig)
|
|
finalConfig, _ := yaml.Marshal(p.Config.GetMap())
|
|
p.Logger.Handler().(*MultiLogHandler).SetLevel(ParseLevel(p.config.LogLevel))
|
|
p.Debug("config", "detail", string(finalConfig))
|
|
if s.DisableAll {
|
|
p.Disabled = true
|
|
}
|
|
if userConfig["enable"] == false {
|
|
p.Disabled = true
|
|
} else if userConfig["enable"] == true {
|
|
p.Disabled = false
|
|
}
|
|
if p.Disabled {
|
|
p.Warn("plugin disabled")
|
|
return
|
|
} else {
|
|
p.assign()
|
|
}
|
|
p.Info("init", "ctx", p.Context, "version", plugin.Version)
|
|
var err error
|
|
if p.config.DSN == s.GetCommonConf().DSN {
|
|
p.DB = s.DB
|
|
} else if p.config.DSN != "" {
|
|
if factory, ok := db.Factory[p.config.DBType]; ok {
|
|
s.DB, err = gorm.Open(factory(p.config.DSN), &gorm.Config{})
|
|
if err != nil {
|
|
s.Error("failed to connect database", "error", err, "dsn", s.config.DSN, "type", s.config.DBType)
|
|
p.Disabled = true
|
|
return
|
|
}
|
|
}
|
|
}
|
|
p.Description = map[string]any{"version": plugin.Version}
|
|
return
|
|
}
|
|
|
|
// InstallPlugin 安装插件
|
|
func InstallPlugin[C iPlugin](options ...any) error {
|
|
var c *C
|
|
t := reflect.TypeOf(c).Elem()
|
|
meta := PluginMeta{
|
|
Name: strings.TrimSuffix(t.Name(), "Plugin"),
|
|
Type: t,
|
|
}
|
|
|
|
_, pluginFilePath, _, _ := runtime.Caller(1)
|
|
configDir := filepath.Dir(pluginFilePath)
|
|
|
|
if _, after, found := strings.Cut(configDir, "@"); found {
|
|
meta.Version = after
|
|
} else {
|
|
meta.Version = pluginFilePath
|
|
}
|
|
for _, option := range options {
|
|
switch v := option.(type) {
|
|
case OnExitHandler:
|
|
meta.OnExit = v
|
|
case DefaultYaml:
|
|
meta.defaultYaml = v
|
|
case Puller:
|
|
meta.Puller = v
|
|
case Pusher:
|
|
meta.Pusher = v
|
|
case Recorder:
|
|
meta.Recorder = v
|
|
case AuthPublisher:
|
|
meta.OnAuthPub = v
|
|
case AuthSubscriber:
|
|
meta.OnAuthSub = v
|
|
case *grpc.ServiceDesc:
|
|
meta.ServiceDesc = v
|
|
case func(context.Context, *gatewayRuntime.ServeMux, *grpc.ClientConn) error:
|
|
meta.RegisterGRPCHandler = v
|
|
}
|
|
}
|
|
plugins = append(plugins, meta)
|
|
return nil
|
|
}
|
|
|
|
type Plugin struct {
|
|
util.MarcoLongTask
|
|
Disabled bool
|
|
Meta *PluginMeta
|
|
config config.Common
|
|
config.Config
|
|
handler IPlugin
|
|
Server *Server
|
|
DB *gorm.DB
|
|
}
|
|
|
|
func (Plugin) nothing() {
|
|
|
|
}
|
|
|
|
func (p *Plugin) GetKey() string {
|
|
return p.Meta.Name
|
|
}
|
|
|
|
func (p *Plugin) GetGlobalCommonConf() *config.Common {
|
|
return p.Server.GetCommonConf()
|
|
}
|
|
|
|
func (p *Plugin) GetCommonConf() *config.Common {
|
|
return &p.config
|
|
}
|
|
|
|
func (p *Plugin) GetHandler() IPlugin {
|
|
return p.handler
|
|
}
|
|
|
|
func (p *Plugin) GetPublicIP(netcardIP string) string {
|
|
if p.config.PublicIP != "" {
|
|
return p.config.PublicIP
|
|
}
|
|
if publicIP, ok := Routes[netcardIP]; ok { //根据网卡ip获取对应的公网ip
|
|
return publicIP
|
|
}
|
|
localIp := myip.InternalIPv4()
|
|
if publicIP, ok := Routes[localIp]; ok {
|
|
return publicIP
|
|
}
|
|
return localIp
|
|
}
|
|
|
|
func (p *Plugin) settingPath() string {
|
|
return filepath.Join(p.Server.SettingDir, strings.ToLower(p.Meta.Name)+".yaml")
|
|
}
|
|
|
|
func (p *Plugin) assign() {
|
|
f, err := os.Open(p.settingPath())
|
|
defer f.Close()
|
|
if err == nil {
|
|
var modifyConfig map[string]any
|
|
err = yaml.NewDecoder(f).Decode(&modifyConfig)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
p.Config.ParseModifyFile(modifyConfig)
|
|
}
|
|
var handlerMap map[string]http.HandlerFunc
|
|
if v, ok := p.handler.(IRegisterHandler); ok {
|
|
handlerMap = v.RegisterHandler()
|
|
}
|
|
p.registerHandler(handlerMap)
|
|
}
|
|
|
|
func (p *Plugin) Start() (err error) {
|
|
s := p.Server
|
|
if p.Meta.ServiceDesc != nil && s.grpcServer != nil {
|
|
s.grpcServer.RegisterService(p.Meta.ServiceDesc, p.handler)
|
|
if p.Meta.RegisterGRPCHandler != nil {
|
|
if err = p.Meta.RegisterGRPCHandler(p.Context, s.config.HTTP.GetGRPCMux(), s.grpcClientConn); err != nil {
|
|
return
|
|
} else {
|
|
p.Info("grpc handler registered")
|
|
}
|
|
}
|
|
}
|
|
s.Plugins.Add(p)
|
|
err = p.listen()
|
|
if err != nil {
|
|
return
|
|
}
|
|
err = p.handler.OnInit()
|
|
if err != nil {
|
|
return
|
|
}
|
|
return
|
|
}
|
|
|
|
func (p *Plugin) Dispose() {
|
|
p.handler.OnStop()
|
|
p.config.HTTP.StopListen()
|
|
p.config.TCP.StopListen()
|
|
p.Server.Plugins.Remove(p)
|
|
}
|
|
|
|
func (p *Plugin) listen() (err error) {
|
|
httpConf := &p.config.HTTP
|
|
if httpConf.ListenAddrTLS != "" && (httpConf.ListenAddrTLS != p.Server.config.HTTP.ListenAddrTLS) {
|
|
p.Info("https listen at ", "addr", httpConf.ListenAddrTLS)
|
|
go func() {
|
|
p.Stop(httpConf.ListenTLS())
|
|
}()
|
|
}
|
|
if httpConf.ListenAddr != "" && (httpConf.ListenAddr != p.Server.config.HTTP.ListenAddr) {
|
|
p.Info("http listen at ", "addr", httpConf.ListenAddr)
|
|
go func() {
|
|
p.Stop(httpConf.Listen())
|
|
}()
|
|
}
|
|
|
|
defer func() {
|
|
if err != nil {
|
|
p.config.HTTP.StopListen()
|
|
}
|
|
}()
|
|
|
|
if tcphandler, ok := p.handler.(ITCPPlugin); ok {
|
|
tcpConf := &p.config.TCP
|
|
if tcpConf.ListenAddr != "" && tcpConf.AutoListen {
|
|
p.Info("listen tcp", "addr", tcpConf.ListenAddr)
|
|
err = tcpConf.Listen(tcphandler.OnTCPConnect)
|
|
if err != nil {
|
|
p.Error("listen tcp", "addr", tcpConf.ListenAddr, "error", err)
|
|
return
|
|
}
|
|
}
|
|
if tcpConf.ListenAddrTLS != "" && tcpConf.AutoListen {
|
|
p.Info("listen tcp tls", "addr", tcpConf.ListenAddrTLS)
|
|
err = tcpConf.ListenTLS(tcphandler.OnTCPConnect)
|
|
if err != nil {
|
|
p.Error("listen tcp tls", "addr", tcpConf.ListenAddrTLS, "error", err)
|
|
return
|
|
}
|
|
}
|
|
defer func() {
|
|
if err != nil {
|
|
p.config.TCP.StopListen()
|
|
}
|
|
}()
|
|
}
|
|
|
|
if udpHandler, ok := p.handler.(IUDPPlugin); ok {
|
|
udpConf := &p.config.UDP
|
|
if udpConf.ListenAddr != "" && udpConf.AutoListen {
|
|
p.Info("listen udp", "addr", udpConf.ListenAddr)
|
|
err = udpConf.Listen(udpHandler.OnUDPConnect)
|
|
if err != nil {
|
|
p.Error("listen udp", "addr", udpConf.ListenAddr, "error", err)
|
|
return
|
|
}
|
|
}
|
|
}
|
|
|
|
if quicHandler, ok := p.handler.(IQUICPlugin); ok {
|
|
quicConf := &p.config.Quic
|
|
if quicConf.ListenAddr != "" && quicConf.AutoListen {
|
|
p.Info("listen quic", "addr", quicConf.ListenAddr)
|
|
go func() {
|
|
p.Stop(quicConf.ListenQuic(p, quicHandler.OnQUICConnect))
|
|
}()
|
|
//if err != nil {
|
|
// p.Error("listen quic", "addr", quicConf.ListenAddr, "error", err)
|
|
// return
|
|
//}
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
func (p *Plugin) OnInit() error {
|
|
return nil
|
|
}
|
|
|
|
func (p *Plugin) OnExit() {
|
|
|
|
}
|
|
|
|
func (p *Plugin) OnStop() {
|
|
|
|
}
|
|
|
|
func (p *Plugin) PublishWithConfig(ctx context.Context, streamPath string, conf config.Publish) (publisher *Publisher, err error) {
|
|
publisher = createPublisher(p, streamPath, conf)
|
|
if p.config.EnableAuth {
|
|
onAuthPub := p.Meta.OnAuthPub
|
|
if onAuthPub == nil {
|
|
onAuthPub = p.Server.Meta.OnAuthPub
|
|
}
|
|
if onAuthPub != nil {
|
|
if err = onAuthPub(publisher).Await(); err != nil {
|
|
p.Warn("auth failed", "error", err)
|
|
return
|
|
}
|
|
}
|
|
}
|
|
err = p.Server.streamTask.AddTaskWithContext(ctx, publisher).WaitStarted()
|
|
return
|
|
}
|
|
|
|
func (p *Plugin) Publish(ctx context.Context, streamPath string) (publisher *Publisher, err error) {
|
|
return p.PublishWithConfig(ctx, streamPath, p.config.Publish)
|
|
}
|
|
|
|
func (p *Plugin) SubscribeWithConfig(ctx context.Context, streamPath string, conf config.Subscribe) (subscriber *Subscriber, err error) {
|
|
subscriber = createSubscriber(p, streamPath, conf)
|
|
if p.config.EnableAuth {
|
|
onAuthSub := p.Meta.OnAuthSub
|
|
if onAuthSub == nil {
|
|
onAuthSub = p.Server.Meta.OnAuthSub
|
|
}
|
|
if onAuthSub != nil {
|
|
if err = onAuthSub(subscriber).Await(); err != nil {
|
|
p.Warn("auth failed", "error", err)
|
|
return
|
|
}
|
|
}
|
|
}
|
|
err = p.Server.streamTask.AddTaskWithContext(ctx, subscriber).WaitStarted()
|
|
return
|
|
}
|
|
|
|
func (p *Plugin) Subscribe(ctx context.Context, streamPath string) (subscriber *Subscriber, err error) {
|
|
return p.SubscribeWithConfig(ctx, streamPath, p.config.Subscribe)
|
|
}
|
|
|
|
func (p *Plugin) Pull(streamPath string, url string) {
|
|
puller := p.Meta.Puller()
|
|
p.Server.AddPullTask(puller.GetPullContext().Init(puller, p, streamPath, url))
|
|
return
|
|
}
|
|
|
|
func (p *Plugin) Push(streamPath string, url string) (ctx *PushContext, err error) {
|
|
pusher := p.Meta.Pusher()
|
|
p.Server.AddPushTask(pusher.GetPushContext().Init(pusher, p, streamPath, url))
|
|
return
|
|
}
|
|
|
|
func (p *Plugin) Record(streamPath string, filePath string) (ctx *RecordContext, err error) {
|
|
ctx = createRecoder(p, streamPath, filePath)
|
|
err = p.Server.recordTask.AddTask(ctx).WaitStarted()
|
|
return
|
|
}
|
|
|
|
func (p *Plugin) registerHandler(handlers map[string]http.HandlerFunc) {
|
|
t := reflect.TypeOf(p.handler)
|
|
v := reflect.ValueOf(p.handler)
|
|
// 注册http响应
|
|
for i, j := 0, t.NumMethod(); i < j; i++ {
|
|
name := t.Method(i).Name
|
|
if name == "ServeHTTP" {
|
|
continue
|
|
}
|
|
switch handler := v.Method(i).Interface().(type) {
|
|
case func(http.ResponseWriter, *http.Request):
|
|
patten := strings.ToLower(strings.ReplaceAll(name, "_", "/"))
|
|
p.handle(patten, http.HandlerFunc(handler))
|
|
}
|
|
}
|
|
for patten, handler := range handlers {
|
|
p.handle(patten, handler)
|
|
}
|
|
if rootHandler, ok := p.handler.(http.Handler); ok {
|
|
p.handle("/", rootHandler)
|
|
}
|
|
}
|
|
|
|
func (p *Plugin) logHandler(handler http.Handler) http.Handler {
|
|
return http.HandlerFunc(func(rw http.ResponseWriter, r *http.Request) {
|
|
p.Debug("visit", "path", r.URL.String(), "remote", r.RemoteAddr)
|
|
name := strings.ToLower(p.Meta.Name)
|
|
r.URL.Path = strings.TrimPrefix(r.URL.Path, "/"+name)
|
|
handler.ServeHTTP(rw, r)
|
|
})
|
|
}
|
|
|
|
func (p *Plugin) handle(pattern string, handler http.Handler) {
|
|
if p == nil {
|
|
return
|
|
}
|
|
last := pattern == "/"
|
|
if !strings.HasPrefix(pattern, "/") {
|
|
pattern = "/" + pattern
|
|
}
|
|
handler = p.logHandler(handler)
|
|
p.config.HTTP.Handle(pattern, handler, last)
|
|
if p.Server != p.handler {
|
|
pattern = "/" + strings.ToLower(p.Meta.Name) + pattern
|
|
p.Debug("http handle added to Server", "pattern", pattern)
|
|
p.Server.config.HTTP.Handle(pattern, handler, last)
|
|
}
|
|
p.Server.apiList = append(p.Server.apiList, pattern)
|
|
}
|
|
|
|
func (p *Plugin) AddLogHandler(handler slog.Handler) {
|
|
p.Server.LogHandler.Add(handler)
|
|
}
|
|
|
|
func (p *Plugin) SaveConfig() (err error) {
|
|
p.Server.Call(func() (err error) {
|
|
if p.Modify == nil {
|
|
os.Remove(p.settingPath())
|
|
return
|
|
}
|
|
var file *os.File
|
|
if file, err = os.OpenFile(p.settingPath(), os.O_CREATE|os.O_WRONLY|os.O_TRUNC, 0666); err != nil {
|
|
return
|
|
}
|
|
defer file.Close()
|
|
err = yaml.NewEncoder(file).Encode(p.Modify)
|
|
return
|
|
})
|
|
if err == nil {
|
|
p.Info("config saved")
|
|
}
|
|
return
|
|
}
|