birdbot/app/plugins.go

59 lines
1.2 KiB
Go
Raw Normal View History

2023-03-31 20:21:49 +00:00
package app
import (
"log"
"os"
"plugin"
"github.com/yeslayla/birdbot/common"
)
2023-03-31 20:49:50 +00:00
// LoadPlugin loads a plugin and returns its component if successful
func LoadPlugin(pluginPath string) common.Module {
2023-03-31 20:21:49 +00:00
plug, err := plugin.Open(pluginPath)
if err != nil {
log.Printf("Failed to load plugin '%s': %s", pluginPath, err)
return nil
}
2023-03-31 20:49:50 +00:00
// Lookup component symbol
2023-03-31 20:21:49 +00:00
sym, err := plug.Lookup("Component")
if err != nil {
log.Printf("Failed to load plugin '%s': failed to get Component: %s", pluginPath, err)
return nil
}
2023-03-31 20:49:50 +00:00
// Validate component type
var component common.Module
component, ok := sym.(common.Module)
2023-03-31 20:21:49 +00:00
if !ok {
log.Printf("Failed to load plugin '%s': Plugin component does not properly implement interface!", pluginPath)
}
return component
}
2023-03-31 20:49:50 +00:00
// LoadPlugins loads all plugins and componenets in a directory
func LoadPlugins(directory string) []common.Module {
2023-03-31 20:21:49 +00:00
paths, err := os.ReadDir(directory)
if err != nil {
log.Printf("Failed to load plugins: %s", err)
return []common.Module{}
2023-03-31 20:21:49 +00:00
}
var components []common.Module = make([]common.Module, 0)
2023-03-31 20:21:49 +00:00
for _, path := range paths {
if path.IsDir() {
continue
}
2023-03-31 20:49:50 +00:00
if comp := LoadPlugin(path.Name()); comp != nil {
2023-03-31 20:21:49 +00:00
components = append(components, comp)
}
}
return components
}